From 36e2c3a9d30cb8eb1a27a74fa26f75f7ba869d17 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Mon, 28 Oct 2019 01:06:55 -0300 Subject: After a successful status reset, the obtained fruits are bound to the char. This means you can only share fruits after receiving them. The exchange era added along the compensation for the bug is now OVER. --- npc/functions/resetstatus.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/npc/functions/resetstatus.txt b/npc/functions/resetstatus.txt index e1d290499..6075749c8 100644 --- a/npc/functions/resetstatus.txt +++ b/npc/functions/resetstatus.txt @@ -13,27 +13,27 @@ function script StatusResetReinvest { // Permanent boosts were now lost, return the fruits if (STATUSUP_STR) { - getitem StrengthFruit, STATUSUP_STR; + getitembound StrengthFruit, STATUSUP_STR, 4; STATUSUP_STR=0; } if (STATUSUP_AGI) { - getitem AgilityFruit, STATUSUP_AGI; + getitembound AgilityFruit, STATUSUP_AGI, 4; STATUSUP_AGI=0; } if (STATUSUP_VIT) { - getitem VitalityFruit, STATUSUP_VIT; + getitembound VitalityFruit, STATUSUP_VIT, 4; STATUSUP_VIT=0; } if (STATUSUP_INT) { - getitem IntelligenceFruit, STATUSUP_INT; + getitembound IntelligenceFruit, STATUSUP_INT, 4; STATUSUP_INT=0; } if (STATUSUP_DEX) { - getitem DexterityFruit, STATUSUP_DEX; + getitembound DexterityFruit, STATUSUP_DEX, 4; STATUSUP_DEX=0; } if (STATUSUP_LUK) { - getitem LuckFruit, STATUSUP_LUK; + getitembound LuckFruit, STATUSUP_LUK, 4; STATUSUP_LUK=0; } resetstatus(); -- cgit v1.2.3-70-g09d2