call


Call is used to manually run a message. Syntax:

call newmsg;

Call is the only way to run custom messages. Call can be used to loop messages, but it can loop a message no more than five times. Example:

activated:
     Print("Activated");
     call activated;

Return;