diff options
Diffstat (limited to 'npc/003-1/ship.txt')
-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; +} |