diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-29 19:46:54 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-29 19:46:54 -0300 |
commit | da1a1038d8ad71358042d7d9311486d0c75bfc64 (patch) | |
tree | 1efa5c3817b1e08b5486dd33af3018ad39fe82e2 /npc/functions/resetstatus.txt | |
parent | 9402f60bd66dc24b406906d97e4164da33a0c78d (diff) | |
download | serverdata-da1a1038d8ad71358042d7d9311486d0c75bfc64.tar.gz serverdata-da1a1038d8ad71358042d7d9311486d0c75bfc64.tar.bz2 serverdata-da1a1038d8ad71358042d7d9311486d0c75bfc64.tar.xz serverdata-da1a1038d8ad71358042d7d9311486d0c75bfc64.zip |
Status Reset Potion - return fruits
Diffstat (limited to 'npc/functions/resetstatus.txt')
-rw-r--r-- | npc/functions/resetstatus.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/npc/functions/resetstatus.txt b/npc/functions/resetstatus.txt index 71f724170..eb5d0cfc5 100644 --- a/npc/functions/resetstatus.txt +++ b/npc/functions/resetstatus.txt @@ -6,10 +6,16 @@ // Status Reset NPC utils // Reset status and return permanent bonuses -// StatusResetReinvest( - ) +// StatusResetReinvest( {script=True} ) function script StatusResetReinvest { // Compulsory check - inventoryplace NPCEyes, 6; + if (getarg(0, true)) { + inventoryplace NPCEyes, 6; + } else if (!checkweight2(NPCEyes, 6)) { + getitembound StatusResetPotion, 1, 4; + dispbottom l("You cannot carry the fruits."); + end; // Die + } // Permanent boosts were now lost, return the fruits if (STATUSUP_STR) { |