diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-24 19:15:38 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-24 19:15:38 -0200 |
commit | 79ddacdd3bb330ce4651fb2fc2106a1401df1c86 (patch) | |
tree | a5417b0e6169969cc4c28c8bd41365a4331036c5 /npc | |
parent | 6dbf28e80085a2e91e87f0a2149662ce2c7db57f (diff) | |
download | serverdata-79ddacdd3bb330ce4651fb2fc2106a1401df1c86.tar.gz serverdata-79ddacdd3bb330ce4651fb2fc2106a1401df1c86.tar.bz2 serverdata-79ddacdd3bb330ce4651fb2fc2106a1401df1c86.tar.xz serverdata-79ddacdd3bb330ce4651fb2fc2106a1401df1c86.zip |
Make ship travels now cheaper and with smooth discounts. Win-win!
Diffstat (limited to 'npc')
-rw-r--r-- | npc/016-1/captain.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/016-1/captain.txt b/npc/016-1/captain.txt index 2d74b796d..ded10c30e 100644 --- a/npc/016-1/captain.txt +++ b/npc/016-1/captain.txt @@ -26,6 +26,7 @@ ///// ---------- Tulimshar ---------- L_TTulim: .@x=(reputation("Tulim")+reputation(LOCATION$))/2; + if (.@x >= 50) .@x+=10; .@price-=min(800, (.@x/10)*80); mes ""; @@ -62,6 +63,7 @@ L_TTulim: ///// ---------- Hurnscald ---------- L_THurns: .@x=(reputation("Hurns")+reputation(LOCATION$))/2; + if (.@x >= 50) .@x+=10; .@price-=min(800, (.@x/10)*80); mes ""; @@ -97,11 +99,12 @@ L_THurns: ///// ---------- Nivalis ---------- L_TNival: .@x=(reputation("Nival")+reputation(LOCATION$))/2; + if (.@x >= 50) .@x+=10; .@price-=min(800, (.@x/10)*80); // Nivalis Liberation Day. Zero could cause weird bugs. if (!$NIVALIS_LIBDATE) - .@price=1; // + .@price=1; mes ""; mesn; |