summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-08-06 22:09:45 -0300
committerJesusaves <cpntb1@ymail.com>2024-08-06 22:09:45 -0300
commitfcda9ec0e5f4eb1559daea571587ee6cfcba27b5 (patch)
treee6f5110c9f0814d7d8b3fcd5469cb94b15e93797 /npc
parentfa965416b3831acd5afe33e6256f93105d712abf (diff)
downloadserverdata-fcda9ec0e5f4eb1559daea571587ee6cfcba27b5.tar.gz
serverdata-fcda9ec0e5f4eb1559daea571587ee6cfcba27b5.tar.bz2
serverdata-fcda9ec0e5f4eb1559daea571587ee6cfcba27b5.tar.xz
serverdata-fcda9ec0e5f4eb1559daea571587ee6cfcba27b5.zip
When you can't fix the issue but find another issue while on it.
Nerf Final Slot Machine.
Diffstat (limited to 'npc')
-rw-r--r--npc/031-4/slots.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/031-4/slots.txt b/npc/031-4/slots.txt
index b1330a606..974ce7f9e 100644
--- a/npc/031-4/slots.txt
+++ b/npc/031-4/slots.txt
@@ -111,9 +111,9 @@ L_Info:
if (countitem(Blanket))
mesc l("Five equal: %s.", getitemlink(Bathrobe));
else
- mesc l("Five equal: %s.", "20 Strange Coin + 15000 Homun EXP");
- mesc l("Four equal: @@.", "5 Strange Coin + 5000 Homun EXP");
- mesc l("Three equal: @@.", "5 Casino Coins + 500 Homun EXP");
+ mesc l("Five equal: %s.", l("20 Strange Coin + 15000 Homun EXP"));
+ mesc l("Four equal: @@.", l("up to 5 Strange Coin + 5000 Homun EXP"));
+ mesc l("Three equal: @@.", l("up to 5 Casino Coins + 500 Homun EXP"));
mesc l("Two equal: %s.", l("50 GP + 50 Homunculus EXP"));
mes "";
mesc l("Two pairs count as three equal. A \"full house\" count as four equal.");
@@ -191,12 +191,12 @@ function spin {
mesc b(l("Thou hast been lucky and a %s prize was given to thee.", l("major"))), 4;
} else if (.@s == 3) {
Zeny += 250;
- getitem StrangeCoin, 5;
+ getitem StrangeCoin, rand2(1,5);
gethomunexp 5000;
mesc l("Thou hast been lucky and a %s prize was given to thee.", l("normal")), 3;
} else if (.@s == 2) {
Zeny += 150;
- getitem CasinoCoins, 5;
+ getitem CasinoCoins, rand2(1,5);
gethomunexp 500;
mesc l("Thou hast been lucky and a %s prize was given to thee.", l("small")), 2;
} else if (.@s == 1) {