summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_chat.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-05 11:34:32 +0300
committerAndrei Karas <akaras@inbox.ru>2016-07-08 20:06:38 +0300
commit20e3a622e7f67c11c9645d8e36415608df354c53 (patch)
tree46ccb7ec7fbc23a1ea8b2f61ccc416fc8b2440c7 /doc/sample/npc_test_chat.txt
parent4f08530a2f41a2d1839c3bb78790361d370ef03b (diff)
downloadhercules-20e3a622e7f67c11c9645d8e36415608df354c53.tar.gz
hercules-20e3a622e7f67c11c9645d8e36415608df354c53.tar.bz2
hercules-20e3a622e7f67c11c9645d8e36415608df354c53.tar.xz
hercules-20e3a622e7f67c11c9645d8e36415608df354c53.zip
Remove conf dir.
Diffstat (limited to 'doc/sample/npc_test_chat.txt')
-rw-r--r--doc/sample/npc_test_chat.txt37
1 files changed, 0 insertions, 37 deletions
diff --git a/doc/sample/npc_test_chat.txt b/doc/sample/npc_test_chat.txt
deleted file mode 100644
index adc53c763..000000000
--- a/doc/sample/npc_test_chat.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-//===== Hercules Script =======================================
-//= Sample: Chat Test
-//===== By: ==================================================
-//= Hercules Dev Team
-//===== Current Version: =====================================
-//= 20121003
-//===== Description: =========================================
-//= Demonstrates waitingroom commands.
-//============================================================
-
-prontera,158,182,0 script Chat Test::test0001 4_F_KAFRA2,{
- mes "Trigger Number: " + getwaitingroomstate(2);
- mes "Trigger State: " + getwaitingroomstate(3);
- switch(select("Enable:Disable:Delete:Create")) {
- case 1:
- enablewaitingroomevent;
- close;
- case 2:
- disablewaitingroomevent;
- close;
- case 3:
- delwaitingroom;
- close;
- case 4:
- waitingroom "Test",15,"test0001::OnChatEvent",1;
- close;
- }
-
-OnInit:
- waitingroom "Test",15,"test0001::OnChatEvent",1;
- end;
-
-OnChatEvent:
- disablewaitingroomevent;
- warpwaitingpc "prontera",160,180;
- end;
-}