Yuka Posted March 30, 2014 Posted March 30, 2014 Hello, when I upgrade weapons with the Whitesmith Skill it always just says: Weapons upgraded: <Weapon> Upgrade has been completed successfully. How can I get it to say the refine level of the item I have refined? Normally it says something like "You got +7 Weapon" or something like that. D: Quote
1 Cydh Posted April 4, 2014 Posted April 4, 2014 src/map/skill.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/map/skill.c b/src/map/skill.c index ad08fb3..23db870 100755 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -15595,6 +15595,7 @@ void skill_weaponrefine (struct map_session_data *sd, int idx) pc_unequipitem(sd,idx,3); } clif_delitem(sd,idx,1,3); + clif_additem(sd,idx,1,0); clif_upgrademessage(sd->fd, 0, item->nameid); clif_inventorylist(sd); clif_refine(sd->fd,0,idx,item->refine); 3 Quote
0 iraciz Posted April 12, 2023 Posted April 12, 2023 On 4/4/2014 at 7:26 AM, Cydh said: src/map/skill.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/map/skill.c b/src/map/skill.c index ad08fb3..23db870 100755 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -15595,6 +15595,7 @@ void skill_weaponrefine (struct map_session_data *sd, int idx) pc_unequipitem(sd,idx,3); } clif_delitem(sd,idx,1,3); + clif_additem(sd,idx,1,0); clif_upgrademessage(sd->fd, 0, item->nameid); clif_inventorylist(sd); clif_refine(sd->fd,0,idx,item->refine); this is gold, I still use this solution nowadays Quote
Question
Yuka
Hello,
when I upgrade weapons with the Whitesmith Skill it always just says:
Weapons upgraded: <Weapon>
Upgrade has been completed successfully.
How can I get it to say the refine level of the item I have refined?
Normally it says something like "You got +7 Weapon" or something like that. D:
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.