Myth Posted October 13, 2015 Group: Members Topic Count: 59 Topics Per Day: 0.01 Content Count: 225 Reputation: 5 Joined: 05/30/12 Last Seen: March 21 Share Posted October 13, 2015 i just want to add some additional Atk bonus this are the defaults Level Description 1 ATK +3 2 ATK +6 3 ATK +9 4 ATK +12 5 ATK +15 6 ATK +18 7 ATK +21 8 ATK +24 9 ATK +27 10 ATK +30 how can i add to this? Level ATK Bonus 1 55 2 60 3 65 4 70 5 75 6 80 7 85 8 90 9 95 10 100 TIA Quote Link to comment Share on other sites More sharing options...
Haziel Posted October 14, 2015 Group: Content Moderator Topic Count: 22 Topics Per Day: 0.00 Content Count: 639 Reputation: 609 Joined: 11/25/11 Last Seen: March 7 Share Posted October 14, 2015 The Skill Throwing Mastery, also known as Shuriken Training is identified by NJ_TOBIDOUGU. Changing passive bonuses, usually is on src/map/battle.c.Find this line: if (skill_id == NJ_SYURIKEN && (skill = pc_checkskill(sd,NJ_TOBIDOUGU)) > 0) { ATK_ADD(wd.damage, wd.damage2, 3 * skill); Currently, the extra damage given is 3 * Skill Level.Change that 3 according to what you want.Which is something like this. if (skill_id == NJ_SYURIKEN && (skill = pc_checkskill(sd,NJ_TOBIDOUGU)) > 0) { ATK_ADD(wd.damage, wd.damage2, 50 + 5 * skill); Final Damage is 50 + 5 * Skill Level.Then, recompile. Quote Link to comment Share on other sites More sharing options...
Question
Myth
i just want to add some additional Atk bonus
this are the defaults
Level Description 1 ATK +3 2 ATK +6 3 ATK +9 4 ATK +12 5 ATK +15 6 ATK +18 7 ATK +21 8 ATK +24 9 ATK +27 10 ATK +30how can i add to this?
Link to comment
Share on other sites
1 answer 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.