Posted by Michael J. Hill 63.253.88.216 using Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt) on March 21, 2000 at 05:05:00:
In Reply to: Re: NEED HELP PLZ posted by MrG on March 20, 2000 at 21:26:52:
: : 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