|
Written by eaxs
|
|
Monday, 24 August 2009 21:30 |
Description Puts the script pointer to an anchor within the script. Syntax
Example Jump to the anchor "End". As a result, the server message is never sent. Goto End
ServerChat This message is skipped
@End
Create a loop until x is 10 and give out the current value of x while in the loop.
CreateVar int x 0
@loop
Set x [x + 1]
ServerChat Current value of x: #x#
If [x < 10] GoTo loop
Notes This command allows you to emulate "user-defined functions" and "loops" in your scripts.
|