[Help/Request] CoEmu 2 FB exp level

06/17/2009 05:27 editor05#1
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
06/17/2009 15:41 editor05#2
up
06/17/2009 16:08 nTL3fTy#3
I believe the experience awarded for skills like fast blade and scent sword are primarily based on the damage you do to the target.
06/17/2009 17:07 yuko#4
Quote:
Originally Posted by nTL3fTy View Post
I believe the experience awarded for skills like fast blade and scent sword are primarily based on the damage you do to the target.
true,
Code:
Calculation.SkillExp(Skill.ID, CSocket, Damage);
but just in case. in the source i have it didn't have skill lvl 0
Code:
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;
have fun :p