Hello guys. i want to know how i can edit(Nerf/Increase) the HoP/Asal And the rest of the skills in the source? I cant find out where. can i get any help?
Printable View
Hello guys. i want to know how i can edit(Nerf/Increase) the HoP/Asal And the rest of the skills in the source? I cant find out where. can i get any help?
AttackArbiter.cpp .Row nr. 502 everything you need for asal editing.
switch( dwSkillLevel )
{
case 1: nAddDmg = 20; break;
case 2: nAddDmg = 30; break;
case 3: nAddDmg = 40; break;
case 4: nAddDmg = 50; break;
case 5: nAddDmg = 60; break;
case 6: nAddDmg = 70; break;
case 7: nAddDmg = 80; break;
case 8: nAddDmg = 90; break;
case 9: nAddDmg = 100; break;
case 10: nAddDmg = 150; break;
}
Here Right?
Also HOP it's in resources only. Only thing I found it's the penya the skill takes and SFX effects.Code:return ( ( ( m_pAttacker->GetStr() / 10 ) * dwSkillLevel ) * ( 5 + nMP / 10 ) + nAddDmg );
And not sure about this at MoverAttack.cpp
But I think it's the damage formula.Code:case SI_JST_YOYO_HITOFPENYA:
factor *= ( pAddSkillProp->nDestData1[0] / 100.0f );
break;