From c077586a37fa9a28d460a4f4b4ae1ff85fa61fb5 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Thu, 25 Jun 2020 23:27:26 -0300 Subject: The 100% chance EXP Bonus from Tolchi only applies if top3 players already reached level 50. This is to prevent an early imbalance at ML Stable --- npc/005-4/tolchi.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'npc/005-4') diff --git a/npc/005-4/tolchi.txt b/npc/005-4/tolchi.txt index 6e64c054d..0ff4b791b 100644 --- a/npc/005-4/tolchi.txt +++ b/npc/005-4/tolchi.txt @@ -327,9 +327,11 @@ function tolchi_tweaks { // First time item bonus if (!#FIRST_TIME) { - .@vartp=IOPT_EXPGAIN; - .@bonus=csys_Multiplier(.@lv); - setitemoptionbyindex(.@id, 1, .@vartp, .@bonus); + if (TOP3AVERAGELVL() > 50) { + .@vartp=IOPT_EXPGAIN; + .@bonus=csys_Multiplier(.@lv); + setitemoptionbyindex(.@id, 1, .@vartp, .@bonus); + } #FIRST_TIME=true; } -- cgit v1.2.3-60-g2f50