summaryrefslogtreecommitdiff
path: root/npc/functions/casino.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/casino.txt')
-rw-r--r--npc/functions/casino.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/functions/casino.txt b/npc/functions/casino.txt
index 87b71a4d..3e5f6151 100644
--- a/npc/functions/casino.txt
+++ b/npc/functions/casino.txt
@@ -78,12 +78,15 @@ L_Spin:
if (.@a == .@b && .@a == .@c && .@a == 7) {
getitem .itemid, 1;
mesc l("Jackpot! You got a(n) %s!", getitemlink(.itemid)), 3;
+ EXP_LUK+=22;
} else if (.@a == .@b && .@a == .@c) {
getitem .coinid, 18;
mesc l("Congrats! A pity it was not 777..."), 3;
+ EXP_LUK+=7;
} else if (.@a == .@b || .@a == .@c || .@b == .@c) {
getitem .coinid, 1;
mesc l("Lucky! You got the coin back!"), 3;
+ EXP_LUK+=1;
} else {
mesc l("It wasn't this time..."), 3;
}
@@ -228,6 +231,7 @@ L_Spin:
*/
mesc l("Your current win streak is @@!", @gambler_winstreak);
Zeny+=min(((@gambler_winstreak-1)*.gpbonus), .minprize); // Never 2x
+ EXP_LUK+=@gambler_winstreak;
} else {
.@bypass=0;
}