1 : how to edit ranger acuracy ?
2 : how to edit flyff private shop
2 : how to edit flyff private shop
Edit your private shop in the following files in your source:Quote:
1 : how to edit ranger acuracy ?
2 : how to edit flyff private shop
\_Common\Item.cpp \_Common\Mover.h \_Common\MoverItem.cpp \_Interface\WndRegVend.h \_Interface\WndVendor.cpp \_Interface\WndVendorBuy.cpp \_Interface\WndVendorCtrl.cpp \Neuz\DPClient.cpp \Neuz\DPClient.h \WorldServer\User.h \WorldServer\DPSrvr.cpp \WorldServer\User.cpp As last: \Neuz\VersionCommon.h \WorldServer\VersionCommon.h
you know how file i can edit ranger/ Crackshooter stats ?Quote:
Edit your private shop in the following files in your source:
Code:\_Common\Item.cpp \_Common\Mover.h \_Common\MoverItem.cpp \_Interface\WndRegVend.h \_Interface\WndVendor.cpp \_Interface\WndVendorBuy.cpp \_Interface\WndVendorCtrl.cpp \Neuz\DPClient.cpp \Neuz\DPClient.h \WorldServer\User.h \WorldServer\DPSrvr.cpp \WorldServer\User.cpp As last: \Neuz\VersionCommon.h \WorldServer\VersionCommon.h
There are two options to change the accu of the Ranger/crackshooterQuote:
you know how file i can edit ranger/ Crackshooter stats ?
Quote:
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.