diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-09 16:12:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-09 16:12:39 -0300 |
commit | 1910a899cb2a6906a06fe534ab34cfe811895a53 (patch) | |
tree | 97b7144fab86b6a70a059abff383b1d3655ab41b /npc/012-1/ship.txt | |
parent | 47fc4c503ceb5591ce27909ab9e4935a197b2ec0 (diff) | |
download | serverdata-1910a899cb2a6906a06fe534ab34cfe811895a53.tar.gz serverdata-1910a899cb2a6906a06fe534ab34cfe811895a53.tar.bz2 serverdata-1910a899cb2a6906a06fe534ab34cfe811895a53.tar.xz serverdata-1910a899cb2a6906a06fe534ab34cfe811895a53.zip |
Fix a typo. Add several scripts to aid with La Marine. Pirate attack still isn't
being taken in account, I am waiting @Saulc to finish it %%G
Diffstat (limited to 'npc/012-1/ship.txt')
-rw-r--r-- | npc/012-1/ship.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/npc/012-1/ship.txt b/npc/012-1/ship.txt new file mode 100644 index 000000000..01a7c7b64 --- /dev/null +++ b/npc/012-1/ship.txt @@ -0,0 +1,18 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// This script controls access to Marine's Ship, fixing variables. + +012-1,0,0,0 script HurnsShip NPC_HIDDEN,0,0,{ + +OnTouch: + LOCATION$="Hurns"; + goto L_Warp; + +L_Warp: + //warp "016-1", 0, 0; + warp "016-6@"+LOCATION$, 31, 28; + closedialog; + close; +} |