diff options
Diffstat (limited to 'npc/020-4/gambler.txt')
-rw-r--r-- | npc/020-4/gambler.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/020-4/gambler.txt b/npc/020-4/gambler.txt index 17f66cbc8..446d235a1 100644 --- a/npc/020-4/gambler.txt +++ b/npc/020-4/gambler.txt @@ -44,7 +44,7 @@ L_Info: mesc l("Cards are ranked on this priority: A - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - J - Q - K - Joker"); next; mesc l("Prizes:"); - mesc l("If you're right, you'll get 80 GP!"); + mesc l("If you're right, you'll get at least 80 GP!"); mesc l("If a tie happens, you'll get your coin back."); mesc l("If you're wrong, your winning streak is reset."); mesc l("Winning Streak is also reset on logout or when you leave the Inn."); @@ -111,6 +111,7 @@ L_Spin: getitem GoldenGift, 1; mesc l("Your current win streak is @@!", @gambler_winstreak); $XAN_BETS=$XAN_BETS+1; + Zeny+=Zeny+min((@gambler_winstreak*2), 40); } else { .@bypass=0; } |