diff options
Diffstat (limited to 'npc/002-3/doors.txt')
-rw-r--r-- | npc/002-3/doors.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/npc/002-3/doors.txt b/npc/002-3/doors.txt index f8adc4574..418d06049 100644 --- a/npc/002-3/doors.txt +++ b/npc/002-3/doors.txt @@ -1,6 +1,8 @@ +// TMW2 Scripts. // Evol scripts. // Author: // Reid +// Jesusalva // Description: // Doors NPCs. // The third value of the .@nard variable has been removed for the beta2, it'll then be re-added for the Aurora release. @@ -24,11 +26,16 @@ OnTouch: .@nard = getq(ShipQuests_Nard); - if (getq(General_Narrator) > 0) + if (LOCATION$ == "Candor") { warp "005-1", 42, 107; close; } + if (LOCATION$ == "Tulim") + { + warp "003-1", 81, 68; + close; + } if (.@nard == 4) goto L_GotoNard; if (.@nard == 5) goto L_End; |