Quote:
Originally Posted by igorgv
you know how file i can edit ranger/ Crackshooter stats ?
|
There are two options to change the accu of the Ranger/crackshooter
the first and easy one is to add a skill that gives u extra accurary.
the second way is to modify following function
BOOL CMover::GetAttackResult
The problem is every class has the same base hitrate, u have to add a special rule for the class Ranger & Crackshooter or for IK3_BOW
If u wanna change the basestats of Ranger/Crackshooter search following function
int CMover::GetWeaponATK
case WT_RANGE_BOW:
nATK = (int)( (((GetDex()-14)*
4.0f + (GetLevel()*1.3f) + (GetStr()*0.2f)) * 0.7f) );
break;
change things like that really careful u have to think about crit dmg and base atk stats from ur bow + all powerups, so just do small changes.