diff options
Diffstat (limited to 'npc/016-1/doors.txt')
-rw-r--r-- | npc/016-1/doors.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/016-1/doors.txt b/npc/016-1/doors.txt new file mode 100644 index 000000000..62759c83a --- /dev/null +++ b/npc/016-1/doors.txt @@ -0,0 +1,24 @@ +// TMW2 Scripts. +// Author: +// Jesusalva +// Description: +// La Marine ship Doors NPCs. + +016-1,21,25,0 script #MarineToOutside NPC_HIDDEN,0,0,{ + +OnTouch: + .@nard = getq(ShipQuests_Nard); + + if (LOCATION$ == "Hurns") { + warp "012-1", 141, 65; + close; + } + if (LOCATION$ == "Tulim") { + warp "003-1", 81, 68; + close; + } + mes col("Oh noes! The door is locked!! Quick! Call a GM!!!", 1); + close; +} + + |