diff options
Diffstat (limited to 'npc/008-2/_config.txt')
-rw-r--r-- | npc/008-2/_config.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/npc/008-2/_config.txt b/npc/008-2/_config.txt index 70d268662..663ffd5ad 100644 --- a/npc/008-2/_config.txt +++ b/npc/008-2/_config.txt @@ -53,3 +53,47 @@ OnTouch: doevent "#008-2_84_208::OnDisable"; end; } + +008-2,72,247,0 script #008-2_72_247 NPC_TRAP_ONLINE,0,0,{ + mesn strcharinfo(0); + mesq l("Something seems off with that!"); + close; +OnTouch: +OnTouchNPC: + IronTrap(200, 0, 1); + end; +} + +008-2,87,240,0 script #008-2_87_240 NPC_TRAP_ONLINE,0,0,{ + mesn strcharinfo(0); + mesq l("Something seems off with that!"); + close; +OnTouch: +OnTouchNPC: + IronTrap(200, 0, 1); + end; +} + +008-2,46,211,0 script #008-2_46_211 NPC_TRAP,0,0,{ + mesn strcharinfo(0); + mesq l("Something seems off with that!"); + close; +OnTouch: +OnTouchNPC: + IronTrap(200, 10, 2); + end; +OnTimer10000: + stopnpctimer; setnpctimer 0; setnpcdisplay 008-2_46_211, NPC_TRAP; end; +} + +008-2,85,117,0 script #008-2_85_117 NPC_TRAP,0,0,{ + mesn strcharinfo(0); + mesq l("Something seems off with that!"); + close; +OnTouch: +OnTouchNPC: + IronTrap(400, 15, 3); + end; +OnTimer15000: + stopnpctimer; setnpctimer 0; setnpcdisplay 008-2_85_117, NPC_TRAP; end; +} |