diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-23 15:24:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-23 15:24:21 -0300 |
commit | 82f829816533043cad8dce19c2862e5f51e60504 (patch) | |
tree | 59c8f947821a4995b071f6ae0760399ad7534bc7 /npc/002-3/nard.txt | |
parent | 40d3dcf8a80ca0144838f52de75633de3d6ad61a (diff) | |
download | serverdata-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/002-3/nard.txt')
-rw-r--r-- | npc/002-3/nard.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/002-3/nard.txt b/npc/002-3/nard.txt index 397e9e1c3..f42975833 100644 --- a/npc/002-3/nard.txt +++ b/npc/002-3/nard.txt @@ -12,7 +12,6 @@ showavatar NPC_NARD; // this is handled by avatars.xml .@narrator = getq(General_Narrator); - .@price=1200; L_Checker: if (.@narrator) goto L_Travel; @@ -172,6 +171,7 @@ L_CandorIsland: goto L_MenuQuest; L_NotYet: + .@price=1200; mesc b(l(".:: Main Quest 1-1 ::.")), 3; if (Zeny >= .@price) mesc l("* @@/@@ GP", Zeny, .@price), 2; @@ -222,7 +222,8 @@ L_NotYet: L_Travel: // Current nard_reputation() value for 100% discount: 15 - .@price-=min(1199, nard_reputation()*80); + .@price=800; + .@price-=min(799, nard_reputation()*54); mesn; mesq l("Hi @@.", strcharinfo(0)); |