diff options
Diffstat (limited to 'npc/003-10/slots.txt')
-rw-r--r-- | npc/003-10/slots.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/003-10/slots.txt b/npc/003-10/slots.txt index ee2aac504..8e2d9ff7c 100644 --- a/npc/003-10/slots.txt +++ b/npc/003-10/slots.txt @@ -48,7 +48,7 @@ L_Menu: L_Info: mes ""; mes col("Prizes:", 9); - mes col("777: 10 coins.", 9); + mes col("777: @@ and 10 coins.", 9, getitemlink(Monocle)); mes col("Three equal: 5 coins.", 9); mes col("Two equal: 1 coin.", 9); next; @@ -69,7 +69,8 @@ L_Spin: mesn; if (.@a == .@b && .@a == .@c && .@a == 7) { getitem CasinoCoins, 10; - mes col("Jackpot! You got ten coins!", 3); + getitem Monocle, 1; + mes col("Jackpot! You got ten coins, and the Monocle!", 3); } else if (.@a == .@b && .@a == .@c) { getitem CasinoCoins, 5; mes col("Congrats! You got five coins!", 3); |