diff options
author | Haru <haru@dotalux.com> | 2017-05-15 01:25:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-15 01:25:39 +0200 |
commit | be118c7fad6df29dc691452ef511ac12fea37a06 (patch) | |
tree | 36c9f9e7714ffea7d1b9d21b86ddc7ed61e955c0 /doc | |
parent | ab333a87fb891793321b0e4467d8389c8f80be35 (diff) | |
parent | 8669002016bc60019a317124ae088a8053a0238b (diff) | |
download | hercules-be118c7fad6df29dc691452ef511ac12fea37a06.tar.gz hercules-be118c7fad6df29dc691452ef511ac12fea37a06.tar.bz2 hercules-be118c7fad6df29dc691452ef511ac12fea37a06.tar.xz hercules-be118c7fad6df29dc691452ef511ac12fea37a06.zip |
Merge pull request #1719 from mekolat/channel2
add channel handler events
Diffstat (limited to 'doc')
-rw-r--r-- | doc/script_commands.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 5ba0aaa2e..0ba350ad1 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -7450,6 +7450,27 @@ no RID is attached), false will be returned. In case of success, true is returned. --------------------------------------- + +*addchannelhandler("<#channel>", "<NPC::OnEvent>") + +This command will trigger the specified event every time a player +talks in the specified channel, with said player as attached rid. +It assigns the message to @channelmes$ + +OnChannelMessage: + channelmes("#chan", "Echo: " + @channelmes$); + end; + +OnInit: + addchannelhandler("#chan", "NPC::OnChannelMessage"); + +--------------------------------------- + +*removechannelhandler("<#channel>", "<NPC::OnEvent>") + +Removes a channel handler added by addchannelhandler() + +--------------------------------------- *rand(<number>{, <number>}) This function returns a number ... |