Jump to content
  • 0
bWolfie

[2014-02-05] Smith Weapon Refine

Question

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?

post-12195-0-96283400-1469354425_thumb.png

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

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 by nitrous2

Share this post


Link to post
Share on other sites
  • 0

 

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.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.