diff options
-rw-r--r-- | npc/001-2-34/doors.txt | 9 | ||||
-rw-r--r-- | npc/001-2-36/_import.txt | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/npc/001-2-34/doors.txt b/npc/001-2-34/doors.txt index b417675f..b4a483e9 100644 --- a/npc/001-2-34/doors.txt +++ b/npc/001-2-34/doors.txt @@ -7,7 +7,14 @@ 001-2-34,23,29,0 script ToTrainingRoom#001-2-34 NPC_HIDDEN,0,0,{ OnTouch: - if (mobcount("001-2-36.gat","all") > 0) + if ((getmapusers($@MAP_NAME$) == 0) && ($@FightingIsActive > 0)) + { + set $@FightingIsActive, 0; + killmonsterall "001-2-36.gat"; + + } + + if (mobcount("001-2-36.gat","all") > 0 && $@FightingIsActive > 0) { narrator l("You hear some sound behind the door."), diff --git a/npc/001-2-36/_import.txt b/npc/001-2-36/_import.txt index fc3a9f3f..e2b50e1f 100644 --- a/npc/001-2-36/_import.txt +++ b/npc/001-2-36/_import.txt @@ -1,3 +1,4 @@ // Map 001-2-36 npc: npc/001-2-36/_warps.txt npc: npc/001-2-36/mapflags.txt +npc: npc/001-2-36/training_room_npc.txt |