diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-23 15:34:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-23 15:34:59 -0300 |
commit | 99c47199e78288706f4993b432416b034cb75cbf (patch) | |
tree | aed1c957c598806e4b897776c6a2092c135032d7 | |
parent | 82f829816533043cad8dce19c2862e5f51e60504 (diff) | |
download | serverdata-99c47199e78288706f4993b432416b034cb75cbf.tar.gz serverdata-99c47199e78288706f4993b432416b034cb75cbf.tar.bz2 serverdata-99c47199e78288706f4993b432416b034cb75cbf.tar.xz serverdata-99c47199e78288706f4993b432416b034cb75cbf.zip |
To satisfy the 8% of players complaining about price.
Change minimum ship price everywhere to 10gp. It'll never go below this value.
Except on Nivalis Liberation Day (where it costs 1gp)
-rw-r--r-- | npc/002-3/nard.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/002-3/nard.txt b/npc/002-3/nard.txt index f42975833..8444159ab 100644 --- a/npc/002-3/nard.txt +++ b/npc/002-3/nard.txt @@ -223,7 +223,7 @@ L_NotYet: L_Travel: // Current nard_reputation() value for 100% discount: 15 .@price=800; - .@price-=min(799, nard_reputation()*54); + .@price-=min(780, nard_reputation()*54); mesn; mesq l("Hi @@.", strcharinfo(0)); @@ -305,7 +305,7 @@ L_Tier2Ok: next; inventoryplace JesusalvaGrimorium, 1; delitem Lifestone, 1; - getitem "JesusalvaGrimorium", 1; + getitem JesusalvaGrimorium, 1; getexp 200, 0; ST_TIER=10; mesn; |