The text-based tag has no wiki summary.
-4
votes
0answers
58 views
C# text-base game [closed]
I am trying to make a text-based console application with C# but I dont know where to start. I have the original idea planned out and I understand the code and such but I don't know how to put them ...
0
votes
1answer
81 views
Creating a text-based game GUI (c#)
First off -sorry if text based is the wrong name, the closest example of what I mean is the football manager series (though obviously that's infinity more complicated than what I have planned!). ...
0
votes
0answers
75 views
How to link a weapon with player in a text-based adventure game?
I'm creating a text-based adventure game and Im a bit confused on how to actually assign a weapon object to a player. I'm inputting weapons from a text file called weapons.txt:
ID: 1.
Weapon Name: ...
-3
votes
0answers
32 views
Programming language to develop text based interfaces [closed]
I am looking for a language (other than foxpro) to develop text based interfaces. The reason i want this is because the nature of application is such that it needs very high speed with minimal ...
1
vote
1answer
24 views
python text rpg skill random
I'm having some trouble handling basic skill increases. Right now the code looks like
huntluck = 11
huntskill = 1
def hunt(self):
global result, huntluck, huntskill
hunting = ...
0
votes
0answers
14 views
(De-)serializing a nested POD from/to a text based message
I want to be able to communicate with a non-PC device via the following mechanism:
This is how the interface I'd like to have looks like:
It should be able to handle all kind of nested POD ...
0
votes
1answer
57 views
NumberFormatExceptions being thrown everywhere. Why? (parseInt)
First time poster here with a seriously annoying issue. I have decided to create a text-based RPG in Java in order to consolidate what I have been learning. And with all lengthy games, a ...
0
votes
1answer
56 views
I have two scala projects - basically the same - one works and one does not. Can someone tell me why?
For class we have to make a test based game in which we move through a series of rooms like the old school text game Colossal Cave Adventure.
I began by defining functions for the different rooms so ...
4
votes
4answers
104 views
Handling time in a text-based game (Java)
I'm trying to work up a basic text-based game as I'm learning Java. I'd like to be able to count rounds in the game as a means of managing the pacing of certain events. For instance, changing rooms ...
-3
votes
2answers
63 views
Textbased Hangman - JavaScript
I have a non-marked brainstorming exercise to do which is related to a further marked coursework which will be similar but more complex. The task for the non-marked text-based Hangman is basically to ...
1
vote
2answers
116 views
How do I create a gui for java that acts like a console
I created a text-based game similar to Zork and I need a gui to run it outside of Eclipse. I want to run it as a jar. (by the way I'm on a mac if that changes anything). I only need an output field ...
0
votes
1answer
45 views
how to combine same inventory items in a text based role playing game to one row [closed]
I run a text based games and in the inventory i get rows like this:
Mini-Rocket Launcher x10000
Mini-Rocket Launcher x10000
Mini-Rocket Launcher x10000
Mini-Rocket Launcher x10000
Mini-Rocket ...
-4
votes
1answer
79 views
How can I port a text based game on eclipse to android [closed]
I am writing a text-based game in java on eclipse. It's similar to zork if you've ever played that. I wondered if there was any way to take my program and turn it into an android app easily, or if I ...
2
votes
1answer
145 views
Interacting with other objects in a text-based game in Java
I'll try to be as clear as I can about this so that there's no confusion. Also, I'm not looking for a how-to process, just some tips on how to get started and head in the right direction.
I'm ...
0
votes
1answer
57 views
Converting bytes retrieved over a php socket to a integer
I am using the netty API to create a Java server which sends if a client programm sends anything to the server a number like 5. It is a integer with 4 bytes. I think it should be the same like writing ...
0
votes
2answers
894 views
Java snakes and ladders game any suggestions? [duplicate]
Possible Duplicate:
Java snakes and ladders text based game - methods are messed up -
import java.util.Random;
import java.util.Scanner;
public class SLv3{
static int p1dice1;
...
-1
votes
2answers
203 views
snakes and ladders java game (position going over 100) [closed]
'public static int rollDie()
{
Random rand = new Random();
return 1 + rand.nextInt(12);
}
public static int position1()
{
String roll = "";
System.out.println(roll);//delete ...
-1
votes
6answers
201 views
Creating a player inventory Class [closed]
I am working on a text based game in Java and I am trying to implement a player inventory, so far I have Class named weapons and I have an array of strings with the weapon type, and then another array ...
0
votes
0answers
48 views
PHP wont take any of my input nor will Javascript?
So I'm trying to build a simple text-based game in PHP and maybe throw in some JavaScript but for some reason my if statements in php nor my alert boxes in JavaScript are working.
...
0
votes
1answer
155 views
Web console for text-based RPG in Python
I'm a beginner here, slowly learning Python. I wrote a text-based RPG game, and I'm looking for a way to create a web-version of it. However, I don't want to follow the approach where HTML is ...
0
votes
3answers
563 views
How do I get realtime keyboard input in Python?
Is this possible? Every answer I have looked at isn't what I want. What I do though is something like in omega-rpg (which is an awesome little text-based debian rpg), but in Python instead of C. I ...
1
vote
1answer
89 views
Problems basing enemy stats off of player stats in text based rpg
So I am making a text based rpg, and I've come up with a weird syntax error that I can't seem to fix on the line:
max_hp = randint((player.level * 0.75) * 50, player.level * 50)
in class Enemy. Any ...
0
votes
1answer
224 views
How to write a program with TUI in linux?
I want to write a program in Linux with Text based user interface, what is best option for do this ?
I search the Internet and I get result of using ncurses / curses , what is different between them ...
-2
votes
1answer
294 views
Text-based Game in Java [closed]
I have created Players Monster and Items for the game
All I need is the gridWorld.....
I am thinkging of using String[] or ArrayList of someshort to make grid and place the objects in
and use ...
0
votes
6answers
105 views
While loop condition not working
Hey basically i want both the player and the wolves to attack each other until one another are dead. But the while loop is infinite so obviously the condition is not met. But i cant see where i am ...
0
votes
1answer
81 views
Method for enemy to attack player
Hey in my text based adventure game. I have this class:
class wolves
{
public:
string name;
int health;
private:
string attack;
//wolves(string name,int health); // Constructor
...
1
vote
1answer
67 views
How is assembly IO performed for text based stuff?
I'm looking to understand how to do basic input/output to write a text based game in x86 assembly, simply for the sake of learning of the instruction set and the internals.
I don't want to use ...
0
votes
2answers
86 views
Return to code after function runs
I'm making a text-based game and need an application-wide command line that's able to be pulled up at any text entry. My plan was to have the commands contained within a module, and execute command(), ...
0
votes
2answers
142 views
disjointed clickable text rollover
I have text-based navigation. Rolling over "contact" displays the address (layer) over all the other menu buttons. I would like the email address and the phone number to be rollovers (changing color ...
0
votes
0answers
159 views
Text Game Information [closed]
I want to make a text (and simple GUI) based game in WPF. I have all t he information regarding the game, all I need to do now is implement it.
It will be an RPG style game, with a versatile world, ...
0
votes
3answers
101 views
The value of the variables aren't changing in a simple text RPG game using C++
I'm trying to create a very simple turn-based text RPG game. The code compiles and runs but the attack and heal functions don't seem to change the values of the variables. I'm pretty sure it's a ...
-2
votes
1answer
68 views
Should I use threads when making a text based operating system in java? [closed]
I am making text based operating system in java and i am wondering if i should use threads.
It has a GUI but you type commands and press a button to enter them. Then it spits back out text in a ...
0
votes
1answer
50 views
custom logging method MyLog not working for high-page characters in Objective-C
I am trying to use a custom logger to give clean console output for a text-based game. Below is the code of the method in question:
void MyLog(NSString *format, ...)
{
va_list args;
...
0
votes
0answers
77 views
Programmally create text-images in excel
I plan to create hundreds of images w/ text in an Excel spreadsheet. E.g., Cell A1 has a color-backround image, and Cell B1 contains a text (e.g. Dulles, VA). I want to program add the text in B1 on ...
0
votes
3answers
386 views
Python GUI Toolkit for Text-Based Game?
Quick to learn is pretty important, but I need just some basic GUI tools, for Ubuntu OS but would be nice to have multi-OS compatibility. Any suggestions?
The basic dynamics of the intended game just ...
-2
votes
3answers
332 views
C# Text-based game project [closed]
I'm creating a text-based game that will allow the player to have a weight capacity. I have an item class (Still setting up) that right now has a default weight value of 1 for every Item. I want some ...
0
votes
1answer
53 views
What is the right approach of building a Text-Content Website?
Am building a website which will have articles, policies and laws and text stuffs. I am storing all the data (in some cases the articles with over 8000 characters) in MSSql 2008 database. I read some ...
0
votes
1answer
482 views
Creating text based RPG game for iPhone
I would like to create a text based RPG game for iPhone. In this user will have some questions with answers, and navigate to the next page depends on the answer in which the user selects. As per the ...
3
votes
2answers
982 views
How to create rooms in a text based game(Beginner)
I'm very new to Java and am not sure if I'm even allowed to ask questions of this nature here but I'll give it a shot. I want/need practice programming Java so I've decided on a rather large project ...
1
vote
3answers
328 views
ProgressBar for perl
I'm trying to make a simple text-based progress bar in perl, in order to display the progress while sending an email or doing a task.
Any pointers ?!
Thanks
2
votes
2answers
712 views
Simple Natural Language Parser in Objective-C
I'm building this app for Mac OS X v10.6
I'm building a text-based adventure and I've created a very simple natural language parser that can process the commands that the user types. So far it works ...
0
votes
1answer
684 views
Chat API - Similar service like TokBox but for text-based chat?
I find tokbox is a great service for video chat. But is there any other similar service for text-based chat, that provides api, so that i can manage my own users and chat participants.
Thanks
0
votes
1answer
62 views
Is JApplet Writing safe?
So I am creating a JApplet Game, and I am saving the users info to a .txt file in the APPDATA. Is there a safer way to save their info, that won't allow them to edit it to cheat?
3
votes
1answer
467 views
Are there any text-based progress bar implementations?
I'm trying to create a terminal-based backup program and I'm looking for some C++ code that creates a text-based progress bar. I understand you can implement it yourself with \b but I thought I'd see ...
0
votes
4answers
886 views
How to “style” a text based hangman game
My question is simple, the hangman game looks like this:
I'm doing the indentation in a way I don't think is very good.
I just have var = "\t" and add it at the begging of every print, this seem ...
5
votes
5answers
967 views
Text based browser game [closed]
I wanted to create a text based browser game, so how should I go about? I can do programming in asp or jsp or php that is not a barrier, but I am unaware of what steps that one needs to follow while ...
