summaryrefslogtreecommitdiff
path: root/npc/016-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-09-21 12:20:09 -0300
committerJesusaves <cpntb1@ymail.com>2018-09-21 12:20:09 -0300
commit90a246e7968c5781a0f6169de209b05567ab6658 (patch)
treeb85992f077104299cd5d6ed2dbc301a2587fdd40 /npc/016-1
parent50d9786d4394f4856fb4fb53959669e2c1e5cf70 (diff)
downloadserverdata-90a246e7968c5781a0f6169de209b05567ab6658.tar.gz
serverdata-90a246e7968c5781a0f6169de209b05567ab6658.tar.bz2
serverdata-90a246e7968c5781a0f6169de209b05567ab6658.tar.xz
serverdata-90a246e7968c5781a0f6169de209b05567ab6658.zip
Reorder stuff, allows travel to Nivalis (but not back from - GM Only)
Diffstat (limited to 'npc/016-1')
-rw-r--r--npc/016-1/captain.txt87
1 files changed, 65 insertions, 22 deletions
diff --git a/npc/016-1/captain.txt b/npc/016-1/captain.txt
index a53243d7e..3a7f32dcc 100644
--- a/npc/016-1/captain.txt
+++ b/npc/016-1/captain.txt
@@ -18,10 +18,62 @@
menu
rif(LOCATION$ != "Tulim", l("To Tulimshar.")), L_TTulim,
rif(LOCATION$ != "Hurns", l("To Hurnscald.")), L_THurns,
+ rif(LOCATION$ != "Nival" && is_gm(), l("To Nivalis.")), L_TNival,
l("No, I'll save my money."), -;
close;
+///// ---------- Tulimshar ----------
+L_TTulim:
+ .@x=reputation("Tulim");
+
+ if (.@x >= 14)
+ .@price-=1850;
+ else if (.@x >= 12)
+ .@price-=1750;
+ else if (.@x >= 10)
+ .@price-=1500;
+ else if (.@x >= 8)
+ .@price-=1000;
+ else if (.@x >= 6)
+ .@price-=750;
+ else if (.@x >= 4)
+ .@price-=500;
+ else if (.@x >= 2)
+ .@price-=250;
+
+ mes "";
+ mesn;
+ mesq l("It'll cost you @@ GP.", .@price);
+ mes "";
+
+ if (Zeny < .@price) {
+ mes l("You still need @@ GP to afford it.", (.@price-Zeny));
+ close;
+ }
+
+ if (askyesno() != ASK_YES)
+ close;
+
+ Zeny=Zeny-.@price;
+ PC_DEST$="Tulim";
+ @timer_navio_running = 1;
+
+ mes "";
+ mesn;
+ mesq l("Tulimshar, right? The oldest human city-state!");
+ next;
+ mesq l("I was planning to go there soon, anyway. All aboard!");
+ close2;
+ goto L_DoWarp;
+
+
+
+
+
+
+
+///// ---------- Hurnscald ----------
L_THurns:
.@x=reputation("Hurns");
@@ -66,24 +118,12 @@ L_THurns:
+///// ---------- Nivalis ----------
+L_TNival:
+ .@x=reputation("Nival");
-L_TTulim:
- .@x=reputation("Tulim");
-
- if (.@x >= 14)
- .@price-=1850;
- else if (.@x >= 12)
- .@price-=1750;
- else if (.@x >= 10)
- .@price-=1500;
- else if (.@x >= 8)
+ if (.@x >= 1)
.@price-=1000;
- else if (.@x >= 6)
- .@price-=750;
- else if (.@x >= 4)
- .@price-=500;
- else if (.@x >= 2)
- .@price-=250;
mes "";
mesn;
@@ -99,17 +139,23 @@ L_TTulim:
close;
Zeny=Zeny-.@price;
- PC_DEST$="Tulim";
- @timer_navio_running = 1;
+ PC_DEST$="Nival";
mes "";
mesn;
- mesq l("Tulimshar, right? The oldest human city-state!");
+ mesq l("Nivalis? It's frozen during the whole year! I hope you have good ice gear and a high level...");
next;
mesq l("I was planning to go there soon, anyway. All aboard!");
close2;
goto L_DoWarp;
+
+
+
+
+
+
+///// ---------------- Core Utils
L_TooWeak:
mesn;
mesq l("The sea route I take is very dangerous, and full of pirates. You're too weak to travel with me.");
@@ -128,9 +174,6 @@ L_DoWarp:
end;
-L_Close:
- close;
-
OnInit:
.sex = G_MALE;
.distance = 5;