Jump to content
imbloopers

Damge Skill

Recommended Posts

33 minutes ago, imbloopers said:

Hi guys, where do i go to change a class skill damage? the crus is doing a lot of damage to slash, idk where i can find the scripts

check the illusion slash end function

function Skill_Hyz_End ( ATKER , DEFER , sklv ) 

This is the formula
    local dmg = ( ( 1.5 + 0.1 * sklv ) ) * (math.min(3,( math.max ( 1, math.floor( aspd / 70  ) )  ))) * Atk_Dmg ( ATKER , DEFER )

Adjust it to your liking. Below is the one for CA/Mobs
dmg = ( ( 1 + 0.1 * sklv ) ) * (math.min(3,( math.max ( 1, math.floor( aspd / 70  ) )  ))) * Atk_Dmg ( ATKER , DEFER )
 

Share this post


Link to post
Share on other sites
4 hours ago, DangThao said:

check the illusion slash end function

function Skill_Hyz_End ( ATKER , DEFER , sklv ) 

This is the formula
    local dmg = ( ( 1.5 + 0.1 * sklv ) ) * (math.min(3,( math.max ( 1, math.floor( aspd / 70  ) )  ))) * Atk_Dmg ( ATKER , DEFER )

Adjust it to your liking. Below is the one for CA/Mobs
dmg = ( ( 1 + 0.1 * sklv ) ) * (math.min(3,( math.max ( 1, math.floor( aspd / 70  ) )  ))) * Atk_Dmg ( ATKER , DEFER )
 

thx mate :)

Share this post


Link to post
Share on other sites

Join the conversation

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

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.


×
×
  • Create New...