Jump to content

Question

5 answers to this question

Recommended Posts

  • 0
Posted (edited)

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
  • 0
Posted

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); }

 

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...