diff --git a/SQF/dayz_code/Configs/CfgBody.hpp b/SQF/dayz_code/Configs/CfgBody.hpp new file mode 100644 index 000000000..967ffc6aa --- /dev/null +++ b/SQF/dayz_code/Configs/CfgBody.hpp @@ -0,0 +1,66 @@ +class CfgBody +{ + class head_hit + { + memoryPoint = "pilot"; + variation = 0.08; + }; + + class body + { + memoryPoint = "aimPoint"; + variation = 0.15; + }; + + class Spine2 : body {}; + + class LeftArm + { + memoryPoint = "lelbow"; + variation = 0.1; + }; + + class RightArm + { + memoryPoint = "relbow"; + variation = 0.04; + }; + + class LeftForeArm + { + memoryPoint = "lwrist"; + variation = 0.04; + }; + + class RightForeArm + { + memoryPoint = "rwrist"; + variation = 0.04; + }; + + class LeftHand + { + memoryPoint = "LeftHandMiddle1"; + variation = 0.04; + }; + + class RightHand + { + memoryPoint = "RightHandMiddle1"; + variation = 0.04; + }; + + class legs + { + memoryPoint = "pelvis"; + variation = 0.15; + }; + + class LeftLeg : legs {}; + + class LeftUpLeg : legs {}; + + class RightLeg : legs {}; + + class RightUpLeg : legs {}; +}; \ No newline at end of file diff --git a/SQF/dayz_code/config.cpp b/SQF/dayz_code/config.cpp index ef1bc319a..5997e3d0a 100644 --- a/SQF/dayz_code/config.cpp +++ b/SQF/dayz_code/config.cpp @@ -101,6 +101,7 @@ class DefaultEventhandlers { #include "Configs\rscTitles.hpp" #include "Configs\CfgWorlds.hpp" #include "Configs\CfgMoves.hpp" +#include "Configs\CfgBody.hpp" #include "Configs\CfgVehicles\CfgVehicles.hpp" #include "Configs\CfgWeapons\CfgWeapons.hpp" #include "Configs\CfgMagazines\CfgMagazines.hpp"