diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-10-18 17:04:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-10-18 17:04:56 -0300 |
commit | cf07c8e9fe05d176c7b3dfbf66000958b37e76d5 (patch) | |
tree | f725e11732a5e7b04130ba78ea846c388013ccd8 | |
parent | 7c7048271479d6dd60031d5b7fd0cd133ec41a01 (diff) | |
download | serverdata-cf07c8e9fe05d176c7b3dfbf66000958b37e76d5.tar.gz serverdata-cf07c8e9fe05d176c7b3dfbf66000958b37e76d5.tar.bz2 serverdata-cf07c8e9fe05d176c7b3dfbf66000958b37e76d5.tar.xz serverdata-cf07c8e9fe05d176c7b3dfbf66000958b37e76d5.zip |
Increase Leona's payoff from 120% to 140%. It is totally worth selling to her.
-rw-r--r-- | npc/018-5-2/leona.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/018-5-2/leona.txt b/npc/018-5-2/leona.txt index fca1eda90..5b8d1f65e 100644 --- a/npc/018-5-2/leona.txt +++ b/npc/018-5-2/leona.txt @@ -85,12 +85,12 @@ close; // leona_exchange ( give, receive ) - // Receive should be item ID. If it is 0, you will get 1.2× the sell price + // Receive should be item ID. If it is 0, you will get 1.4× the sell price function leona_exchange { .@what=getarg(0); .@reward=getarg(1); if (!.@reward) - .@gp=getiteminfo(.@what, ITEMINFO_SELLPRICE)*12/10; + .@gp=getiteminfo(.@what, ITEMINFO_SELLPRICE)*14/10; mesn; if (.@reward) mesq l("For this @@, I offer you a(n) @@.", getitemlink(.@what), getitemlink(.@reward)); |