diff options
author | Haru <haru@dotalux.com> | 2017-03-12 04:15:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-12 04:15:44 +0100 |
commit | 7950c54a9a912b2c05d53afeaed7ddcda9caf196 (patch) | |
tree | 44591edea2069de286a6b0089f0dc55fbaaf450f /doc | |
parent | 5321ac0bc44e4429bb443f7e2a2c9fea0e047cd4 (diff) | |
parent | cc6db9e43dea9b0093d7f7617e6016b2635744dc (diff) | |
download | hercules-7950c54a9a912b2c05d53afeaed7ddcda9caf196.tar.gz hercules-7950c54a9a912b2c05d53afeaed7ddcda9caf196.tar.bz2 hercules-7950c54a9a912b2c05d53afeaed7ddcda9caf196.tar.xz hercules-7950c54a9a912b2c05d53afeaed7ddcda9caf196.zip |
Merge pull request #1610 from mekolat/timer2
allow the PC timer buildins to run on another player
Diffstat (limited to 'doc')
-rw-r--r-- | doc/script_commands.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 2f6f9b7ff..b202f1b6b 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -6478,15 +6478,16 @@ Size is 0 = normal 1 = small 2 = big. //===================================== --------------------------------------- -*addtimer(<ticks>, "NPC::OnLabel") -*deltimer("NPC::OnLabel") -*addtimercount("NPC::OnLabel", <ticks>) +*addtimer(<ticks>, "NPC::OnLabel"{, <account id>}) +*deltimer("NPC::OnLabel"{, <account id>}) +*addtimercount("NPC::OnLabel", <ticks>{, <account id>}) These commands will create, destroy, and delay a countdown timer - addtimer() to create, deltimer() to destroy and addtimercount() to delay it by the specified number of ticks. For all three cases, the event label given is the identifier of that timer. The timer runs on the character -object that is attached to the script, and can have multiple instances. +object that is attached to the script, and can have multiple instances. +If <acccount id> is passed, this player will be used instead. When the label is run, it is run as if the player that the timer runs on has clicked the NPC. |