diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-03-17 02:33:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-03-17 02:33:13 -0300 |
commit | 2532624d48665b07a2d89812274613885f9ae70f (patch) | |
tree | 455d2d771fefd1b492476300c1d177f4e06181ed /npc/029-0/town.txt | |
parent | f87568e9b29ab6dc2b2bff4bee254a8f1b6bb5c8 (diff) | |
download | serverdata-2532624d48665b07a2d89812274613885f9ae70f.tar.gz serverdata-2532624d48665b07a2d89812274613885f9ae70f.tar.bz2 serverdata-2532624d48665b07a2d89812274613885f9ae70f.tar.xz serverdata-2532624d48665b07a2d89812274613885f9ae70f.zip |
Captain Nard is now responsible for Artis<->Tulimshar route.
The Artis<->Candor route is also allowed.
Diffstat (limited to 'npc/029-0/town.txt')
-rw-r--r-- | npc/029-0/town.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/npc/029-0/town.txt b/npc/029-0/town.txt index c1e5eec51..fc7607365 100644 --- a/npc/029-0/town.txt +++ b/npc/029-0/town.txt @@ -4,8 +4,20 @@ // Description: // Reset LOCATION$ when entering a town -029-0,203,85,0 script #LocArtis NPC_HIDDEN,3,3,{ +029-0,203,85,0 script #LocArtis NPC_HIDDEN,0,3,{ OnTouch: EnterTown("Artis"); end; } +029-0,204,85,0 script ArtisShip NPC_HIDDEN,0,0,{ + +OnTouch: + EnterTown("Artis"); + goto L_Warp; + +L_Warp: + warp "002-3@"+LOCATION$, 31, 28; + closedialog; + close; +} + |