diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-05 01:06:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-05 01:06:21 +0300 |
commit | a32d82edf79e293b09874e4cd2bdcebbc5daf9e2 (patch) | |
tree | d0a483f4dfb0e69c49ba220a2c7b16baa93bcef5 | |
parent | 45eeb456802331db4756fe5acf4a1cb13477fcec (diff) | |
download | serverdata-a32d82edf79e293b09874e4cd2bdcebbc5daf9e2.tar.gz serverdata-a32d82edf79e293b09874e4cd2bdcebbc5daf9e2.tar.bz2 serverdata-a32d82edf79e293b09874e4cd2bdcebbc5daf9e2.tar.xz serverdata-a32d82edf79e293b09874e4cd2bdcebbc5daf9e2.zip |
Into npc move program add command "speed"
-rw-r--r-- | npc/functions/npcmove.txt | 5 | ||||
-rw-r--r-- | npc/test/npc4.txt | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/npc/functions/npcmove.txt b/npc/functions/npcmove.txt index 346549fc3..907c2098e 100644 --- a/npc/functions/npcmove.txt +++ b/npc/functions/npcmove.txt @@ -69,6 +69,11 @@ function script domoveaction { getmapxy(.@mapName$, .@x, .@y, 1); npcwalkto .@x + getvariableofnpc(.movepathx[.@pos], strnpcinfo(3)), .@y + getvariableofnpc(.movepathy[.@pos], strnpcinfo(3)); } + else if (.@cmd$ == "speed") + { + npcspeed getvariableofnpc(.movepathx[.@pos], strnpcinfo(3)); + return 2; + } return 1; } diff --git a/npc/test/npc4.txt b/npc/test/npc4.txt index 4d54532b2..a05582887 100644 --- a/npc/test/npc4.txt +++ b/npc/test/npc4.txt @@ -21,10 +21,12 @@ OnInit: "move", 25, 20, "emote", 3, 0, "class", 104, 0, + "speed", 100, 0, "wait", 2, 0, "move", 22, 10, "rmove", 3, 3, "class", 801, 0, + "speed", 200, 0, "wait", 1, 0, "warp", 22, 30, "goto", 0, 0; |