Hello, I want to adapt this code in rAthena src (pc.c). Could anyone help me, please (?) Thank you. I just want to edit Eff_Freeze limit in 80%
Here's the custom edit.
if ((effect[i].rate >= 8000) && (effect[i].id == 1))
effect[i].rate = 8000;
Here's the exact part in pc.c in rAthena Emu.
if (effect.size() == MAX_PC_BONUS) {
ShowWarning("pc_bonus_addeff: Reached max (%d) number of add effects per character!\n", MAX_PC_BONUS);
return;
}
if (!(flag&(ATF_SHORT | ATF_LONG)))
flag |= ATF_SHORT | ATF_LONG; //Default range: both
if (!(flag&(ATF_TARGET | ATF_SELF)))
flag |= ATF_TARGET; //Default target: enemy.
if (!(flag&(ATF_WEAPON | ATF_MAGIC | ATF_MISC)))
flag |= ATF_WEAPON; //Default type: weapon.
if (!duration)
duration = (unsigned int)skill_get_time2(status_sc2skill(sc), 7);
for (auto &it : effect) {
if (it.sc == sc && it.flag == flag) {
it.rate = cap_value(it.rate + rate, -10000, 10000);
it.arrow_rate += arrow_rate;
it.duration = umax(it.duration, duration);
return;
}
}
struct s_addeffect entry = {};
if (rate < -10000 || rate > 10000)
ShowWarning("pc_bonus_addeff: Item bonus rate %d exceeds -10000~10000 range, capping.\n", rate);
entry.sc = sc;
entry.rate = cap_value(rate, -10000, 10000);
entry.arrow_rate = arrow_rate;
entry.flag = flag;
entry.duration = duration;
effect.push_back(entry);
}
Thanks again.