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

Racks - Add Use to Intercom-Radios and Increase access on MRAPs #1271

Merged
merged 11 commits into from
Sep 25, 2023
Prev Previous commit
Next Next commit
Add Rack access to AAF MRAP Commanders
mrschick committed Aug 9, 2023
commit 69b947c699172355c07cda40bb2de491dcfd45dc
4 changes: 2 additions & 2 deletions addons/sys_rack/CfgVehicles.hpp
Original file line number Diff line number Diff line change
@@ -94,15 +94,15 @@ class CfgVehicles {
displayName = CSTRING(dashUpper); // Name is displayed in the interaction menu.
shortName = CSTRING(dashUpperShort);
componentName = "ACRE_VRC110";
allowedPositions[] = {"driver", {"cargo", 0}}; // Who has access "inside" - anyone inside, "external" - provides access upto 10m away, "driver", "gunner", "copilot", "commander"
allowedPositions[] = {"driver", {"cargo", 0}, "commander"}; // Who has access "inside" - anyone inside, "external" - provides access upto 10m away, "driver", "gunner", "copilot", "commander"
isRadioRemovable = 1;
intercom[] = {"intercom_1"};
};
class Rack_2 {
displayName = CSTRING(dashLower); // If you have multiple racks a text label helps identify the particular rack.
shortName = CSTRING(dashLowerShort);
componentName = "ACRE_VRC103";
allowedPositions[] = {"driver", {"cargo", 0}};
allowedPositions[] = {"driver", {"cargo", 0}, "commander"};
mountedRadio = "ACRE_PRC117F";
intercom[] = {"intercom_1"};
};