diff options
author | shennetsind <ind@henn.et> | 2014-03-22 17:07:13 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2014-03-22 17:07:13 -0300 |
commit | 2b4d6abbc5baddc2207e73f0b84c7e6c73e271a4 (patch) | |
tree | e8d15f8f4a252cda88f3e3173f366ff9881edc4c /doc/sample | |
parent | 9ea7b143192568a259aa6e7e223420e8d5762b9e (diff) | |
parent | d097f2c4b4a31885c6b04f5868563e1f48414192 (diff) | |
download | hercules-2b4d6abbc5baddc2207e73f0b84c7e6c73e271a4.tar.gz hercules-2b4d6abbc5baddc2207e73f0b84c7e6c73e271a4.tar.bz2 hercules-2b4d6abbc5baddc2207e73f0b84c7e6c73e271a4.tar.xz hercules-2b4d6abbc5baddc2207e73f0b84c7e6c73e271a4.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'doc/sample')
-rw-r--r-- | doc/sample/npc_test_duplicate.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/sample/npc_test_duplicate.txt b/doc/sample/npc_test_duplicate.txt index 7f2855a49..55d64bc7b 100644 --- a/doc/sample/npc_test_duplicate.txt +++ b/doc/sample/npc_test_duplicate.txt @@ -3,13 +3,13 @@ //===== By: ================================================== //= Hercules Dev Team //===== Current Version: ===================================== -//= 20131225 +//= 20140320 //===== Description: ========================================= //= An example of how duplicate NPCs are handled: //= NPC variables are shared between all duplicates. -//= Each duplicate knows its own map coordinates. +//= 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 middle Poring last, for some reason. +//= 'OnInit' loads the main npc last, for some reason. (check with debugmes) //============================================================ - script Test Script -1,1,1,{ @@ -19,6 +19,7 @@ OnInit: getmapxy(.map$, .x, .y, 1); + debugmes strnpcinfo(0); end; OnTouch: |