Checkmate Posted September 6, 2013 Group: Members Topic Count: 96 Topics Per Day: 0.02 Content Count: 554 Reputation: 14 Joined: 09/24/12 Last Seen: November 20, 2024 Share Posted September 6, 2013 Hi all.. I have question.. Can someone help me on to increase all Ranger skill damage on src...?? Help me increase it about 30% from default dmg.. thanks in anyway... Quote Link to comment Share on other sites More sharing options...
chowking Posted September 6, 2013 Group: Members Topic Count: 32 Topics Per Day: 0.01 Content Count: 178 Reputation: 17 Joined: 06/25/12 Last Seen: September 22, 2022 Share Posted September 6, 2013 try adding ATK_ADDRATE(wd.damage, wd.damage2, 30); before break; at end of each ranger skill in battle.c then recompile Quote Link to comment Share on other sites More sharing options...
Checkmate Posted September 6, 2013 Group: Members Topic Count: 96 Topics Per Day: 0.02 Content Count: 554 Reputation: 14 Joined: 09/24/12 Last Seen: November 20, 2024 Author Share Posted September 6, 2013 Can you tell me more detail about this...?? Thanks Quote Link to comment Share on other sites More sharing options...
zein Posted September 6, 2013 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 34 Reputation: 4 Joined: 03/16/12 Last Seen: November 10, 2013 Share Posted September 6, 2013 Try this one http://rathena.org/board/topic/62238-manage-skill-damage-21/ These patch added in r17485 Quote Link to comment Share on other sites More sharing options...
chowking Posted September 8, 2013 Group: Members Topic Count: 32 Topics Per Day: 0.01 Content Count: 178 Reputation: 17 Joined: 06/25/12 Last Seen: September 22, 2022 Share Posted September 8, 2013 (edited) better use Zein's suggestion anyway here an example of mine In src/map/battle.c case NC_FLAMELAUNCHER: case NC_COLDSLOWER: skillratio += 200 + 300 * skill_lv; RE_LVL_DMOD(100); break; it becomes: case NC_FLAMELAUNCHER: case NC_COLDSLOWER: skillratio += 200 + 300 * skill_lv; RE_LVL_DMOD(100); ATK_ADDRATE(wd.damage, wd.damage2, 30); break; Edited September 8, 2013 by chowking Quote Link to comment Share on other sites More sharing options...
Question
Checkmate
Hi all..
I have question..
Can someone help me on to increase all Ranger skill damage on src...??
Help me increase it about 30% from default dmg.. thanks in anyway...
Link to comment
Share on other sites
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.