Screwdriver Posted February 16, 2013 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
Capuche Posted February 16, 2013 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
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 Screwdriver1 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.