summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-10-28 01:06:55 -0300
committerJesusaves <cpntb1@ymail.com>2019-10-28 01:06:55 -0300
commit36e2c3a9d30cb8eb1a27a74fa26f75f7ba869d17 (patch)
tree9ae26dcc0197ded3feda10e68e87ea7a745941be
parentda05411e42b95392a62e8f432db89d29aa15de5a (diff)
downloadserverdata-36e2c3a9d30cb8eb1a27a74fa26f75f7ba869d17.tar.gz
serverdata-36e2c3a9d30cb8eb1a27a74fa26f75f7ba869d17.tar.bz2
serverdata-36e2c3a9d30cb8eb1a27a74fa26f75f7ba869d17.tar.xz
serverdata-36e2c3a9d30cb8eb1a27a74fa26f75f7ba869d17.zip
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.
-rw-r--r--npc/functions/resetstatus.txt12
1 files 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();