PLS HELP - Mission AI spamming my RPT with Error

Fubar22

New Member
All,

I am in desparate need for some help with an error that is just spamming the hell out of my arma rpt. This has to do with something in my server_updateObject.sqf file and the server_cleanup.fsm. I am running Epoch 1.0.3.1

Here is the error from the rpt:

if (_object getVariable "Mission" == 1) exitWith {};

if (!_parachuteWest>
1:57:52 Error position: <== 1) exitWith {};

if (!_parachuteWest>
1:57:52 Error Generic error in expression
1:57:52 File z\addons\dayz_server\compile\server_updateObject.sqf, line 30
1:57:52 Error in expression <
};

if (_object getVariable "Mission" == 1) exitWith {};

if (!_parachuteWest>
1:57:52 Error position: <== 1) exitWith {};


if (!_parachuteWest>
1:57:52 Error Generic error in expression
1:57:52 File z\addons\dayz_server\compile\server_updateObject.sqf, line 30
1:57:52 Error in expression <& (vehicle _x getVariable ["Mission",0] != 1) && !(vehicle _x in PVDZE_serverObj>
1:57:52 Error position: <!= 1) && !(vehicle _x in PVDZE_serverObj>



Here is the code from my server_updateObject.sqf.

//ADDED FOR AI MISSION
if (_object getVariable "Mission" == 1) exitWith {};


if (!_parachuteWest and !(locked _object)) then {
//if (_objectID == "0" && _uid == "0") then
if (_objectID == "0" && _uid == "0" && (vehicle _object getVariable ["Mission",0] != 1)) then
{
_object_position = getPosATL _object;
_isNotOk = true;
};
};



Here is the code from my server_cleanup.fsm

name = "group_cleanup";
init = /*%FSM<STATEINIT""">*/"//Check for hackers" \n
" {" \n
" if(vehicle _x != _x && (vehicle _x getVariable [""Mission"",0] != 1) && !(vehicle _x in PVDZE_serverObjectMonitor) && (isPlayer _x) && !((typeOf vehicle _x) in DZE_safeVehicle)) then {" \n
" diag_log (""CLEANUP: KILLING A HACKER "" + (name _x) + "" "" + str(_x) + "" IN "" + (typeOf vehicle _x));" \n
" (vehicle _x) setDamage 1;" \n
" _x setDamage 1;" \n
" };" \n



PLEASE HELP!!!
 
Back
Top