diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-12-08 21:47:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-12-08 21:47:33 -0300 |
commit | a017777e2d3870c09f5dc218d6b3b692e050aba6 (patch) | |
tree | d8e5cf21f21e4d340bf4e864bbd4c3ca05ccb51f /npc | |
parent | 5f85d60a39fdf9cc28ede96104b896c1c2da516f (diff) | |
download | serverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.tar.gz serverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.tar.bz2 serverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.tar.xz serverdata-a017777e2d3870c09f5dc218d6b3b692e050aba6.zip |
Maggot Slime tweaks (specially Liana)
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/swezanne.txt | 4 | ||||
-rw-r--r-- | npc/005-1/liana.txt | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/npc/003-1/swezanne.txt b/npc/003-1/swezanne.txt index ea3257b63..83a45c23a 100644 --- a/npc/003-1/swezanne.txt +++ b/npc/003-1/swezanne.txt @@ -83,7 +83,9 @@ L_Finish2: L_Finish: delitem CactusDrink, 5; getexp 63, 4; // 4 Job points! A "great" reward. - Zeny = (Zeny + 250); // 5*25 = 125 base (+100%) + // Bonus: +300% + .@price = getiteminfo(CactusDrink, ITEMINFO_SELLPRICE) * 5 * 3; + Zeny += .@price; setq TulimsharQuest_Swezanne, 3; setq2 TulimsharQuest_Swezanne, gettimetick(2)+60*60*24; close; diff --git a/npc/005-1/liana.txt b/npc/005-1/liana.txt index 2916013ac..4dab5165c 100644 --- a/npc/005-1/liana.txt +++ b/npc/005-1/liana.txt @@ -61,7 +61,9 @@ L_Repeat: L_Finish2: delitem MaggotSlime, 10; getexp 21, 0; - Zeny = (Zeny + 80); // 10*4 = 40 base + // Bonus: +300% + .@price = getiteminfo(MaggotSlime, ITEMINFO_SELLPRICE) * 10 * 3; + Zeny += .@price; setq CandorQuest_Liana, 1; set LIANA_TIMER, gettimetick(2); mes ""; @@ -72,7 +74,9 @@ L_Finish2: L_Finish: delitem MaggotSlime, 5; getexp 58, 7; - Zeny = (Zeny + 30); // 5*4 = 20 base + // Bonus: +400% + .@price = getiteminfo(MaggotSlime, ITEMINFO_SELLPRICE) * 5 * 4; + Zeny += .@price; setq CandorQuest_Liana, 1; set LIANA_TIMER, gettimetick(2); mes ""; |