diff options
author | Haru <haru@dotalux.com> | 2015-12-29 02:16:49 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-31 23:39:23 +0100 |
commit | b4c99db7d5a500770383e24ef2fd1f956b19da74 (patch) | |
tree | afb1e9ad57cb48d4bb826183d630e99e840f9f8f /doc/whisper_sys.txt | |
parent | efaaf842dc3717e21b915edf37b3e907b02fa5a1 (diff) | |
download | hercules-b4c99db7d5a500770383e24ef2fd1f956b19da74.tar.gz hercules-b4c99db7d5a500770383e24ef2fd1f956b19da74.tar.bz2 hercules-b4c99db7d5a500770383e24ef2fd1f956b19da74.tar.xz hercules-b4c99db7d5a500770383e24ef2fd1f956b19da74.zip |
Replaced leftover -1 view IDs with FAKE_NPC
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'doc/whisper_sys.txt')
-rw-r--r-- | doc/whisper_sys.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/whisper_sys.txt b/doc/whisper_sys.txt index 39e2a54f2..ba7165b87 100644 --- a/doc/whisper_sys.txt +++ b/doc/whisper_sys.txt @@ -29,7 +29,7 @@ You whisper an NPC "NPCCommander" in-game with the following instructions: The parameters are passed on to the "OnWhisperGlobal" label of the NPC, and can be processed accordingly: -- script NPCCommander -1,{ +- script NPCCommander FAKE_NPC,{ OnWhisperGlobal: // Inform player "Lordalfa" that he has been reported for killstealing. if (@whispervar0$ == "Report") @@ -39,7 +39,7 @@ OnWhisperGlobal: This could also be used for hidden event triggers: -- script EventManager -1,{ +- script EventManager FAKE_NPC,{ OnWhisperGlobal: if (getgmlevel() < 80) end; if (@whispervar0$ == "pvp") { |