diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/resetstatus.txt | 12 |
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(); |