diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/npcmovegraph.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/functions/npcmovegraph.txt b/npc/functions/npcmovegraph.txt index 0a0e29c7..6a7d344e 100644 --- a/npc/functions/npcmovegraph.txt +++ b/npc/functions/npcmovegraph.txt @@ -123,6 +123,11 @@ function script execmovecmd { { npcspeed atoi(.@cmd$[1]); } + else if (.@cmd$[0] == "say") + { + deletearray .@cmd$[0], 1; + npctalk implode(.@cmd$, " "); + } else { debugmes "Unknown move graph cmd: " + .@cmd$[0]; |