From 912aa7cfd3031ce85e2d7c4fbe966e1f8bc888bb Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Mon, 29 Jul 2024 00:09:04 -0300 Subject: Two gamblers were rather boring (LoF and Nivalis), so give them two hats. Funky Hat for LoF and Santa Hat for Nivalis. Theoretically Funky Hat is a cold-themed hat but oh well. --- npc/017-3/gambler.txt | 4 ++++ npc/020-4/gambler.txt | 3 +++ 2 files changed, 7 insertions(+) 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); -- cgit v1.2.3-70-g09d2