Jump to content
  • 0
Dissidia

Limit the Max MATK

Question

5 answers to this question

Recommended Posts

  • 0

Hmm, I think easiest would be to go to status.c, find function status_calc_matk and change:

cap_value(matk,0,USHRT_MAX);

To:

cap_value(matk,0,10000);

(It appears twice in the function and both parts need to be modified.)

Edited by Playtester
  • Upvote 1
Link to comment
Share on other sites

  • 0

Maybe you can just manually compute it.. using this:

src/map/status.c

	unsigned short status_base_matk_min(const struct status_data* status) { return status->int_ + (status->int_ / 7) * (status->int_ / 7); }
	unsigned short status_base_matk_max(const struct status_data* status) { return status->int_ + (status->int_ / 5) * (status->int_ / 5); }

 

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

Important Information

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