-
Notifications
You must be signed in to change notification settings - Fork 740
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
[compat_rhs_usf3] ACE Explosives functionality for RHS USAF #7099
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ | |
}; \ | ||
} | ||
|
||
class CBA_Extended_EventHandlers; | ||
|
||
class CfgVehicles { | ||
class LandVehicle; | ||
class Car: LandVehicle { | ||
|
@@ -316,4 +318,57 @@ class CfgVehicles { | |
class rhsusf_airforce_jetpilot: rhsusf_usmc_marpat_wd_rifleman_m4 { | ||
ace_gforcecoef = 0.55; | ||
}; | ||
|
||
class Items_base_F; | ||
class ACE_Explosives_Place: Items_base_F { | ||
class EventHandlers { | ||
class CBA_Extended_EventHandlers; | ||
}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Delete these three. They are already inherited. |
||
class ACE_Actions { | ||
class ACE_MainActions { | ||
class ACE_SetTrigger; | ||
class ACE_PickUp; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are these two here? Superfluous. |
||
}; | ||
}; | ||
}; | ||
|
||
class ACE_Explosives_Place_rhsusf_m112_DemoCharge: ACE_Explosives_Place { | ||
displayName = "USAF Demo Charge"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use their string key instead of the translated name, so this name shows up correctly in non English settings. |
||
model = "\rhsusf\addons\rhsusf_weapons\explosives\rhsusf_m112x1_e"; | ||
class ACE_Actions: ACE_Actions { | ||
class ACE_MainActions: ACE_MainActions { | ||
position = "[-0.155,0,0.01]"; | ||
}; | ||
}; | ||
}; | ||
|
||
class ACE_Explosives_Place_rhsusf_m112x4_DemoCharge: ACE_Explosives_Place { | ||
displayName = "USAF Demo Charge (x4)"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same. |
||
model = "\rhsusf\addons\rhsusf_weapons\explosives\rhsusf_m112x4_e"; | ||
class ACE_Actions: ACE_Actions { | ||
class ACE_MainActions: ACE_MainActions { | ||
position = "[-0.155,0.025,0.01]"; | ||
}; | ||
}; | ||
}; | ||
|
||
class ACE_Explosives_Place_rhs_mine_M19_Mine: ACE_Explosives_Place { | ||
displayName = "USAF AT Mine"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same. |
||
model = "\rhsusf\addons\rhsusf_weapons\mines\rhsusf_m19_e"; | ||
class ACE_Actions: ACE_Actions { | ||
class ACE_MainActions: ACE_MainActions { | ||
position = "[0.011,0.011,0.045]"; | ||
}; | ||
}; | ||
}; | ||
|
||
class ACE_Explosives_Place_rhsusf_mine_m14_mag_Mine: ACE_Explosives_Place { | ||
displayName = "USAF AP Mine"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same. |
||
model = "\rhsusf\addons\rhsusf_weapons\mines\rhsusf_m14_e"; | ||
class ACE_Actions: ACE_Actions { | ||
class ACE_MainActions: ACE_MainActions { | ||
position = "[0.02,0.015,0.02]"; | ||
}; | ||
}; | ||
}; | ||
}; |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -6,7 +6,7 @@ class CfgPatches { | |||||
units[] = {}; | ||||||
weapons[] = {}; | ||||||
requiredVersion = REQUIRED_VERSION; | ||||||
requiredAddons[] = {"ace_javelin", "ace_rearm", "ace_refuel", "ace_repair", "rhsusf_c_weapons", "rhsusf_c_troops", "rhsusf_c_m1a1", "rhsusf_c_m1a2", "RHS_US_A2_AirImport", "rhsusf_c_m109", "rhsusf_c_HEMTT_A4", "rhsusf_c_hmmwv", "rhsusf_c_rg33", "rhsusf_c_fmtv", "rhsusf_c_m113", "RHS_US_A2Port_Armor", "rhsusf_c_melb"}; | ||||||
requiredAddons[] = {"ace_javelin", "ace_rearm", "ace_refuel", "ace_repair", "rhsusf_c_weapons", "rhsusf_c_troops", "rhsusf_c_m1a1", "rhsusf_c_m1a2", "RHS_US_A2_AirImport", "rhsusf_c_m109", "rhsusf_c_HEMTT_A4", "rhsusf_c_hmmwv", "rhsusf_c_rg33", "rhsusf_c_fmtv", "rhsusf_c_m113", "RHS_US_A2Port_Armor", "rhsusf_c_melb", "ace_explosives"}; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
author = ECSTRING(common,ACETeam); | ||||||
authors[] = {"Ruthberg", "GitHawk", "BaerMitUmlaut"}; | ||||||
url = ECSTRING(main,URL); | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Superfluous, delete