From 06aafc9a2a8213040aa33cc2c2a819d1be6f874b Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 23 Jun 2018 11:08:04 -0300 Subject: Break every imaginable pipeline. I'm waiting it to fail. --- npc/003-10/quirino.txt | 30 +++++++++++++++--------------- npc/003-10/slots.txt | 20 ++++++++++---------- 2 files changed, 25 insertions(+), 25 deletions(-) (limited to 'npc/003-10') diff --git a/npc/003-10/quirino.txt b/npc/003-10/quirino.txt index a1d02ac5c..8179bd228 100644 --- a/npc/003-10/quirino.txt +++ b/npc/003-10/quirino.txt @@ -43,18 +43,18 @@ L_Register: } L_Info: - mesn col("Hungry Quirin Arena Rules", 3); - mes col("1- You must not be carrying anything with you.", 9); - mes col("2- You must not use a cart. If you do, YOU WILL BE SEVERELY PENALIZED.", 9); - mes col("3- All items from the Arena are from the Arena. You won't carry any of them back with you.", 9); - mes col("4- Experience and Gold earned during this event can be kept.", 9); + mesn col(l("Hungry Quirin Arena Rules"), 3); + mesc l("1- You must not be carrying anything with you."); + mesc l("2- You must not use a cart. If you do, YOU WILL BE SEVERELY PENALIZED."); + mesc l("3- All items from the Arena are from the Arena. You won't carry any of them back with you."); + mesc l("4- Experience and Gold earned during this event can be kept."); next; - mesn col("Hungry Quirin Arena Information", 3); - mes col("1- Survive. If you die, you will gain nothing. And people want to kill you.", 9); - mes col("2- Take everything you can find. You'll be warped without equip or healing items! Kill monsters to get some stuff too!", 9); - mes col("3- Trust nobody. There can be only one winner, and it must be you.", 9); - mes col("4- Take Care. Wildlife can kill you too. There can be traps.", 9); - mes col("5- Trust yourself. You will lose the moment you enter in panic. This arena is not for the weak-willed!", 9); + mesn col(l("Hungry Quirin Arena Information"), 3); + mesc l("1- Survive. If you die, you will gain nothing. And people want to kill you."); + mesc l("2- Take everything you can find. You'll be warped without equip or healing items! Kill monsters to get some stuff too!"); + mesc l("3- Trust nobody. There can be only one winner, and it must be you."); + mesc l("4- Take Care. Wildlife can kill you too. There can be traps."); + mesc l("5- Trust yourself. You will lose the moment you enter in panic. This arena is not for the weak-willed!"); next; goto L_Register; @@ -84,16 +84,16 @@ L_Full: L_Hub: mesn; - mes col("Welcome to HUNGRY QUIRIN ARENA mangment panel.", 9); - mes col("Current Event: "+$EVENT$,9); - mes col("Event stage: "+$@EQ_STATUS, 9); + mesc l("Welcome to HUNGRY QUIRIN ARENA mangment panel."); + mesc l("Current Event: "+$EVENT$); + mesc l("Event stage: "+$@EQ_STATUS); mes l("Current player count: @@/5 must be online.", getusers(1)); mes l("Current arena player count: @@ on map. (Min. 3 to begin event)", getmapusers("001-8")); // Open event? Minimum 5 connections or GM_OVERRIDE flag. if ($EVENT$ == "" && (getusers(1) >= 5 || $@GM_OVERRIDE)) { next; - mes col("Activate event?", 1); + mescol l("Activate event?", 1); if (askyesno() == ASK_YES) { $EVENT$="Hunger"; setcells "001-8", 41, 58, 41, 43, 5, "qhubN"; 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; -- cgit v1.2.3-70-g09d2