is there any kind of GOTO like in BASIC?
I want it like this:
if(bla=blaha) //1
ha ha ha
else
"goto" 1
how?
ID:151174
![]() Feb 24 2001, 9:15 am
|
|
ID:151174
![]() Feb 24 2001, 9:15 am
|
|
is there any kind of GOTO like in BASIC?
I want it like this: if(bla=blaha) //1 ha ha ha else "goto" 1 how? |
Yeah
just do like this
mob/proc/InfLoop()
doagain
src << "Your stuck in a loop!"
sleep(10)
goto doagain
Infact its exactly like in QBASIC, except I think in QBASIC you need to have a : in front of the label or something like that right?