diff --git a/A3-Antistasi/onPlayerRespawn.sqf b/A3-Antistasi/onPlayerRespawn.sqf index 59f13df338..4d07211f41 100644 --- a/A3-Antistasi/onPlayerRespawn.sqf +++ b/A3-Antistasi/onPlayerRespawn.sqf @@ -24,11 +24,10 @@ if (side group player == teamPlayer) then _score = _oldUnit getVariable ["score",0]; _punish = _oldUnit getVariable ["punish",0]; _moneyX = _oldUnit getVariable ["moneyX",0]; - _moneyX = round (_moneyX - (_moneyX * 0.1)); + _moneyX = round (_moneyX - (_moneyX * 0.15)); _eligible = _oldUnit getVariable ["eligible",true]; _rankX = _oldUnit getVariable ["rankX","PRIVATE"]; - _moneyX = round (_moneyX - (_moneyX * 0.05)); if (_moneyX < 0) then {_moneyX = 0}; _newUnit setVariable ["score",_score -1,true]; @@ -172,7 +171,7 @@ if (side group player == teamPlayer) then deleteVehicle (_this select 6); if (_typeX == "Put") then { - if (player distance petros < 10) then + if (player distance petros < 10) then { [player, 20, 0.34] remoteExec ["A3A_fnc_punishment",player]; }; @@ -181,7 +180,7 @@ if (side group player == teamPlayer) then }; }; player addEventHandler ["Fired", _firedHandlerTk]; - if (hasACE) then + if (hasACE) then { ["ace_firedPlayer", _firedHandlerTk ] call CBA_fnc_addEventHandler; };