Jump to content
  • 0

SP based damage ASURA STRIKE


renton69

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   0
  • Joined:  12/20/12
  • Last Seen:  

My server setting, 255 base level, but i think the default max sp to reach max damage is 6k (which is for base lvl 99), and lady tanee card and other items that affects max sp don't add Asura damage. How to edit this?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  161
  • Reputation:   31
  • Joined:  12/06/11
  • Last Seen:  

Battle.c

change:

                case MO_EXTREMITYFIST:
                    {    //Overflow check. [Skotlex]
                        unsigned int ratio = skillratio + 100*(8 + sstatus->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;
                    }

to:
                case MO_EXTREMITYFIST:
                    {    //Overflow check. [Skotlex]
                        unsigned int ratio = skillratio + 100*(8 + sstatus->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;
                    }
Edited by Jeroen
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   0
  • Joined:  12/20/12
  • Last Seen:  

Thank you so much Jeroen it really worked!! :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  161
  • Reputation:   31
  • Joined:  12/06/11
  • Last Seen:  

You're welcome!

Requesting a moderator to close this topic.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   0
  • Joined:  12/20/12
  • Last Seen:  

w8 how about reducing the asura damage? :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  45
  • Reputation:   1
  • Joined:  10/18/12
  • Last Seen:  

how to reduce asura damage

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

w8 how about reducing the asura damage? :D

how to reduce asura damage

 

find

 if (ratio > 60000) ratio = 60000; //We leave some room here in case skillratio gets further increased.

and edit the value of 60000 to lower...

  • Upvote 1
Link to comment
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.   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.

×
×
  • Create New...