Jump to content
  • 0

Whitesmith Weapon Refine Skill


Yuka

Question


  • Group:  Members
  • Topic Count:  100
  • Topics Per Day:  0.03
  • Content Count:  333
  • Reputation:   7
  • Joined:  03/01/14
  • Last Seen:  

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:

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 1

  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

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);
 
  • Upvote 3
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  140
  • Topics Per Day:  0.03
  • Content Count:  562
  • Reputation:   108
  • Joined:  10/05/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  100
  • Topics Per Day:  0.03
  • Content Count:  333
  • Reputation:   7
  • Joined:  03/01/14
  • Last Seen:  

Anyone?

Bump. ?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...