diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-23 11:08:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-23 11:08:04 -0300 |
commit | 06aafc9a2a8213040aa33cc2c2a819d1be6f874b (patch) | |
tree | fcd4f364ed6506339ef5437c633f36e9fc9a184f /npc/003-10/slots.txt | |
parent | f2fe58ad450eaaf07824eff20739557a0485636d (diff) | |
download | serverdata-06aafc9a2a8213040aa33cc2c2a819d1be6f874b.tar.gz serverdata-06aafc9a2a8213040aa33cc2c2a819d1be6f874b.tar.bz2 serverdata-06aafc9a2a8213040aa33cc2c2a819d1be6f874b.tar.xz serverdata-06aafc9a2a8213040aa33cc2c2a819d1be6f874b.zip |
Break every imaginable pipeline. I'm waiting it to fail.
Diffstat (limited to 'npc/003-10/slots.txt')
-rw-r--r-- | npc/003-10/slots.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/003-10/slots.txt b/npc/003-10/slots.txt index 517dea01c..fdb0076fc 100644 --- a/npc/003-10/slots.txt +++ b/npc/003-10/slots.txt @@ -36,8 +36,8 @@ L_Menu: mesn; - mes col("Spin three symbols, and jackpot great rewards!", 9); - mes col("Just one coin for spin.", 9); + mesc l("Spin three symbols, and jackpot great rewards!"); + mesc l("Just one coin for spin."); next; menu rif(countitem(CasinoCoins) >= 1, l("Spin!")), L_Spin, @@ -47,16 +47,16 @@ L_Menu: L_Info: mes ""; - mes col("Prizes:", 9); + mesc l("Prizes:"); mes l("##9 777: @@.", getitemlink(Monocle)); - mes col("Three equal: 30 coins.", 9); - mes col("Two equal: 1 coin.", 9); + mesc l("Three equal: 30 coins."); + mesc l("Two equal: 1 coin."); next; goto L_Menu; L_Spin: - mes col("Spinning...", 9); + mesc l("Spinning..."); next; delitem CasinoCoins, 1; .@a=rand(1,7); @@ -69,15 +69,15 @@ L_Spin: mesn; if (.@a == .@b && .@a == .@c && .@a == 7) { getitem Monocle, 1; - mes col("Jackpot! You got the Monocle!", 3); + mescol l("Jackpot! You got the Monocle!", 3); } else if (.@a == .@b && .@a == .@c) { getitem CasinoCoins, 30; - mes col("Congrats! You got thirty coins!", 3); + mescol l("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); + mescol l("Lucky! You got a coin!", 3); } else { - mes col("It wasn't this time...", 3); + mescol l("It wasn't this time...", 3); } next; goto L_Menu; |