summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJoseph Botosh <rumly111@gmail.com>2015-09-23 21:01:14 +0300
committerJoseph Botosh <rumly111@gmail.com>2015-09-23 21:01:14 +0300
commitb35d6a3bf22f5d2e2e870e1c01c915494a41704d (patch)
treec386e158f22d5296f15caf8cc35f67a8484dfc5c /npc
parentbf1836913276cf3963939797dc8e0fdc23a24d96 (diff)
downloadserverdata-b35d6a3bf22f5d2e2e870e1c01c915494a41704d.tar.gz
serverdata-b35d6a3bf22f5d2e2e870e1c01c915494a41704d.tar.bz2
serverdata-b35d6a3bf22f5d2e2e870e1c01c915494a41704d.tar.xz
serverdata-b35d6a3bf22f5d2e2e870e1c01c915494a41704d.zip
add debugnpc function
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/main.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt
index f0811632..b78c9433 100644
--- a/npc/functions/main.txt
+++ b/npc/functions/main.txt
@@ -95,3 +95,11 @@ function script speech {
}
return;
}
+
+
+// Show debug message if .debug variable of NPC is set to 1
+function script npcdebug {
+ if (getvariableofnpc(.debug, strnpcinfo(3)))
+ debugmes strnpcinfo(3) + ": " + getarg(0);
+ return;
+}