diff options
author | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-02 04:37:41 +0000 |
---|---|---|
committer | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-02 04:37:41 +0000 |
commit | 316149bbce039a6f046ed36bdd2838270ca4946e (patch) | |
tree | 1fe50414298b8bf501151708410f019ee3fa45b1 /doc/script_commands.txt | |
parent | 0155c9666c00e75a341b9d7bffc16745b5ed897f (diff) | |
download | hercules-316149bbce039a6f046ed36bdd2838270ca4946e.tar.gz hercules-316149bbce039a6f046ed36bdd2838270ca4946e.tar.bz2 hercules-316149bbce039a6f046ed36bdd2838270ca4946e.tar.xz hercules-316149bbce039a6f046ed36bdd2838270ca4946e.zip |
Updated script doc to appropriately describe the effects of close/close2 when used without a window on screen. (bugreport:898)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14439 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 2d00cbbff..5efdaa380 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -1063,7 +1063,7 @@ segment NPC talking, this command is used A LOT. See 'mes'. *close; 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. This is one +character. If no window is currently on screen, the script execution will end. This is one of the ways to end a speech from an NPC. Once the button is clicked, the NPC script execution will end, and the message box will disappear. @@ -1077,10 +1077,10 @@ script execution will end, and the message box will disappear. *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 +character. WARNING: If no window is currently on screen, the script execution will halt +indefinitely! 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]"; |