Krypto-Limit

This commit is contained in:
He-Man 2020-06-19 18:00:10 +02:00
parent b8cab7bcfc
commit 5accbd019f
2 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,7 @@ _cfg_remoteExecClient = (_config >> "remoteExecClient");
_remoteExecClient_NAMES = [_cfg_remoteExecClient, "functions", []] call EPOCH_fnc_returnConfigEntry;
_cfg_limits = (_config >> "limits");
_skn_playerCryptoLimit = [_cfg_limits, "playerCrypto", 250000] call EPOCH_fnc_returnConfigEntry;
_skn_playerCryptoLimit = [_cfg_limits, "playerCrypto", 1000000] call EPOCH_fnc_returnConfigEntry;
_cfg_learning = (_config >> "learning");
_skn_trustedUsers = [_cfg_learning,"trustedUsers",[]] call EPOCH_fnc_returnConfigEntry;

View File

@ -16,6 +16,11 @@ class CfgSecConf
{
debug = "false";
class limits
{
playerCrypto = 1000000; // Players with more than this amount get automatically banned
};
class vehicles {
safeVehicles[] = {"I_UAV_01_F","B_Heli_Transport_01_F","Steerable_Parachute_F","NonSteerable_Parachute_F","Land_Camping_Light_F","container_epoch"};
};