Difference between revisions of "Label"

Jump to navigation Jump to search
9 bytes removed ,  22:59, 3 August 2009
Changed indentation and lebel ID - I don't think label IDs can go higher than 256
imported>Omzy
(new fose function)
 
imported>Cipscis
(Changed indentation and lebel ID - I don't think label IDs can go higher than 256)
Line 8: Line 8:
   |Type = int
   |Type = int
   }}
   }}
  |example = Label 1337
  |example = Label 1
}}
}}
==Notes==
==Notes==
===The Label/GoTo Loop===
===The Label/GoTo Loop===
This function can be used to create a loop when combined with [[Goto]]. The following script loops the script instructions ''iterations'' times:
This function can be used to create a loop when combined with [[Goto]]. The following script loops the script instructions ''iterations'' times:
  scn LoopScript
  ScriptName LoopScript
  int count
  int count
  int iterations
  int iterations
  Begin GameMode
  Begin GameMode
  Label 1337
Label 1
    ;Script instructions to loop
;Script instructions to loop
    set count to count + 1
set count to count + 1
  if count < iterations
if count < iterations
    GoTo 1337
GoTo 1
  endif
endif
  End
  End


Anonymous user

Navigation menu