summaryrefslogtreecommitdiff
path: root/npc/commands
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-23 11:08:04 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-23 11:08:04 -0300
commit06aafc9a2a8213040aa33cc2c2a819d1be6f874b (patch)
treefcd4f364ed6506339ef5437c633f36e9fc9a184f /npc/commands
parentf2fe58ad450eaaf07824eff20739557a0485636d (diff)
downloadserverdata-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/commands')
-rw-r--r--npc/commands/event.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt
index c3d21b329..ba28a0891 100644
--- a/npc/commands/event.txt
+++ b/npc/commands/event.txt
@@ -19,13 +19,13 @@ function script GlobalEventMenu {
function rateManagement {
clear;
mes l("To get the current rate:");
- mes col(" @exprate", 7);
+ mescol l(" @exprate", 7);
next;
mes l("To set the exp rate:");
- mes col(" @exprate ##Brate##b hours", 7);
+ mescol l(" @exprate ##Brate##b hours", 7);
next;
mes l("To reset back to normal:");
- mes col(" @exprate default", 7); // note to translators: any non-numerical value will reset so "default" is safe to translate
+ mescol l(" @exprate default", 7); // note to translators: any non-numerical value will reset so "default" is safe to translate
next;
return;
}
@@ -33,13 +33,13 @@ function script GlobalEventMenu {
function dropManagement {
clear;
mes l("To get the current rate:");
- mes col(" @rates", 7);
+ mescol l(" @rates", 7);
next;
mes l("To set the drop rate:");
- mes col(" @droprate ##Brate##b hours", 7);
+ mescol l(" @droprate ##Brate##b hours", 7);
next;
mes l("To reset back to normal:");
- mes col(" @droprate default", 7); // note to translators: any non-numerical value will reset so "default" is safe to translate
+ mescol l(" @droprate default", 7); // note to translators: any non-numerical value will reset so "default" is safe to translate
next;
return;
}