summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-21 08:26:58 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-21 08:26:58 +0000
commit4f68a6ef917b92df214a12dcef09cffdfa1e80ff (patch)
tree98bf244c38b10dfbd244ad78e2c638270285d1e0 /doc
parent3726e00c073550558fa9b954e1fd2b854bc787e3 (diff)
downloadhercules-4f68a6ef917b92df214a12dcef09cffdfa1e80ff.tar.gz
hercules-4f68a6ef917b92df214a12dcef09cffdfa1e80ff.tar.bz2
hercules-4f68a6ef917b92df214a12dcef09cffdfa1e80ff.tar.xz
hercules-4f68a6ef917b92df214a12dcef09cffdfa1e80ff.zip
- Fixed emperium coordinates in Payon Holy Shadow (payg_cas03).
- Also enforce sd->emotionlasttime for pet emotions. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15901 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc')
-rw-r--r--doc/script_commands.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt
index 002ca62d4..da23ff918 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -3360,12 +3360,14 @@ Return values for 'checkvending' are
'checkchatting' returns 1 if they are in a chat room, 0 if they are not.
Example(s):
-if (checkVending("Aaron")) mes "Aaron is currently vending!";
//This will check if Aaron is vending, and if so, put a message in front
//of the attached player saying Aaron is vending.
+ if (checkvending("Aaron"))
+ mes "Aaron is currently vending!";
-if (checkChatting()) mes "You are currently chatting!";
- //This will check if you're in a chat room or not
+ //This will check if the attached player in a chat room or not.
+ if (checkchatting())
+ mes "You are currently in a chat room!";
---------------------------------------