Open
AttackArbiter.cpp and search for
CAttackArbiter::PostAsalraalaikum()
In this function you have to replace this
Code:
return ( ( ( m_pAttacker->GetStr() / 10 ) * dwSkillLevel ) * ( 5 + nMP / 10 ) + nAddDmg );
with this
Code:
int nSTR = m_pAttacker->GetStr();
if( nSTR > 850 )
nSTR = 850;
return ( ( ( nSTR / 10 ) * dwSkillLevel ) * ( 5 + nMP / 10 ) + nAddDmg );