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/003-1 | |
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/003-1')
-rw-r--r-- | npc/003-1/ship.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/npc/003-1/ship.txt b/npc/003-1/ship.txt index 5dd5b9479..958a821e5 100644 --- a/npc/003-1/ship.txt +++ b/npc/003-1/ship.txt @@ -2,7 +2,7 @@ // Authors: // Jesusalva // Description: -// This script controls access to Nard's Ship, fixing variables. +// This script controls access to Ships, fixing variables. 003-1,82,68,0 script TulimShip NPC_HIDDEN,0,0,{ @@ -15,3 +15,15 @@ L_Warp: closedialog; close; } + +003-1,120,25,0 script TulimShip#M NPC_HIDDEN,0,0,{ + +OnTouch: + LOCATION$="Tulim"; + goto L_Warp; + +L_Warp: + warp "016-1@"+LOCATION$, 21, 26; + closedialog; + close; +} |