Search the Commands

Home  All  a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z 

Details for command goto:
 
* goto "Label";
 
This command will make the script jump to a label, usually used in conjunction
with other command, such as "if", but often used on it's own.

Note by FlavioJS: goto's are "evil" and should be avoided if possible (ò_ó)

Examples:

> ...
> goto Label;
> mes "This will not be seen";
> Label:
> mes "This will be seen";
Self explanatory

Valid XHTML 1.0 Strict Valid CSS!