summaryrefslogtreecommitdiff
path: root/npc/003-10
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-10')
-rw-r--r--npc/003-10/quirino.txt2
-rw-r--r--npc/003-10/slots.txt8
2 files changed, 5 insertions, 5 deletions
diff --git a/npc/003-10/quirino.txt b/npc/003-10/quirino.txt
index 8179bd228..f1c629edc 100644
--- a/npc/003-10/quirino.txt
+++ b/npc/003-10/quirino.txt
@@ -93,7 +93,7 @@ L_Hub:
// Open event? Minimum 5 connections or GM_OVERRIDE flag.
if ($EVENT$ == "" && (getusers(1) >= 5 || $@GM_OVERRIDE)) {
next;
- mescol l("Activate event?", 1);
+ mesc 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 fdb0076fc..c137a69f8 100644
--- a/npc/003-10/slots.txt
+++ b/npc/003-10/slots.txt
@@ -69,15 +69,15 @@ L_Spin:
mesn;
if (.@a == .@b && .@a == .@c && .@a == 7) {
getitem Monocle, 1;
- mescol l("Jackpot! You got the Monocle!", 3);
+ mesc l("Jackpot! You got the Monocle!"), 3;
} else if (.@a == .@b && .@a == .@c) {
getitem CasinoCoins, 30;
- mescol l("Congrats! You got thirty coins!", 3);
+ mesc l("Congrats! You got thirty coins!"), 3;
} else if (.@a == .@b || .@a == .@c || .@b == .@c) {
getitem CasinoCoins, 1;
- mescol l("Lucky! You got a coin!", 3);
+ mesc l("Lucky! You got a coin!"), 3;
} else {
- mescol l("It wasn't this time...", 3);
+ mesc l("It wasn't this time..."), 3;
}
next;
goto L_Menu;