summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/017-3/gambler.txt4
-rw-r--r--npc/020-4/gambler.txt3
2 files changed, 7 insertions, 0 deletions
diff --git a/npc/017-3/gambler.txt b/npc/017-3/gambler.txt
index 78a56f995..48f0a606c 100644
--- a/npc/017-3/gambler.txt
+++ b/npc/017-3/gambler.txt
@@ -49,6 +49,7 @@ L_Info:
next;
mesc l("Winning Strike Prizes:");
mesc l("Every %d sequences, you'll get a %s!", 10, getitemlink(StrangeCoin));
+ mesc l("If you get %d sequence, you'll get a %s!", 15, getitemlink(FunkyHat));
mesc l("If you get %d sequence, you'll get a %s!", 30, getitemlink(BronzeGift));
mesc l("If you get %d sequence, you'll get a %s!", 50, getitemlink(SilverGift));
//mesc l("If you get %d sequence, you'll get a %s!", 50, getitemlink(GoldenGift));
@@ -115,10 +116,13 @@ L_Sequence:
mesq l("Congratulations! Everything was correct!");
Zeny+=.prize;
@streak+=1;
+ getexp 0, 1+(@streak / 5);
// Winning Streak
if (@streak % 10 == 0)
getitem StrangeCoin, 1;
+ if (@streak == 15)
+ getitem FunkyHat, 1;
if (@streak == 30)
getitem BronzeGift, 1;
if (@streak == 50)
diff --git a/npc/020-4/gambler.txt b/npc/020-4/gambler.txt
index 1384aa57d..216a05c34 100644
--- a/npc/020-4/gambler.txt
+++ b/npc/020-4/gambler.txt
@@ -51,6 +51,7 @@ L_Info:
mesc l("Winning Streak is also reset on logout or when you leave the Inn.");
next;
mesc l("Winning Strike Prizes:");
+ mesc l("If you get 10 successive right guesses, you'll get a %s!", getitemlink(SantaHat));
mesc l("Every seven successive right guesses, you'll get a %s!", getitemlink(BronzeGift)); // 7.14%
mesc l("Every fifteen successive right guesses, you'll get a @@!", getitemlink(SilverGift)); // 3.33%
mesc l("Every fifty successive right guesses, you'll get a @@!", getitemlink(GoldenGift)); // 1.00%
@@ -110,6 +111,8 @@ L_Spin:
getitem GoldenGift, 1;
if (@gambler_winstreak % 101 == 0)
getitem PrismGift, 1;
+ if (@gambler_winstreak == 10)
+ getitem SantaHat, 1;
mesc l("Your current win streak is @@!", @gambler_winstreak);
$XAN_BETS=$XAN_BETS+1;
Zeny+=min((@gambler_winstreak*2), 40);