Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RHS Compatibility - g force adjustments and MH6M can now fastrope #6439

Merged
merged 1 commit into from
Jul 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions addons/gforces/CfgWeapons.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ class CfgWeapons {
class U_B_PilotCoveralls: Uniform_Base {
ACE_GForceCoef = 0.8;
};
class U_B_HeliPilotCoveralls: Uniform_Base {
ACE_GForceCoef = 0.8;
};
class U_I_pilotCoveralls: Uniform_Base {
ACE_GForceCoef = 0.8;
};
class U_I_HeliPilotCoveralls: Uniform_Base {
ACE_GForceCoef = 0.8;
};
class U_O_PilotCoveralls: Uniform_Base {
ACE_GForceCoef = 0.8;
};
Expand Down
17 changes: 17 additions & 0 deletions optionals/compat_rhs_usf3/CfgVehicles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ class CfgVehicles {
class RHS_MELB_MH6M: RHS_MELB_base {
EGVAR(fastroping,enabled) = 1;
EGVAR(fastroping,ropeOrigins)[] = {{1.166, 0.79, -0.01}, {-1.166, 0.79, -0.01}};
EGVAR(fastroping,onCut) = QFUNC(onCut);
EGVAR(fastroping,onPrepare) = QFUNC(onPrepare);
};
class RHS_UH60_Base: Heli_Transport_01_base_F {
EGVAR(refuel,fuelCapacity) = 1360;
Expand Down Expand Up @@ -284,4 +286,19 @@ class CfgVehicles {
EGVAR(cargo,space) = 4;
EGVAR(cargo,hasCargo) = 1;
};

class rhsusf_infantry_usmc_base;
class rhsusf_usmc_marpat_wd_helipilot: rhsusf_infantry_usmc_base {
ace_gforcecoef = 0.55;
};

class rhsusf_infantry_army_base;
class rhsusf_army_ocp_helipilot: rhsusf_infantry_army_base {
ace_gforcecoef = 0.55;
};

class rhsusf_usmc_marpat_wd_rifleman_m4;
class rhsusf_airforce_jetpilot: rhsusf_usmc_marpat_wd_rifleman_m4 {
ace_gforcecoef = 0.55;
};
};