diff options
-rw-r--r-- | npc/031-4/slots.txt | 10 |
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) { |