summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_duplicate.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-05 11:34:32 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-10 23:19:41 +0300
commit9676480bba16725c6687b336899c1dc5a77e3ec5 (patch)
tree09a22735947e56f8b024aa66aec9b7e017f4ad92 /doc/sample/npc_test_duplicate.txt
parente2700b135d84dffae2b0c0f4f03f3e3cbf779b78 (diff)
downloadhercules-9676480bba16725c6687b336899c1dc5a77e3ec5.tar.gz
hercules-9676480bba16725c6687b336899c1dc5a77e3ec5.tar.bz2
hercules-9676480bba16725c6687b336899c1dc5a77e3ec5.tar.xz
hercules-9676480bba16725c6687b336899c1dc5a77e3ec5.zip
Remove conf dir.
Diffstat (limited to 'doc/sample/npc_test_duplicate.txt')
-rw-r--r--doc/sample/npc_test_duplicate.txt33
1 files changed, 0 insertions, 33 deletions
diff --git a/doc/sample/npc_test_duplicate.txt b/doc/sample/npc_test_duplicate.txt
deleted file mode 100644
index 55d64bc7b..000000000
--- a/doc/sample/npc_test_duplicate.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-//===== Hercules Script =======================================
-//= Sample: Duplicate Test
-//===== By: ==================================================
-//= Hercules Dev Team
-//===== Current Version: =====================================
-//= 20140320
-//===== Description: =========================================
-//= An example of how duplicate NPCs are handled:
-//= NPC variables are shared between all duplicates.
-//= In this sample, to get the NPC coordinate, has to trigger OnTouch
-//= Duplicates always override the source NPC's trigger area (even 0x0).
-//= 'OnInit' loads the main npc last, for some reason. (check with debugmes)
-//============================================================
-
-- script Test Script -1,1,1,{
- mes "Hi.";
- mes "My coords are "+ .map$ +", "+ .x +"/" +.y ;
- close;
-
-OnInit:
- getmapxy(.map$, .x, .y, 1);
- debugmes strnpcinfo(0);
- end;
-
-OnTouch:
- getmapxy(.map$, .x, .y, 1);
- emotion e_scissors;
- end;
-}
-
-prontera,150,175,4 duplicate(Test Script) Test1 4_PORING
-prontera,155,175,4 duplicate(Test Script) Test2 4_PORING,2,2
-prontera,160,175,4 duplicate(Test Script) Test3 4_PORING,3,3