diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-28 01:05:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-28 01:05:14 -0300 |
commit | aa99a7c72d78748d5cf5e1c932e6ec58d923cec0 (patch) | |
tree | 160a938c19a53c17643c5b3636d1894f82c0ff06 /npc/functions | |
parent | bbcc058ef270f4236a79ff287922fbb7b887dffb (diff) | |
download | serverdata-aa99a7c72d78748d5cf5e1c932e6ec58d923cec0.tar.gz serverdata-aa99a7c72d78748d5cf5e1c932e6ec58d923cec0.tar.bz2 serverdata-aa99a7c72d78748d5cf5e1c932e6ec58d923cec0.tar.xz serverdata-aa99a7c72d78748d5cf5e1c932e6ec58d923cec0.zip |
Rebalance Thanksgiving
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/event.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt index b4810248c..9f2134cde 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -115,7 +115,7 @@ function script sThanksgiving { mes l("You got a %d", .@luck); mesf "Spins: %d/%d (cur %d extra %d)", .@i, .@spins, .@cur, .@extra; mes ""; - //.@luck=; + //.@luck=$@GM_OVERRIDE; } // Switch the reward @@ -151,8 +151,8 @@ function script sThanksgiving { case 5: // GIFT .@p=BronzeGift; .@p=(#THANKS_STREAK > 7 ? SilverGift : .@p); - .@p=(#THANKS_STREAK > 14 ? GoldenGift : .@p); - .@p=(#THANKS_STREAK > 21 ? PrismGift : .@p); + .@p=(#THANKS_STREAK > 15 ? GoldenGift : .@p); + .@p=(#THANKS_STREAK > 22 ? PrismGift : .@p); .@p=(#THANKS_STREAK > 27 ? SupremeGift : .@p); mes l("You got a(n) %s gift!", getitemlink(.@p)); getitem .@p, 1; @@ -164,7 +164,7 @@ function script sThanksgiving { break; case 7: // HERO C .@p=#THANKS_STREAK; - .@p+=1; + .@p+=getq2(LoFQuest_HH)*max(1,#THANKS_STREAK/10); getitem HeroCoin, .@p; mes l("You got %d %s!", .@p, getitemlink(HeroCoin)); break; |