summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-07-29 00:09:04 -0300
committerJesusaves <cpntb1@ymail.com>2024-07-29 00:09:04 -0300
commit912aa7cfd3031ce85e2d7c4fbe966e1f8bc888bb (patch)
tree728d447266a1ebbc73b66932843228529902242e
parent5cdc089b592c6a843209c4e474112aaefccaf9d9 (diff)
downloadserverdata-912aa7cfd3031ce85e2d7c4fbe966e1f8bc888bb.tar.gz
serverdata-912aa7cfd3031ce85e2d7c4fbe966e1f8bc888bb.tar.bz2
serverdata-912aa7cfd3031ce85e2d7c4fbe966e1f8bc888bb.tar.xz
serverdata-912aa7cfd3031ce85e2d7c4fbe966e1f8bc888bb.zip
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.
-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);