blob: 271e5fb648620368f0d77d6e6d4a088afbe7f8e7 (
plain) (
tree)
|
|
// 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", 119, 25;
close;
}
mes col("Oh noes! The door is locked!! Quick! Call a GM!!!", 1);
close;
}
|