summaryrefslogtreecommitdiff
path: root/npc/003-10/slots.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-23 11:11:11 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-23 11:11:11 -0300
commit9155fb809fa1b1bddf3718fd4ee65e5ef6b4cd54 (patch)
tree026236dc1b7e8f6c1319294d1f98303cbb87ac29 /npc/003-10/slots.txt
parent06aafc9a2a8213040aa33cc2c2a819d1be6f874b (diff)
downloadserverdata-9155fb809fa1b1bddf3718fd4ee65e5ef6b4cd54.tar.gz
serverdata-9155fb809fa1b1bddf3718fd4ee65e5ef6b4cd54.tar.bz2
serverdata-9155fb809fa1b1bddf3718fd4ee65e5ef6b4cd54.tar.xz
serverdata-9155fb809fa1b1bddf3718fd4ee65e5ef6b4cd54.zip
Remove mescol, use only mesc - which is preferred over mes col() form
Diffstat (limited to 'npc/003-10/slots.txt')
-rw-r--r--npc/003-10/slots.txt8
1 files changed, 4 insertions, 4 deletions
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;