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/003-1/ship.txt | |
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/003-1/ship.txt')
-rw-r--r-- | npc/003-1/ship.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/003-1/ship.txt b/npc/003-1/ship.txt new file mode 100644 index 000000000..01089b546 --- /dev/null +++ b/npc/003-1/ship.txt @@ -0,0 +1,17 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// This script controls access to Nard's Ship, fixing variables. + +003-1,82,68,0 script CandorShip NPC_HIDDEN,0,0,{ + +OnTouch: + LOCATION$="Tulim"; + goto L_Warp; + +L_Warp: + warp "002-3", 21, 28; + closedialog; + close; +} |