I have no idea where to search the function code and I want to do a resistance option for that works only for 5 seconds.
I was thinking at sth like set_user_hp ( get_attacker_dmg + attacker dmg) but I don't know if it's possible, specialy only for 5 secs.
I found this code from EKS's Runemod but I can't undestand it or use it (is making the user resist to 50% of attack):
PHP Code:
#define RESIST_AMOUT 0.50
public API_Damage(victim,attacker,damage)
{
if ( bla bla)
{
???#endif???
return damage - floatround(damage * RESIST_AMOUT)
}
return damage
}