bWolfie 138 Posted July 24, 2016 When upgrading weapons use the Blacksmith skill Weapon Refine, once it hits +10, it doesn't leave the Upgradable weapons menu. How can I stop this? Quote Share this post Link to post Share on other sites
0 Sephus 203 Posted July 24, 2016 You should submit an issue on github - here. Quote Share this post Link to post Share on other sites
0 nitrous2 3 Posted July 24, 2016 (edited) add && sd->status.inventory[i].refine < skill_lv to the check in clif_item_refine_list It'll look like this: if(sd->status.inventory[i].nameid > 0 && sd->status.inventory[i].identify && itemdb_wlv(sd->status.inventory[i].nameid) >= 1 && !sd->inventory_data[i]->flag.no_refine && !(sd->status.inventory[i].equip&EQP_ARMS) && sd->status.inventory[i].refine < skill_lv) Edited July 24, 2016 by nitrous2 Quote Share this post Link to post Share on other sites
0 bWolfie 138 Posted July 25, 2016 add && sd->status.inventory[i].refine < skill_lv to the check in clif_item_refine_list It'll look like this: if(sd->status.inventory[i].nameid > 0 && sd->status.inventory[i].identify && itemdb_wlv(sd->status.inventory[i].nameid) >= 1 && !sd->inventory_data[i]->flag.no_refine && !(sd->status.inventory[i].equip&EQP_ARMS) && sd->status.inventory[i].refine < skill_lv) Thank you sir, I will try this and get back to you. Quote Share this post Link to post Share on other sites
When upgrading weapons use the Blacksmith skill Weapon Refine, once it hits +10, it doesn't leave the Upgradable weapons menu. How can I stop this?
Share this post
Link to post
Share on other sites