Limestone Posted January 19, 2013 Group: Members Topic Count: 155 Topics Per Day: 0.03 Content Count: 647 Reputation: 16 Joined: 11/21/11 Last Seen: December 28, 2022 Share Posted January 19, 2013 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! Quote Link to comment Share on other sites More sharing options...
Jhedzkie Posted January 20, 2013 Group: Members Topic Count: 43 Topics Per Day: 0.01 Content Count: 298 Reputation: 15 Joined: 11/17/11 Last Seen: February 18 Share Posted January 20, 2013 (edited) There ya go. Tried and tested working with the latest revision of rA. refine announce.patch Edited January 20, 2013 by Jhedzkie Quote Link to comment Share on other sites More sharing options...
Limestone Posted January 22, 2013 Group: Members Topic Count: 155 Topics Per Day: 0.03 Content Count: 647 Reputation: 16 Joined: 11/21/11 Last Seen: December 28, 2022 Author Share Posted January 22, 2013 thank you! it works 100%! thank you! Quote Link to comment Share on other sites More sharing options...
icabit Posted January 27, 2013 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 353 Reputation: 70 Joined: 07/14/12 Last Seen: February 12, 2023 Share Posted January 27, 2013 Kewl Feature how do you edit it to announce +10-20 im ultra noob when it comes to src Quote Link to comment Share on other sites More sharing options...
Cydh Posted January 27, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 748 Joined: 06/16/12 Last Seen: February 21 Share Posted January 27, 2013 (edited) Kewl Feature how do you edit it to announce +10-20 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 January 27, 2013 by cydh 1 Quote Link to comment Share on other sites More sharing options...
icabit Posted January 27, 2013 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 353 Reputation: 70 Joined: 07/14/12 Last Seen: February 12, 2023 Share Posted January 27, 2013 (edited) THX i will now test it cydh i requested it cause renewal is up to +20 Edited January 27, 2013 by icabit Quote Link to comment Share on other sites More sharing options...
Cydh Posted January 27, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 748 Joined: 06/16/12 Last Seen: February 21 Share Posted January 27, 2013 THX i will now test it cydh i requested it cause renewal is up to +20 welcome.. thank's to Jhedzkie Quote Link to comment Share on other sites More sharing options...
icabit Posted January 27, 2013 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 353 Reputation: 70 Joined: 07/14/12 Last Seen: February 12, 2023 Share Posted January 27, 2013 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! Quote Link to comment Share on other sites More sharing options...
Cydh Posted January 28, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 748 Joined: 06/16/12 Last Seen: February 21 Share Posted January 28, 2013 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 Quote Link to comment Share on other sites More sharing options...
icabitproxy Posted January 28, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 3 Reputation: 0 Joined: 01/10/13 Last Seen: January 28, 2013 Share Posted January 28, 2013 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 >.> Quote Link to comment Share on other sites More sharing options...
Cydh Posted January 28, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 748 Joined: 06/16/12 Last Seen: February 21 Share Posted January 28, 2013 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 Quote Link to comment Share on other sites More sharing options...
Question
Limestone
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.