diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-10 16:46:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-10 16:46:01 -0300 |
commit | 17f52684d8dec6b08b78619a264e949ccd79bd5f (patch) | |
tree | 936499ee7246ad00f010b72e87510c8eddb9827d /npc/002-3 | |
parent | d4c74c033a8b4b4c78e9a9ce5f819eb57c31870b (diff) | |
download | serverdata-17f52684d8dec6b08b78619a264e949ccd79bd5f.tar.gz serverdata-17f52684d8dec6b08b78619a264e949ccd79bd5f.tar.bz2 serverdata-17f52684d8dec6b08b78619a264e949ccd79bd5f.tar.xz serverdata-17f52684d8dec6b08b78619a264e949ccd79bd5f.zip |
You should be able to arrive at Hurns now.
Diffstat (limited to 'npc/002-3')
-rw-r--r-- | npc/002-3/doors.txt | 35 |
1 files changed, 3 insertions, 32 deletions
diff --git a/npc/002-3/doors.txt b/npc/002-3/doors.txt index 5a8d4da62..371e25982 100644 --- a/npc/002-3/doors.txt +++ b/npc/002-3/doors.txt @@ -2,28 +2,20 @@ // Author: // Jesusalva // Description: -// Doors NPCs. +// Nard's ship Doors NPCs. 002-3,30,28,0 script AreaNPC#doors4 NPC_HIDDEN,0,0,{ OnTouch: - .@nard = getq(ShipQuests_Nard); - - if (LOCATION$ == "Candor") - { + if (LOCATION$ == "Candor") { warp "005-1", 42, 107; close; } - if (LOCATION$ == "Tulim") - { + if (LOCATION$ == "Tulim") { warp "003-1", 81, 68; close; } - // None of these checks will ever return positive, but were kept when delay is applied. - if (.@nard == 4) goto L_GotoNard; - if (.@nard == 5) goto L_End; - setcamnpc "Julia"; mesn "Julia"; mesq l("The captain has locked the door, you should go see him."); @@ -36,27 +28,6 @@ OnTouch: close; -L_GotoNard: - setcamnpc "Julia"; - mesn "Julia"; - mesq l("The captain is waiting for you! Hurry up."); - next; - restorecam; - - close; - -L_End: - mesn "Narrator"; - mesq col(l("This door is locked."), 9); - setcamnpc "Julia"; - next; - mesn "Julia"; - mesq l("We're soon leaving that island, please return to your cabine."); - next; - restorecam; - - close; - OnInterIfInit: |