PapaZola Posted May 15, 2016 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Share Posted May 15, 2016 hello rA how to increase hp skill apple of idun? which 1 i need edit? Quote Link to comment Share on other sites More sharing options...
0 Promise Posted May 16, 2016 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 386 Reputation: 38 Joined: 04/28/13 Last Seen: March 22, 2024 Share Posted May 16, 2016 (edited) rathena/src/map/skill.c case BA_APPLEIDUN: #ifdef RENEWAL hp = 100 + 5 * skill_lv + 5 * (status_get_vit(src) / 10); // HP recovery #else hp = 30 + 5 * skill_lv + 5 * (status_get_vit(src) / 10); // HP recovery #endif If your server is renewal edit hp = 100 + 5 * skill_lv + 5 * (status_get_vit(src) / 10); // HP recovery else hp = 30 + 5 * skill_lv + 5 * (status_get_vit(src) / 10); // HP recovery Example in renewal server: Skill level: 10 Vit of the player: 90 100 + (5 * 10) + (5 * 90/10) 100 + 50 + 45 195 This will give +195 HP if im not wrong * Note: (status_get_vit(src) / 10) = Player vit/10 Edited May 16, 2016 by Promise Quote Link to comment Share on other sites More sharing options...
0 PapaZola Posted May 16, 2016 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Author Share Posted May 16, 2016 im used pre Quote Link to comment Share on other sites More sharing options...
0 Promise Posted May 16, 2016 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 386 Reputation: 38 Joined: 04/28/13 Last Seen: March 22, 2024 Share Posted May 16, 2016 hp = 30 + 5 * skill_lv + 5 * (status_get_vit(src) / 10); // HP recovery Edit this 30 + 5 * skill level + 5 * player VIT /10 Quote Link to comment Share on other sites More sharing options...
0 PapaZola Posted May 16, 2016 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Author Share Posted May 16, 2016 hp = 30 + 5 * skill_lv + 5 * (status_get_vit(src) / 10); // HP recovery Edit this 30 + 5 * skill level + 5 * player VIT /10 did i need edit the vit? Quote Link to comment Share on other sites More sharing options...
0 Promise Posted May 16, 2016 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 386 Reputation: 38 Joined: 04/28/13 Last Seen: March 22, 2024 Share Posted May 16, 2016 Depends on what u want to edit of the skill, if you want to add a litte more hp, you can just replace the 30 for another number Quote Link to comment Share on other sites More sharing options...
Question
PapaZola
hello rA
how to increase hp skill apple of idun?
which 1 i need edit?
Link to comment
Share on other sites
5 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.