Jump to content
  • 0

Requesting SRC MOD on WEAPON REFINE SKILL


Limestone

Question


  • Group:  Members
  • Topic Count:  155
  • Topics Per Day:  0.03
  • Content Count:  647
  • Reputation:   16
  • Joined:  11/21/11
  • Last Seen:  

can i request a src mod for Weapon Refine Skill of Whitesmith, i a whitesmith successfully refined a weapon into +10, it will announce to the entire server.

Ex:

Congratulations to Rage for successfully refining Luna Kaleet to +10!

Link to comment
Share on other sites

10 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  297
  • Reputation:   15
  • Joined:  11/17/11
  • Last Seen:  

There ya go.

Tried and tested working with the latest revision of rA.

2prz67q.jpg

refine announce.patch

Edited by Jhedzkie
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  155
  • Topics Per Day:  0.03
  • Content Count:  647
  • Reputation:   16
  • Joined:  11/21/11
  • Last Seen:  

thank you! it works 100%! :) thank you!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  353
  • Reputation:   70
  • Joined:  07/14/12
  • Last Seen:  

Kewl Feature

how do you edit it to announce +10-20 :D

im ultra noob when it comes to src

Link to comment
Share on other sites


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

Kewl Feature

how do you edit it to announce +10-20 :D

im ultra noob when it comes to src

download the patch file, and read on lines that I gave "//change this"

Index: conf/msg_athena.conf
===================================================================
--- conf/msg_athena.conf (revision 17102)
+++ conf/msg_athena.conf (working copy)
@@ -630,6 +630,8 @@
680: You have been recovered!
//681-899 free

+700: Congratulations to %s for successfully refining %s to +%d!  //change this
+
681: Rune Knight T
682: Warlock T
683: Ranger T
@@ -1406,5 +1408,7 @@
1396: You do not have a cart to be cleaned.
1397: Your cart was cleaned.

+
+// msg
//Custom translations
import: conf/import/msg_conf.txt
Index: src/map/skill.c
===================================================================
--- src/map/skill.c (revision 17102)
+++ src/map/skill.c (working copy)
@@ -14228,7 +14228,7 @@
void skill_weaponrefine (struct map_session_data *sd, int idx)
{
 nullpo_retv(sd);
-
+
 if (idx >= 0 && idx < MAX_INVENTORY)
 {
 int i = 0, ep = 0, per;
@@ -14266,6 +14266,12 @@
 if (ep)
 pc_equipitem(sd,idx,ep);
 clif_misceffect(&sd->bl,3);
+ if(item->refine >= 10) //change this
+ {
+ char output[256];
+ snprintf(output, sizeof output, msg_txt(700), &sd->status.name, ditem->jname, item->refine); // Packet 0x%x length: %d //change this
+ clif_broadcast(&sd->bl, output, strlen(output)+1, 0, ALL_CLIENT);
+ }
 if(item->refine == 10 &&
 item->card[0] == CARD0_FORGE &&
 (int)MakeDWord(item->card[2],item->card[3]) == sd->status.char_id)

Edited by cydh
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  353
  • Reputation:   70
  • Joined:  07/14/12
  • Last Seen:  

THX i will now test it :Dcydh

i requested it cause renewal is up to +20 :D

Edited by icabit
Link to comment
Share on other sites


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

THX i will now test it :Dcydh

i requested it cause renewal is up to +20 :D

welcome.. thank's to Jhedzkie

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  353
  • Reputation:   70
  • Joined:  07/14/12
  • Last Seen:  

question does this announce also when you use @refine? and using the npc when refining?

since from reading the topic it says

can i request a src mod for Weapon Refine Skill of Whitesmith, i a whitesmith successfully refined a weapon into +10, it will announce to the entire server.

Ex:

Congratulations to Rage for successfully refining Luna Kaleet to +10!

Link to comment
Share on other sites


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

question does this announce also when you use @refine? and using the npc when refining?

since from reading the topic it says

no, it does not

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  3
  • Reputation:   0
  • Joined:  01/10/13
  • Last Seen:  

thats sad to hear :(

but i guess ill do it via npc sorry for using this account im at school my password for my main account is in my pc's notepad >.>

Link to comment
Share on other sites


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

thats sad to hear :(

but i guess ill do it via npc sorry for using this account im at school my password for my main account is in my pc's notepad >.>

make new post on support section.. haha

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...