diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-08-05 15:02:38 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2012-08-05 15:02:38 -0700 |
commit | 54f7a800cf7414a0a3ca3c8a8146c10630762995 (patch) | |
tree | 95428012ff40fe4d9309bd51becd2157fff14d5f /world/map/npc/functions/debug.txt | |
parent | 48b347ea0f749393ab9c88be211fb2f39e56d7d9 (diff) | |
download | serverdata-54f7a800cf7414a0a3ca3c8a8146c10630762995.tar.gz serverdata-54f7a800cf7414a0a3ca3c8a8146c10630762995.tar.bz2 serverdata-54f7a800cf7414a0a3ca3c8a8146c10630762995.tar.xz serverdata-54f7a800cf7414a0a3ca3c8a8146c10630762995.zip |
Add debug NPCs that disable themselves in production.
Diffstat (limited to 'world/map/npc/functions/debug.txt')
-rwxr-xr-x | world/map/npc/functions/debug.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/world/map/npc/functions/debug.txt b/world/map/npc/functions/debug.txt index b3692606..f9989b74 100755 --- a/world/map/npc/functions/debug.txt +++ b/world/map/npc/functions/debug.txt @@ -864,3 +864,43 @@ L_ResetAll: goto L_Begin; } + +042-2.gat,30,26,0|script|Debug0|154,{ + callfunc "Debug"; + end; +OnInit: + if (!debug) + disablenpc "Debug0"; +} + +001-1.gat,41,29,0|script|Debug1|154,{ + callfunc "Debug"; + end; +OnInit: + if (!debug) + disablenpc "Debug1"; +} + +009-1.gat,52,33,0|script|Debug2|154,{ + callfunc "Debug"; + end; +OnInit: + if (!debug) + disablenpc "Debug2"; +} + +020-1.gat,75,85,0|script|Debug3|154,{ + callfunc "Debug"; + end; +OnInit: + if (!debug) + disablenpc "Debug3"; +} + +botcheck.gat,50,28,0|script|Debug4|154,{ + callfunc "Debug"; + end; +OnInit: + if (!debug) + disablenpc "Debug4"; +} |