diff options
author | jaBote <jaBote@users.noreply.github.com> | 2014-06-07 20:00:16 +0200 |
---|---|---|
committer | jaBote <jaBote@users.noreply.github.com> | 2014-06-07 20:00:16 +0200 |
commit | 60e367824750a3e2498a78b3d78367c0b8a499de (patch) | |
tree | 67fd6827bca3e3550e4028a7756dface38ae476e | |
parent | 64660a7643ebdb45c45534807fcd6b38204939f3 (diff) | |
download | hercules-60e367824750a3e2498a78b3d78367c0b8a499de.tar.gz hercules-60e367824750a3e2498a78b3d78367c0b8a499de.tar.bz2 hercules-60e367824750a3e2498a78b3d78367c0b8a499de.tar.xz hercules-60e367824750a3e2498a78b3d78367c0b8a499de.zip |
Fixed Bug Report 8226
Just reflecting correct behavior of addtimercount script command, which expects the parameters in the reverse order the documentation formerly said.
-rw-r--r-- | doc/script_commands.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index fbded8d41..dde0c1823 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -6155,7 +6155,7 @@ Size is 0 = normal 1 = small 2 = big. *addtimer <ticks>,"NPC::OnLabel"; *deltimer "NPC::OnLabel"; -*addtimercount <ticks>,"NPC::OnLabel"; +*addtimercount "NPC::OnLabel",<ticks>; These commands will create, destroy, and delay a countdown timer - 'addtimer' to create, 'deltimer' to destroy and 'addtimercount' to delay |