diff options
Diffstat (limited to 'npc/commands/event.txt')
-rw-r--r-- | npc/commands/event.txt | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index a78be0f83..898db8331 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -14,6 +14,20 @@ function script GlobalEventMenu { return; } + function dropManagement { + clear; + mes l("To get the current rate:"); + mes col(" @rates", 7); + next; + mes l("To set the drop rate:"); + mes col(" @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 + next; + return; + } + do { clear; @@ -23,7 +37,8 @@ function script GlobalEventMenu { mes l("What do you want to access?"); select - l("Rate management"), + l("Experience Rate management"), + l("Drop Rate management"), rif(getarg(0,0), menuimage("actions/home", l("Return to Super Menu"))); //.@c = getarg(0,0) ? 2 : 1; // 1 = back to event menu, 2 = back to super menu @@ -31,6 +46,7 @@ function script GlobalEventMenu { switch (@menu) { case 1: rateManagement; break; + case 2: dropManagement; break; default: return; } |