Posted by MrG 207.231.67.69 using Mozilla/4.5 [en] (Win98; I) on March 20, 2000 at 21:26:52:
In Reply to: NEED HELP PLZ posted by BOB on March 20, 2000 at 19:24:06:
: in an if..then..else statemnt in rpg code what would else be IE:
#wait(a$)
Hmmm... Even though the sentence is a bit confusing, I'm assuming you mean
what else would be the equivilant of the command #Wait(a$)? If so, I suppose
it would be #If keystroke is pressed then whatever, but as far as I know, RPGCode
has no specific command to only check if a key has been pressed (besides #Wait).. If you
mean how would you check what a$ was, simple:
#If a$ == "ENTER"
{
Whatever
}
Is that what you mean? It's a bit confusing..:)
Mike