diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-20 16:03:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-20 16:03:04 -0300 |
commit | bd3cc286e23dd6f060b3aed0dec72fbb09ffe1f0 (patch) | |
tree | 7620ef5b8cb995e4edb70b5c78af356ab46f8494 /npc | |
parent | fb426716413b09a2aa25161c08adb85399eecddf (diff) | |
download | serverdata-bd3cc286e23dd6f060b3aed0dec72fbb09ffe1f0.tar.gz serverdata-bd3cc286e23dd6f060b3aed0dec72fbb09ffe1f0.tar.bz2 serverdata-bd3cc286e23dd6f060b3aed0dec72fbb09ffe1f0.tar.xz serverdata-bd3cc286e23dd6f060b3aed0dec72fbb09ffe1f0.zip |
Adjust slot machine rewards
Diffstat (limited to 'npc')
-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); } |