diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-11 09:45:06 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-11 09:45:06 -0200 |
commit | 972e6444b1c44ebaee4b40516958c34c19e18ca2 (patch) | |
tree | 72791b5a8a4aef763bc5fa04263eefc6be82baac /npc/002-3 | |
parent | 0b8f2b333aabbd61ea9f3c400ffabbb3c49bff9d (diff) | |
download | serverdata-972e6444b1c44ebaee4b40516958c34c19e18ca2.tar.gz serverdata-972e6444b1c44ebaee4b40516958c34c19e18ca2.tar.bz2 serverdata-972e6444b1c44ebaee4b40516958c34c19e18ca2.tar.xz serverdata-972e6444b1c44ebaee4b40516958c34c19e18ca2.zip |
This is core for moving in and out of Nard's ship
Diffstat (limited to 'npc/002-3')
-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; |