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 close2:
 
* close2;
 
This command will create a 'close' button in the message window for the invoking
character. If no window is currently on screen, it will be created. See 'close'.
There is one important difference, though - even though the message box will
have closed, the script execution will not stop, and commands after 'close2'
will still run, meaning an 'end' has to be used to stop the script, unless you
make it stop in some other manner.

mes "[Woman]";
mes "I will warp you now";
close2;
warp "place",50,50;
end;

Don't expect things to run smoothly if you don't make your scripts 'end'.

Examples:

> mes "[Woman]";
> mes "I will warp you now";
> close2;
> warp "place",50,50;
> end;
This will warp the player after the player clicks close.

Valid XHTML 1.0 Strict Valid CSS!