CODE |
ec1... Repeat Ans ... getkey->K End ... prgmPSEK ... Endc2 |
CODE |
ec1If Ans=11:Then Return:Endc2 |
CODE |
ec1... Repeat Ans ... getkey->K End ... If Ans=11:Goto 11 If Ans=12:Goto 12 If Ans=12:Goto 13 ... Lbl A End ... Lbl 11 ... Goto A Lbl 12 ... Goto A Lbl 13 ... Goto A ...c2 |
CODE |
ec1... Repeat Ans ... getkey->K End ... If Ans=11:Then ... End If Ans=12:Then ... End If Ans=12:Then ... End End ... c2 |
CODE | ||||
ec1 While W=1 Post by: dinhotheone on January 03, 2007, 09:13:00 am Post by: Demon on January 03, 2007, 09:50:00 am c1-->
ec2
Is this optimal enough or is there an even better way? I need the fastest way possible 'cause this thing is huge! Post by: Speler on January 03, 2007, 09:56:00 am Post by: Demon on January 03, 2007, 10:04:00 am c1-->
ec2
How well do you think this will work? Post by: Speler on January 03, 2007, 10:09:00 am Ok here's example code: goto 0 lbl a code end lbl b code end etc. lbl 0 while condition if *** goto a if *** goto b if *** goto c code end Post by: Demon on January 03, 2007, 10:15:00 am Post by: dinhotheone on January 03, 2007, 02:26:00 pm Post by: Demon on January 03, 2007, 02:31:00 pm |