summaryrefslogtreecommitdiff
path: root/npc/commands/rate-management.txt
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-02-28 19:14:24 -0300
committerjesusalva <cpntb1@ymail.com>2018-02-28 19:14:24 -0300
commit736f21fbc3d23630c018c218ece1715508dbd595 (patch)
treef85dcfcf5f0cd10e22fccc88b7bc2d1103a6afa6 /npc/commands/rate-management.txt
parentdcd198aef2729c5978ba9b2b68a823df62677b6c (diff)
downloadserverdata-736f21fbc3d23630c018c218ece1715508dbd595.tar.gz
serverdata-736f21fbc3d23630c018c218ece1715508dbd595.tar.bz2
serverdata-736f21fbc3d23630c018c218ece1715508dbd595.tar.xz
serverdata-736f21fbc3d23630c018c218ece1715508dbd595.zip
Do not adjust quest experience with @exprate because I think it is unfair.
Diffstat (limited to 'npc/commands/rate-management.txt')
-rw-r--r--npc/commands/rate-management.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/commands/rate-management.txt b/npc/commands/rate-management.txt
index 815db897a..348bf2af3 100644
--- a/npc/commands/rate-management.txt
+++ b/npc/commands/rate-management.txt
@@ -7,9 +7,9 @@
.max_hours = 0;
.current_rate = .original_exp_rate;
setbattleflag("base_exp_rate", .original_exp_rate);
- setbattleflag("quest_exp_rate", .original_quest_rate);
+ //setbattleflag("quest_exp_rate", .original_quest_rate);
charcommand("@reloadmobdb"); // this is on purpose (callable without RID)
- charcommand("@reloadquestdb");
+ //charcommand("@reloadquestdb");
}
function remainingTime {
@@ -36,9 +36,9 @@ OnCall:
.max_hours = .@hours;
.current_rate = .@new_rate;
setbattleflag("base_exp_rate", .@new_rate);
- setbattleflag("quest_exp_rate", .@new_rate);
+ //setbattleflag("quest_exp_rate", .@new_rate);
charcommand("@reloadmobdb");
- charcommand("@reloadquestdb");
+ //charcommand("@reloadquestdb");
initnpctimer; // start counting
announce l("@@ increased experience rate to @@%. It will only last @@!", strcharinfo(2), .@new_rate, FuzzyTime(time_from_hours(.max_hours), 2, 2));