I get this alot ! in my rpt log and its seems to be doing alot of damage to my server causing crashes , Does anyone know what this means? ill post my actual server_functions.sqf when i can, but this is what im getting .
Thank you!!
12:32:32 Server: Object 20:96 not found (message 132)
12:32:32 Server: Object 13:257 not found (message 132)
12:32:32 Error in expression <x getVariable ["permaLoot",false];
if (!_keep) then {
_created = _x getVariable >
12:32:32 Error position: <_keep) then {
_created = _x getVariable >
12:32:32 Error Undefined variable in expression: _keep
12:32:32 File z\addons\dayz_server\init\server_functions.sqf, line 837
This is the server_fuctions.sqf
_missionObjs = allMissionObjects "ReammoBox";
_delQty = 0;
_dateNow = (DateToNumber date);
{ THIS IS LINE (837) o.O
_keep = _x getVariable ["permaLoot",false];
if (!_keep) then {
_created = _x getVariable ["created",-0.1];
if (_created == -0.1) then {
_x setVariable ["created",_dateNow,false];
_created = _dateNow;
Also i get this when a player commits suicide, sometimes killing them, sometimes giving them an infinit timer, even with ammo.
diag_log _loc_message;
if(DZE_DeathMsgGlobal) then {
[nil, nil, rs>
19:20:42 Error position: <DZE_DeathMsgGlobal) then {
[nil, nil, rs>
19:20:42 Error Undefined variable in expression: dze_deathmsgglobal
19:20:42 File z\addons\dayz_server\compile\server_playerDied.sqf, line 36
19:20:42 "PDEATH: Player Died 238965734"
19:20:42 WARNING: Function 'name' - AngryIrishGamer is dead
And this is the server_playerdied.sqf
else
{
_message = format["%1 was killed by %2 with weapon %3 from %4m",_victimName, _killerName, _weapon, _distance];
_loc_message = format["PKILL: %1 was killed by %2 with weapon %3 from %4m", _victimName, _killerName, _weapon, _distance];
};
diag_log _loc_message;
if(DZE_DeathMsgGlobal) then { <----- LINE 36
[nil, nil, rspawn, [_killer, _message], { (_this select 0) globalChat (_this select 1) }] call RE;
};
/* needs customRemoteMessage
if(DZE_DeathMsgGlobal) then {
customRemoteMessage = ['globalChat', _message, _killer];
publicVariable "customRemoteMessage";
Any help would be great!!!