Checkmate Posted July 12, 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 July 12, 2013 Good Day RA Community1.I do want to know what is the default dmg and src in skill Hell Plant cuz what im seing in this sectionhttp://rathena.org/board/topic/57532-fixing-hell-plant-damage/ I cant find any solution for that... 2. From what i see in that section it was kinda weird from my code case GN_HELLS_PLANT_ATK: //[{( Hell Plant Skill Level x Casters Base Level ) x 10 } + {( Casters INT x 7 ) / 2 } x { 18 + ( Casters Job Level / 4 )] x ( 5 / ( 10 - Summon Flora Skill Level )) md.damage = ( skill_lv * status_get_lv(src) * 10 ) + ( sstatus->int_ * 7 / 2 ) * ( 18 + (sd?sd->status.job_level:0) / 4 ) * ( 5 / (10 - (sd?pc_checkskill(sd,AM_CANNIBALIZE):0)) ); break; How can i change the damage cuz sometime the damage that be done by this skill is very high and i dont know how to prevent this....Someone help me... :-(Thanks For Advance Quote Link to comment Share on other sites More sharing options...
michaelsoftman Posted July 12, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 410 Reputation: 29 Joined: 04/04/12 Last Seen: November 28, 2024 Share Posted July 12, 2013 Just lower some of the numbers depending on how low you want it to go. Here, this is lowered slightly. case GN_HELLS_PLANT_ATK: //[{( Hell Plant Skill Level x Casters Base Level ) x 10 } + {( Casters INT x 7 ) / 2 } x { 18 + ( Casters Job Level / 4 )] x ( 5 / ( 10 - Summon Flora Skill Level )) md.damage = ( skill_lv * status_get_lv(src) * 5 ) + ( sstatus->int_ * 5 / 2 ) * ( 15 + (sd?sd->status.job_level:0) / 4 ) * ( 5 / (10 - (sd?pc_checkskill(sd,AM_CANNIBALIZE):0)) ); break; Quote Link to comment Share on other sites More sharing options...
Checkmate Posted July 12, 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 July 12, 2013 Im sorry sir.. i still dont get it.. Can you show me what kind of number that i;m need to change or lowered? Quote Link to comment Share on other sites More sharing options...
michaelsoftman Posted July 14, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 410 Reputation: 29 Joined: 04/04/12 Last Seen: November 28, 2024 Share Posted July 14, 2013 Change any of the numbers really. I changed just some of the multipliers to make them lower. The comment above the skill line tells you what they all stand for. 1 Quote Link to comment Share on other sites More sharing options...
Checkmate Posted July 20, 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 July 20, 2013 Sorry for the late reply...You awesome dude...It working... Thanks Anyway... ^ ^ Case Closed Quote Link to comment Share on other sites More sharing options...
Question
Checkmate
Good Day RA Community
1.I do want to know what is the default dmg and src in skill Hell Plant cuz what im seing in this section
http://rathena.org/board/topic/57532-fixing-hell-plant-damage/
I cant find any solution for that...
2. From what i see in that section it was kinda weird from my code
How can i change the damage cuz sometime the damage that be done by this skill is very high and i dont know how to prevent this....
Someone help me... :-(
Thanks For Advance
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.