Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Krypto-Limit
  • Loading branch information
Ignatz-HeMan committed Jun 19, 2020
1 parent b8cab7b commit 5accbd0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/epoch_server/init/server_securityfunctions.sqf
Expand Up @@ -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;
Expand Down
Expand Up @@ -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"};
};
Expand Down

0 comments on commit 5accbd0

Please sign in to comment.