Jump to content
  • 0

Q> how to edit asura skill attack?


Famous

Question


  • Group:  Members
  • Topic Count:  145
  • Topics Per Day:  0.03
  • Content Count:  455
  • Reputation:   3
  • Joined:  06/19/12
  • Last Seen:  

I would like to increase the attack of asura.. need a little help :)

Link to comment
Share on other sites

1 answer to this question

Recommended Posts


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

i think you can try edit this part...

trunk/src/map/battle.c

   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;
  status_set_sp(src, 0, 0);
 }

edit the value for skill formula.....edit the max ratio....etc...whatever you want to do with it...

make sure you recompile after edit.

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