Added rating settings (#5354)

* added rating settings

* moved rating to interaction

* Update fnc_canPardon.sqf

* Update stringtable.xml

* Update CfgVehicles.hpp

* Update XEH_postInit.sqf
This commit is contained in:
Christian Klemm
2017-09-07 19:38:26 +02:00
committed by jonpas
parent 22b4788891
commit 19418b824d
5 changed files with 30 additions and 1 deletions

View File

@ -7,7 +7,7 @@ class CfgVehicles {
author = ECSTRING(common,ACETeam);
category = "ACE";
displayName = CSTRING(Module_DisplayName);
function = "ACE_Interaction_fnc_moduleInteraction";
function = QFUNC(moduleInteraction);
scope = 2;
isGlobal = 1;
isSingular = 1;
@ -19,6 +19,12 @@ class CfgVehicles {
typeName = "BOOL";
defaultValue = 1;
};
class DisableNegativeRating {
displayName = CSTRING(DisableNegativeRating_DisplayName);
description = CSTRING(DisableNegativeRating_Description);
typeName = "BOOL";
defaultValue = 0;
};
};
class ModuleDescription {
description = CSTRING(Module_Description);