summaryrefslogtreecommitdiff
path: root/npc/commands/event.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/commands/event.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/commands/event.txt')
-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 ba28a0891..c3d21b329 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:");
- mescol l(" @exprate", 7);
+ mes col(" @exprate", 7);
next;
mes l("To set the exp rate:");
- mescol l(" @exprate ##Brate##b hours", 7);
+ mes col(" @exprate ##Brate##b hours", 7);
next;
mes l("To reset back to normal:");
- mescol l(" @exprate default", 7); // note to translators: any non-numerical value will reset so "default" is safe to translate
+ mes col(" @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:");
- mescol l(" @rates", 7);
+ mes col(" @rates", 7);
next;
mes l("To set the drop rate:");
- mescol l(" @droprate ##Brate##b hours", 7);
+ mes col(" @droprate ##Brate##b hours", 7);
next;
mes l("To reset back to normal:");
- mescol l(" @droprate default", 7); // note to translators: any non-numerical value will reset so "default" is safe to translate
+ mes col(" @droprate default", 7); // note to translators: any non-numerical value will reset so "default" is safe to translate
next;
return;
}