mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19418b824d
* added rating settings * moved rating to interaction * Update fnc_canPardon.sqf * Update stringtable.xml * Update CfgVehicles.hpp * Update XEH_postInit.sqf
23 lines
716 B
C++
23 lines
716 B
C++
|
|
class ACE_Settings {
|
|
class GVAR(enableTeamManagement) {
|
|
displayName = CSTRING(EnableTeamManagement_DisplayName);
|
|
description = CSTRING(EnableTeamManagement_Description);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
};
|
|
class GVAR(enableMagazinePassing) {
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(PassMagazineSetting);
|
|
category = ECSTRING(interact_menu,Category_InteractionMenu);
|
|
};
|
|
class GVAR(disableNegativeRating) {
|
|
displayName = CSTRING(DisableNegativeRating_DisplayName);
|
|
description = CSTRING(DisableNegativeRating_Description);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
};
|
|
};
|