summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/npcmove.txt5
-rw-r--r--npc/test/npc4.txt2
2 files changed, 7 insertions, 0 deletions
diff --git a/npc/functions/npcmove.txt b/npc/functions/npcmove.txt
index 346549fc..907c2098 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 4d54532b..a0558288 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;