summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-12-09 13:51:07 -0300
committerJesusaves <cpntb1@ymail.com>2023-12-09 13:51:07 -0300
commit1cb601bcaafbe018d587692534f72cf88389c096 (patch)
treec4469828da6c471c1696456e954f3c526d5b3279
parent91611102940c34aaf1d94dc31981f5210579c60b (diff)
downloadserverdata-1cb601bcaafbe018d587692534f72cf88389c096.tar.gz
serverdata-1cb601bcaafbe018d587692534f72cf88389c096.tar.bz2
serverdata-1cb601bcaafbe018d587692534f72cf88389c096.tar.xz
serverdata-1cb601bcaafbe018d587692534f72cf88389c096.zip
[Experimental] Drop Rate on politics (will only apply after MK is defeated)
-rw-r--r--npc/functions/politics.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt
index 5e2a5e2cc..b2ae9dcc4 100644
--- a/npc/functions/politics.txt
+++ b/npc/functions/politics.txt
@@ -644,6 +644,12 @@ function script POL_Manage {
$@EXP_EVENT=.@b;
$@EXP_EVENT_TIME=2;
donpcevent "@exprate::OnPlayerCall";
+ // Drop Rate will apply, ONLY IF Monster King has been defeated
+ if ($GAME_STORYLINE >= 5) {
+ $@DROP_EVENT=.@b * 2 / 3;
+ $@DROP_EVENT_TIME=2;
+ donpcevent "@droprate::OnPlayerCall";
+ }
// We must terminate dialog now and close all context for EXPRATE.
closeclientdialog;
end;