summaryrefslogtreecommitdiff
path: root/npc/016-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-23 15:24:21 -0300
committerJesusaves <cpntb1@ymail.com>2019-03-23 15:24:21 -0300
commit82f829816533043cad8dce19c2862e5f51e60504 (patch)
tree59c8f947821a4995b071f6ae0760399ad7534bc7 /npc/016-1
parent40d3dcf8a80ca0144838f52de75633de3d6ad61a (diff)
downloadserverdata-82f829816533043cad8dce19c2862e5f51e60504.tar.gz
serverdata-82f829816533043cad8dce19c2862e5f51e60504.tar.bz2
serverdata-82f829816533043cad8dce19c2862e5f51e60504.tar.xz
serverdata-82f829816533043cad8dce19c2862e5f51e60504.zip
Lower ship prices. First Nard travel is still overcharged (1200 GP)
La Marine (Tulim<->Hurns<->Nivalis): 810 -> 410 GP La Johanne (Candor<->Tulim): 1200 -> 800 GP Note the discount per milestone was also changed and is NOT easier to get them.
Diffstat (limited to 'npc/016-1')
-rw-r--r--npc/016-1/captain.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/016-1/captain.txt b/npc/016-1/captain.txt
index ded10c30e..89d42ab5d 100644
--- a/npc/016-1/captain.txt
+++ b/npc/016-1/captain.txt
@@ -5,7 +5,7 @@
// Temporary, placeholder.
016-1,19,29,0 script Captain NPC_NARD,{
- .@price=810;
+ .@price=410;
if (BaseLevel < 20)
goto L_TooWeak;
@@ -27,7 +27,7 @@
L_TTulim:
.@x=(reputation("Tulim")+reputation(LOCATION$))/2;
if (.@x >= 50) .@x+=10;
- .@price-=min(800, (.@x/10)*80);
+ .@price-=min(400, (.@x/10)*40);
mes "";
mesn;
@@ -64,7 +64,7 @@ L_TTulim:
L_THurns:
.@x=(reputation("Hurns")+reputation(LOCATION$))/2;
if (.@x >= 50) .@x+=10;
- .@price-=min(800, (.@x/10)*80);
+ .@price-=min(400, (.@x/10)*40);
mes "";
mesn;
@@ -100,7 +100,7 @@ L_THurns:
L_TNival:
.@x=(reputation("Nival")+reputation(LOCATION$))/2;
if (.@x >= 50) .@x+=10;
- .@price-=min(800, (.@x/10)*80);
+ .@price-=min(400, (.@x/10)*40);
// Nivalis Liberation Day. Zero could cause weird bugs.
if (!$NIVALIS_LIBDATE)