diff options
author | Dastgir <dastgirp@gmail.com> | 2017-10-20 18:19:59 +0530 |
---|---|---|
committer | Dastgir <dastgirp@gmail.com> | 2017-10-20 18:19:59 +0530 |
commit | e6afabe4da2fb32debc4a15ab3a67a897e1b7e77 (patch) | |
tree | 2e08f19292f6b944baa31db5db588bf482af9cbf /src/map/script.c | |
parent | 6b1fe2d069cb0251bc5798767f97454ab63a47c0 (diff) | |
download | hercules-e6afabe4da2fb32debc4a15ab3a67a897e1b7e77.tar.gz hercules-e6afabe4da2fb32debc4a15ab3a67a897e1b7e77.tar.bz2 hercules-e6afabe4da2fb32debc4a15ab3a67a897e1b7e77.tar.xz hercules-e6afabe4da2fb32debc4a15ab3a67a897e1b7e77.zip |
Modified setequipoption to allow removal of equip options.
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/src/map/script.c b/src/map/script.c index 367c9927d..9788edf3b 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -14197,31 +14197,36 @@ BUILDIN(setequipoption) if (equip_index > 0 && equip_index <= ARRAYLENGTH(script->equip)) { if ((i = pc->checkequip(sd, script->equip[equip_index - 1])) == -1) { - ShowError("buildin_setequipoptioninfo: No equipment is equipped in the given index %d.\n", equip_index); + ShowError("buildin_setequipoption: No equipment is equipped in the given index %d.\n", equip_index); script_pushint(st, 0); return false; } } else { - ShowError("buildin_setequipoptioninfo: Invalid equipment index %d provided.\n", equip_index); + ShowError("buildin_setequipoption: Invalid equipment index %d provided.\n", equip_index); script_pushint(st, 0); return false; } if (sd->status.inventory[i].nameid != 0) { - - if ((ito = itemdb->option_exists(opt_index)) == NULL) { - script_pushint(st, 0); - ShowError("buildin_setequipotion: Option index %d does not exist!\n", opt_index); - return false; - } else if (value < -INT16_MAX || value > INT16_MAX) { - script_pushint(st, 0); - ShowError("buildin_setequipotion: Option value %d exceeds maximum limit (%d to %d) for type!\n", value, -INT16_MAX, INT16_MAX); - return false; + if (opt_index == 0) { + // Remove the option + sd->status.inventory[i].option[slot-1].index = 0; + sd->status.inventory[i].option[slot-1].value = 0; + } else { + if ((ito = itemdb->option_exists(opt_index)) == NULL) { + script_pushint(st, 0); + ShowError("buildin_setequipotion: Option index %d does not exist!\n", opt_index); + return false; + } else if (value < -INT16_MAX || value > INT16_MAX) { + script_pushint(st, 0); + ShowError("buildin_setequipotion: Option value %d exceeds maximum limit (%d to %d) for type!\n", value, -INT16_MAX, INT16_MAX); + return false; + } + /* Add Option Index */ + sd->status.inventory[i].option[slot-1].index = ito->index; + /* Add Option Value */ + sd->status.inventory[i].option[slot-1].value = value; } - /* Add Option Index */ - sd->status.inventory[i].option[slot-1].index = ito->index; - /* Add Option Value */ - sd->status.inventory[i].option[slot-1].value = value; /* Unequip and simulate deletion of the item. */ pc->unequipitem(sd, i, PCUNEQUIPITEM_FORCE); // status calc will happen in pc->equipitem() below |