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/002-5 | |
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/002-5')
-rw-r--r-- | npc/002-5/main.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/002-5/main.txt b/npc/002-5/main.txt index 8cea748df..6e5094f6e 100644 --- a/npc/002-5/main.txt +++ b/npc/002-5/main.txt @@ -10,6 +10,7 @@ OnEvent: if (@timer_navio_running == 0) end; if (PC_DEST$ == "Candor") goto L_Candor; else if (PC_DEST$ == "Tulim") goto L_Tulim; + else if (PC_DEST$ == "Artis") goto L_Artis; else goto L_Error; end; @@ -18,7 +19,7 @@ L_Candor: LOCATION$ = "Candor"; @timer_navio_running = 0; warp "005-1", 49, 117; - message strcharinfo(0), l("@@ disembarks at Candor Island.", strcharinfo(0)); + message strcharinfo(0), l("%s disembarks at %s.", strcharinfo(0), l("Candor Island")); end; L_Tulim: @@ -26,7 +27,15 @@ L_Tulim: EnterTown("Tulim"); @timer_navio_running = 0; warp "003-1", 81, 68; - message strcharinfo(0), l("@@ disembarks at Tulimshar.", strcharinfo(0)); + message strcharinfo(0), l("%s disembarks at %s.", strcharinfo(0), l("Tulimshar")); + end; + +L_Artis: + PC_DEST$ = ""; + EnterTown("Artis"); + @timer_navio_running = 0; + warp "029-0", 203, 85; + message strcharinfo(0), l("%s disembarks at %s.", strcharinfo(0), l("Artis")); end; L_Error: |