summaryrefslogtreecommitdiff
path: root/npc/functions/event.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/event.txt')
-rw-r--r--npc/functions/event.txt8
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;