Screwdriver Posted February 16, 2013 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 52 Reputation: 0 Joined: 01/05/13 Last Seen: July 1, 2016 Share Posted February 16, 2013 (edited) Where could I find this, so I may change it to my interests? I don't really like how the Matk per Int is setup at the moment. Thank you /Edit: I believe I found a formula that fits mine from iRO wiki, well it seems to check out stats to MATK.. Status MATK = floor(Base Level/4 + INT + INT/2 + DEX/5 + LUK/3) Where could I find this to change it in my SRC files? Edited February 17, 2013 by Screwdriver Quote Link to comment Share on other sites More sharing options...
Capuche Posted February 16, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted February 16, 2013 status.c #ifndef RENEWAL static inline unsigned short status_base_matk_min(const struct status_data* status){ return status->int_+(status->int_/7)*(status->int_/7); } static inline unsigned short status_base_matk_max(const struct status_data* status){ return status->int_+(status->int_/5)*(status->int_/5); } #else unsigned short status_base_matk(const struct status_data* status, int level){ return status->int_+(status->int_/2)+(status->dex/5)+(status->luk/3)+(level/4); }// renewal formula #endif 1 Quote Link to comment Share on other sites More sharing options...
Question
Screwdriver
Where could I find this, so I may change it to my interests? I don't really like how the Matk per Int is setup at the moment.
Thank you
/Edit: I believe I found a formula that fits mine from iRO wiki, well it seems to check out stats to MATK..
Where could I find this to change it in my SRC files?
Edited by ScrewdriverLink to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.