anyone can start with on how to level the exp of FB...
it'll be a reference to some of the skills exp coding...
thanks
it'll be a reference to some of the skills exp coding...
thanks
true,Quote:
I believe the experience awarded for skills like fast blade and scent sword are primarily based on the damage you do to the target.
Calculation.SkillExp(Skill.ID, CSocket, Damage);
int Distance = 0;
if (Skill.Level == 0)
Distance = 3;
if (Skill.Level == 1)
Distance = 5;
if (Skill.Level == 2)
Distance = 6;
if (Skill.Level == 3)
Distance = 7;
if (Skill.Level == 4)
Distance = 8;