Refine weapon damage formula pre-re

prism

New member
Messages
69
Points
0
Hello. I am currently running a high rate server and I'm wondering how I can change the weapon attack formula so that refine atk is counted as weapon atk. I'm wondering because refines are useless due to the way their damage addition is calculated. Even if I make the refiner give ridiculous amounts of refine bonuses (600 + 500 ATK in screen) the damage addition of refines is still rather negligible when using skills.

 
Last edited by a moderator:
I made some progress.

In status.c change:

wa->atk2 = status->dbs->refine_info[wlv].bonus[r-1] / 100;

to

wa->atk = status->dbs->refine_info[wlv].bonus[r-1] / 100;

Only problem now is I would want to keep it displaying the + ATK instead of just adding to normal ATK.

 
Last edited by a moderator:
Back
Top