mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
|
class CfgPatches {
|
||
|
class AGM_GForces {
|
||
|
units[] = {};
|
||
|
weapons[] = {};
|
||
|
requiredVersion = 0.60;
|
||
|
requiredAddons[] = {AGM_Core};
|
||
|
version = "0.95";
|
||
|
versionStr = "0.95";
|
||
|
versionAr[] = {0,95,0};
|
||
|
author[] = {"KoffeinFlummi"};
|
||
|
authorUrl = "https://github.com/KoffeinFlummi/";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
class Extended_PostInit_EventHandlers {
|
||
|
class AGM_GForces {
|
||
|
clientInit = "call compile preprocessFileLineNumbers '\AGM_GForces\clientInit.sqf'";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
class CfgWeapons {
|
||
|
class ItemCore;
|
||
|
class Uniform_Base: ItemCore {
|
||
|
AGM_GForceCoef = 1;
|
||
|
};
|
||
|
|
||
|
class U_B_PilotCoveralls: Uniform_Base {
|
||
|
AGM_GForceCoef = 0.8;
|
||
|
};
|
||
|
class U_I_pilotCoveralls: Uniform_Base {
|
||
|
AGM_GForceCoef = 0.8;
|
||
|
};
|
||
|
class U_O_PilotCoveralls: Uniform_Base {
|
||
|
AGM_GForceCoef = 0.8;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
class CfgVehicles {
|
||
|
class Man;
|
||
|
class CAManBase: Man {
|
||
|
AGM_GForceCoef = 1;
|
||
|
};
|
||
|
|
||
|
class B_Soldier_05_f;
|
||
|
class B_Pilot_F: B_Soldier_05_f {
|
||
|
AGM_GForceCoef = 0.75;
|
||
|
};
|
||
|
class I_Soldier_04_F;
|
||
|
class I_pilot_F: I_Soldier_04_F {
|
||
|
AGM_GForceCoef = 0.75;
|
||
|
};
|
||
|
class O_helipilot_F;
|
||
|
class O_Pilot_F: O_helipilot_F {
|
||
|
AGM_GForceCoef = 0.75;
|
||
|
};
|
||
|
};
|