diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-15 15:26:56 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-15 15:26:56 +0000 |
commit | 4a7872146a41f51c410fcbb661c566cc308b322a (patch) | |
tree | f5e62357091f85103f9a3c0339f724e6b87db09b /npc | |
parent | 12296a324b3769a46e6e7c3cdf29436a6e24d55f (diff) | |
download | hercules-4a7872146a41f51c410fcbb661c566cc308b322a.tar.gz hercules-4a7872146a41f51c410fcbb661c566cc308b322a.tar.bz2 hercules-4a7872146a41f51c410fcbb661c566cc308b322a.tar.xz hercules-4a7872146a41f51c410fcbb661c566cc308b322a.zip |
Fixed missing 'name' parameter in 'duplicate' script command documentation.
Added npc_test_duplicate.txt to /samples.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11219 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 1 | ||||
-rw-r--r-- | npc/sample/npc_test_duplicate.txt | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index a373bd625..477b9b9ab 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,6 +1,7 @@ Date Added ====== 2007/09/15 + * Added npc_test_duplicate.txt to /samples * Corrected some npc/other/ bugs - added missing arena.txt and fortune.txt to npc list - commented out arena.txt and mail.txt since it's not at all done yet diff --git a/npc/sample/npc_test_duplicate.txt b/npc/sample/npc_test_duplicate.txt new file mode 100644 index 000000000..b9e6a4d4c --- /dev/null +++ b/npc/sample/npc_test_duplicate.txt @@ -0,0 +1,29 @@ +// +// This sample script tests: +// * how npc-variables work with duplicated npcs +// * how the trigger area is applied to duplicates +// +// Outcome (r11216 trunk): +// * the variables are _shared_ between all duplicates +// * 'OnInit' loads the middle poring last, for some reason +// * duplicates always override the source npc's trigger area (even 0x0) +// + +- script Test Script -1,1,1,{ + mes "Hi."; + mes "My coords are "+ .map$ +", "+ .x +"/" +.y ; + close; + +OnInit: + getmapxy(.map$, .x, .y, 1); + end; + +OnTouch: + getmapxy(.map$, .x, .y, 1); + emotion e_scissors; + end; +} + +prontera,150,175,4 duplicate(Test Script) Test1 909 +prontera,155,175,4 duplicate(Test Script) Test2 909,2,2 +prontera,160,175,4 duplicate(Test Script) Test3 909,3,3 |