diff options
Diffstat (limited to 'npc/003-10/slots.txt')
-rw-r--r-- | npc/003-10/slots.txt | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/npc/003-10/slots.txt b/npc/003-10/slots.txt index 353bb068e..edfd8f512 100644 --- a/npc/003-10/slots.txt +++ b/npc/003-10/slots.txt @@ -48,9 +48,9 @@ L_Menu: L_Info: mes ""; mes col("Prizes:", 9); - mes l("##9 777: @@ and 10 coins.", getitemlink(Monocle)); - mes col("Three equal: 5 coins.", 9); - mes col("Two equal: 1 coin.", 9); + mes l("##9 777: @@.", getitemlink(Monocle)); + mes col("Three equal: 30 coins.", 9); + mes col("Two equal: 3 coins.", 9); next; goto L_Menu; @@ -68,15 +68,14 @@ L_Spin: next; mesn; if (.@a == .@b && .@a == .@c && .@a == 7) { - getitem CasinoCoins, 10; getitem Monocle, 1; - mes col("Jackpot! You got ten coins, and the Monocle!", 3); + mes col("Jackpot! You got the Monocle!", 3); } else if (.@a == .@b && .@a == .@c) { - getitem CasinoCoins, 5; - mes col("Congrats! You got five coins!", 3); + getitem CasinoCoins, 30; + mes col("Congrats! You got thirty coins!", 3); } else if (.@a == .@b || .@a == .@c || .@b == .@c) { - getitem CasinoCoins, 1; - mes col("Lucky! You got a coin!", 3); + getitem CasinoCoins, 3; + mes col("Lucky! You got three coins!", 3); } else { mes col("It wasn't this time...", 3); } |