diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-01 20:28:23 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-01 20:28:23 -0200 |
commit | 57f3de6e9009d672f42ba8ec268f012d3548e110 (patch) | |
tree | 60e6244be48f1a376fd5e23ce311436036b0ebc5 /npc/019-2/ship.txt | |
parent | bcaf48c44080c277fe2c80bd271766299bfdb8d1 (diff) | |
download | serverdata-57f3de6e9009d672f42ba8ec268f012d3548e110.tar.gz serverdata-57f3de6e9009d672f42ba8ec268f012d3548e110.tar.bz2 serverdata-57f3de6e9009d672f42ba8ec268f012d3548e110.tar.xz serverdata-57f3de6e9009d672f42ba8ec268f012d3548e110.zip |
Add ship to Nivalis
Diffstat (limited to 'npc/019-2/ship.txt')
-rw-r--r-- | npc/019-2/ship.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/npc/019-2/ship.txt b/npc/019-2/ship.txt new file mode 100644 index 000000000..fb1297ad2 --- /dev/null +++ b/npc/019-2/ship.txt @@ -0,0 +1,18 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// This script controls access to Ships, fixing variables. + +019-2,120,113,0 script NivalShip NPC_HIDDEN,0,0,{ + +OnTouch: + LOCATION$="Nival"; + goto L_Warp; + +L_Warp: + warp "016-1@"+LOCATION$, 21, 26; + closedialog; + close; +} + |