Jump to content
  • 0
Sign in to follow this  
mrlongshen

Champion sp doesn't effect asura damage?

Question

 

Ive tried to wear my sohee shoe which add 15% sp and also wear firelock with 10% sp but the damage of the asura are just the same. I also heard people discussing that even you are wearing tanee,there are no damage differences

 

Based on that quotation, how to remove the caps of asura damage. Why no effect if more sp ?

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

In map/battle.c there is this part about Asura Strike aka Extrimity Fist:

 

case MO_EXTREMITYFIST:    #ifndef RENEWAL                    {                        //Overflow check. [Skotlex]                        unsigned int ratio = skillratio + 100*(8 + st->sp/10);                        //You'd need something like 6K SP to reach this max, so should be fine for most purposes.                        if (ratio > 60000) ratio = 60000; //We leave some room here in case skillratio gets further increased.                        skillratio = (unsigned short)ratio;                    }#endif                    break; 

 

If you are using pre-renewal ther is an overflow check, so if you are using high rates with high stats your asura will be capped at some point. This is becuase a short int is from 0 to 65535. If you change the cap to more than this you will get an overflow error, which means it will start again from 0.

 

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
Answer this question...

×   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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.