Jump to content
  • 0

(Help Me)Fixing Hell Plant Skill


Question

Posted

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

 

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

4 answers to this question

Recommended Posts

Posted

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;

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...