Jump to content

[Release] Wicked AI 2.2.3 [1.0.6+]


JasonTM

Recommended Posts

4 hours ago, JasonTM said:

I think you just use


["kill"],

 

This bug has been around for years, I found the simplest way to fix it was to remove those files except for these lines:

I have been running this fix on my server for about a year and a half, no difference at all.

Can't get RPT errors if you remove the code causing RPT errors :)

 

bandit_behaviour.sqf:

private ["_group"];

_group = _this select 0;

_group setCombatMode ai_bandit_combatmode;
_group setBehaviour ai_bandit_behaviour;

hero_behaviour.sqf:

private ["_group"];

_group = _this select 0;

_group setCombatMode ai_hero_combatmode;
_group setBehaviour ai_hero_behaviour;

 

Link to comment
Share on other sites

13 hours ago, salival said:

This bug has been around for years, I found the simplest way to fix it was to remove those files except for these lines:

I have been running this fix on my server for about a year and a half, no difference at all.

Can't get RPT errors if you remove the code causing RPT errors :)

 

bandit_behaviour.sqf:


private ["_group"];

_group = _this select 0;

_group setCombatMode ai_bandit_combatmode;
_group setBehaviour ai_bandit_behaviour;

hero_behaviour.sqf:


private ["_group"];

_group = _this select 0;

_group setCombatMode ai_hero_combatmode;
_group setBehaviour ai_hero_behaviour;

 

@salival Thanks for the response. So, if I understand correctly, you just empty those files to only have the code in them that you quoted above?

Link to comment
Share on other sites

18 hours ago, JasonTM said:

I think you just use


["kill"],

 

Thanks @JasonTM I know you can use kill as well but, using that meant that some missions for me weren't clearing even though all the AI were killed. I suspect it had something to do with reinforcements if the heli from the para drop isn't taken out as well. Even when it despawns....missions still wouldn't clear. So, I saw in one of the files  ["kill",wai_kill_percent] as an example so, tried that. Anyway...it didn't work. Just meant that you had to kill all the AI. Also, the error still persists even with ["kill"] or ["crate"] so, I'm trying salival's fix above. Fingers crossed! :)

Link to comment
Share on other sites

4 minutes ago, JasonTM said:

Before I modified the files I noticed it on the President's mission. Was it happening on missions without the paratroopers?

It's been a long time since I've seen it but I'm pretty sure it's related to paratroopers

Link to comment
Share on other sites

Well with @salival's fix the error seems to be cleared and with the win condition changed to crate on all but president, mayor and the patrols the missions seem to be completing fine as well. 

Don't want to speak too soon though as not all missions will have run yet so, will update this thread in a couple of days if still good or, sooner if not... 

Thanks for help guys. Pretty sure it's the pilot in the heli reinforcements... 

Link to comment
Share on other sites

hmm, maybe I spoke a little too soon... Still getting the occasional mission not clearing. Nowhere near as bad as before I changed the win condition to crate but, every now and then, they get to the crate and it's still empty and the mission won't mark as complete.

Anybody else getting this?

Link to comment
Share on other sites

2 hours ago, ReDBaroN said:

hmm, maybe I spoke a little too soon... Still getting the occasional mission not clearing. Nowhere near as bad as before I changed the win condition to crate but, every now and then, they get to the crate and it's still empty and the mission won't mark as complete.

Anybody else getting this?

I don't use this release but I have no issues with missions not clearing, Any RPT errors anywhere?

Link to comment
Share on other sites

no rpt errors apart from one related to infiSTAR. I know it's infiSTAR because I'm having to use an old version of infi due to people getting stuck loading in with "spawning items" on newer versions. But, every time I try the later versions out, the rpt error clears but, the getting stuck problem returns so, I have to revert. The error is this:
 

17:02:47 Error in expression <is_fnc_halo_soundLoop = time;
playsound "BIS_HALO_Flapping";

bis_fnc_halo_actio>
17:02:47   Error position: <"BIS_HALO_Flapping";

bis_fnc_halo_actio>
17:02:47   Error Missing ;
17:02:47 File z\addons\dayz_code\compile\BIS_fnc\fn_halo.sqf, line 70

Spams twice at server startup only. Do you think it could be related?

Link to comment
Share on other sites

12 hours ago, SKS.Goliath said:

How can you adjust this ?

Hello,

the flexible way IMO (for universal usage in your dev work) is to adapt remote msg script from ZSC and apply it wherever you need. This way you can use multiple types of remote msgs (private, global, hint, titleCut, titleText, dayz_rollingMessages and dynamic text).
For example for WAI you need to open "mission_winorfail.sqf" file and look for:

// mission start
if (wai_radio_announce) then {
  RemoteMessage = ["radio","[RADIO] " + _msgstart];
  publicVariable "RemoteMessage";
} // ...

// mission win
if (wai_radio_announce) then {
  RemoteMessage = ["radio","[RADIO] " + _msgwin];
  publicVariable "RemoteMessage";
} // ...

// mission fail
if (wai_radio_announce) then {
  RemoteMessage = ["radio","[RADIO] " + _msglose];
  publicVariable "RemoteMessage";
} // ...

RemoteMessage public EH (resp. remote msg fnc) takes 2 parameters: (1) type of msg; (2) msg text. If you want to change default WAI settings for msgs, just do:

// for example for mission fail
if (wai_radio_announce) then {
  RemoteMessage = ["rollingMessages", "Any message text"];
  publicVariable "RemoteMessage";
} // ...

If you will use the file from ZSC (for link look above...), stay focused - for some types of msgs second parameter '_message' is an array (private, dynamic text)!
You can adjust remote msgs file or Wai winorfail file to fit your needs (the same is valid for example for DZAI - but you will need to do more work, because you need to unify remote msg public EH's).

Hope it helps,

PS: Check this link from this forum.

Cheers

 

Link to comment
Share on other sites

7 hours ago, iben said:

Hello,

the flexible way IMO (for universal usage in your dev work) is to adapt remote msg script from ZSC and apply it wherever you need. This way you can use multiple types of remote msgs (private, global, hint, titleCut, titleText, dayz_rollingMessages and dynamic text).
For example for WAI you need to open "mission_winorfail.sqf" file and look for:


// mission start
if (wai_radio_announce) then {
  RemoteMessage = ["radio","[RADIO] " + _msgstart];
  publicVariable "RemoteMessage";
} // ...

// mission win
if (wai_radio_announce) then {
  RemoteMessage = ["radio","[RADIO] " + _msgwin];
  publicVariable "RemoteMessage";
} // ...

// mission fail
if (wai_radio_announce) then {
  RemoteMessage = ["radio","[RADIO] " + _msglose];
  publicVariable "RemoteMessage";
} // ...

RemoteMessage public EH (resp. remote msg fnc) takes 2 parameters: (1) type of msg; (2) msg text. If you want to change default WAI settings for msgs, just do:


// for example for mission fail
if (wai_radio_announce) then {
  RemoteMessage = ["rollingMessages", "Any message text"];
  publicVariable "RemoteMessage";
} // ...

If you will use the file from ZSC (for link look above...), stay focused - for some types of msgs second parameter '_message' is an array (private, dynamic text)!
You can adjust remote msgs file or Wai winorfail file to fit your needs (the same is valid for example for DZAI - but you will need to do more work, because you need to unify remote msg public EH's).

Hope it helps,

PS: Check this link from this forum.

Cheers

 

hello can you help me with it?

here is my mission_winorfail.sqf

Spoiler

if(isServer) then {

    private ["_player_near","_map_marker","_node","_max_ai","_timeout_time","_currenttime","_starttime","_msglose","_msgwin","_msgstart","_objectives","_crate","_marker","_in_range","_objectivetarget","_position","_type","_complete","_timeout","_mission","_killpercent","_delete_mines","_cleanunits","_clearmission","_baseclean"];

    _mission    = (_this select 0) select 0;
    _crate        = (_this select 0) select 1;
    _type        = (_this select 1) select 0;
    _baseclean    = _this select 2;
    _msgstart    = _this select 3;
    _msgwin        = _this select 4;
    _msglose    = _this select 5;

    _position        = position _crate;
    _timeout         = false;
    _player_near    = false;
    _complete        = false;
    _starttime         = time;
    _start             = false;
    _timeout_time    = ((wai_mission_timeout select 0) + random((wai_mission_timeout select 1) - (wai_mission_timeout select 0)));
    _max_ai            = (wai_mission_data select _mission) select 0;
    _killpercent     = _max_ai - (_max_ai * (wai_kill_percent / 100));
    _mission_units    = [];

    if(_type == "patrol") then {
        _start = true
    };

    {
        
        if (_x getVariable ["mission", nil] == _mission) then {
            _mission_units set [count _mission_units, _x];
        };

    } count allUnits;
    
    if (wai_radio_announce) then {
        RemoteMessage = ["radio","[RADIO] " + _msgstart];
        publicVariable "RemoteMessage";
    } else {
        [nil,nil,rTitleText,_msgstart,"PLAIN",10] call RE;
    };

    clearWeaponCargoGlobal _crate;
    clearMagazineCargoGlobal _crate;

    _crate setVariable ["ObjectID","1",true];
    _crate setVariable ["permaLoot",true];

    _crate addEventHandler ["HandleDamage", {}];
    
    markerready = true;

    while {!_start && !_timeout} do {

        uiSleep 1;
        _currenttime = time;

        {
            if((isPlayer _x) && (_x distance _position <= 1500)) then {
                _start = true
            };

        } count playableUnits;

        if (_currenttime - _starttime >= _timeout_time) then {
            _timeout = true;
        };

    };

    {    
        _x enableAI "TARGET";
        _x enableAI "AUTOTARGET";
        _x enableAI "MOVE";
        _x enableAI "ANIM";
        _x enableAI "FSM";
    } count _mission_units;

    while {!_timeout && !_complete} do {

        uiSleep 1;
        _currenttime = time;
        {
            if((isPlayer _x) && (_x distance _position <= wai_timeout_distance)) then {
                _player_near = true;
            };
            
        } count playableUnits;

        if (_currenttime - _starttime >= _timeout_time && !_player_near) then {
            _timeout = true;
        };
        
        call {

            if (_type == "crate") exitWith {

                if(wai_kill_percent == 0) then {

                    {
                        if((isPlayer _x) && (_x distance _position <= 20)) then {
                            _complete = true;
                        };
                    } count playableUnits;

                } else {

                    if(((wai_mission_data select _mission) select 0) <= _killpercent) then {
                        {
                            if((isPlayer _x) && (_x distance _position <= 20)) then {
                                _complete = true;
                            };
                        } count playableUnits;
                    };

                };

            };

            if (_type == "kill") exitWith {
                if(((wai_mission_data select _mission) select 0) == 0) then {
                    _complete = true;
                };
            };

            if (_type == "patrol") exitWith {
                if(((wai_mission_data select _mission) select 0) == 0) then {
                    _complete = true;
                };
            };
            
            if (_type == "assassinate") exitWith {
                _objectivetarget = (_this select 1) select 1;
                {
                    _complete = true;
                    if (alive _x) exitWith {_complete = false;};
                } count units _objectivetarget;
            };

            if (_type == "resource") exitWith {
                _node         = (_this select 1) select 1;
                _resource     = _node getVariable ["Resource", 0];
                if (_resource == 0) then {
                    {
                        if((isPlayer _x) && (_x distance _position <= 80)) then {
                            _complete = true;
                        } else {
                            _timeout = true;
                        };
                    } count playableUnits;
                };
            };
        };
    };

    if (_complete) then {

        if (typeOf(_crate) in (crates_large + crates_medium + crates_small)) then {

            if (wai_crates_smoke && sunOrMoon == 1) then {
                _marker = "smokeShellPurple" createVehicle getPosATL _crate;
                _marker setPosATL (getPosATL _crate);
                _marker attachTo [_crate,[0,0,0]];
            };

            if (wai_crates_flares && sunOrMoon != 1) then {
                _marker = "RoadFlare" createVehicle getPosATL _crate;
                _marker setPosATL (getPosATL _crate);
                _marker attachTo [_crate, [0,0,0]];
                
                PVDZ_obj_RoadFlare = [_marker,0];
                publicVariable "PVDZ_obj_RoadFlare";

            };

        };

        _delete_mines = ((wai_mission_data select _mission) select 2);

        if(count _delete_mines > 0) then {
        
            {
                if(typeName _x == "ARRAY") then {
                
                    {
                        deleteVehicle _x;
                    } count _x;
                
                } else {

                    deleteVehicle _x;
                    
                };
                
            } forEach _delete_mines;
            
        };
        
        if (wai_radio_announce) then {
            RemoteMessage = ["radio","[RADIO] " + _msgwin];
            publicVariable "RemoteMessage";
        } else {
            [nil,nil,rTitleText,_msgwin,"PLAIN",10] call RE;
        };
        
        if (wai_clean_mission) then {

            [_position,_baseclean] spawn {
                private ["_pos","_clean","_finish_time","_cleaned","_playernear","_currenttime"];
                _pos = _this select 0;
                _clean = _this select 1;
                _finish_time = time;
                _cleaned = false;
                while {!_cleaned} do {
                    _playernear = false;

                    {
                        if ((isPlayer _x) && (_x distance _pos < 400)) exitWith { _playernear = true };
                    } count playableUnits;    

                    _currenttime = time;

                    if ((_currenttime - _finish_time >= wai_clean_mission_time) && !_playernear) then {
                        {
                            if (typeName _x == "ARRAY") then {
                                {
                                    if !(_x isKindOf "AllVehicles") then {deleteVehicle _x;};
                                } count _x;
                            } else {
                                if !(_x isKindOf "AllVehicles") then {deleteVehicle _x;};
                            };
                        } forEach _clean;
                        _cleaned = true;
                    };
                    uiSleep 1;
                };
            };
        };
    };
    
    if (_timeout) then {

        {
        
            if (_x getVariable ["mission", nil] == _mission) then {
            
                if (alive _x) then {

                    _cleanunits = _x getVariable ["missionclean",nil];
        
                    if (!isNil "_cleanunits") then {
                
                        call {
                            if(_cleanunits == "ground")     exitWith { ai_ground_units = (ai_ground_units -1); };
                            if(_cleanunits == "air")         exitWith { ai_air_units = (ai_air_units -1); };
                            if(_cleanunits == "vehicle")     exitWith { ai_vehicle_units = (ai_vehicle_units -1); };
                            if(_cleanunits == "static")     exitWith { ai_emplacement_units = (ai_emplacement_units -1); };
                        };
                    };
                };
                
                deleteVehicle _x;
            };

        } count allUnits + vehicles + allDead;
        
        {
            if(typeName _x == "ARRAY") then {
                {
                    deleteVehicle _x;
                } count _x;
            } else {
                deleteVehicle _x;
            };            
        } forEach _baseclean + ((wai_mission_data select _mission) select 2) + [_crate];

        if (wai_radio_announce) then {
            RemoteMessage = ["radio","[RADIO] " + _msglose];
            publicVariable "RemoteMessage";
        } else {
            [nil,nil,rTitleText,_msglose,"PLAIN",10] call RE;
        };
        
    };
    
    _map_marker = (wai_mission_data select _mission) select 1;
    wai_mission_markers = wai_mission_markers - [(_map_marker + str(_mission))];
    wai_mission_data set [_mission, -1];
    _complete

};

 

and remote_message

Spoiler

fnc_remote_message = {
    private ["_type","_message"];

    _type = _this select 0;
    _message = _this select 1;

    call {
        if (_type == "radio") exitWith {
            if (player hasWeapon "ItemRadio") then {
            if (player getVariable["radiostate",true]) then {
                    systemChat _message;
                    playSound "Radio_Message_Sound";
                };
            };
        };
        if (_type == "private")            exitWith {if(getPlayerUID player == (_message select 0)) then {systemChat (_message select 1);};};
        if (_type == "global")            exitWith {systemChat _message;};
        if (_type == "hint")             exitWith {hint _message;};
        if (_type == "titleCut")         exitWith {titleCut [_message,"PLAIN DOWN",3];};
        if (_type == "titleText")         exitWith {titleText [_message, "PLAIN DOWN"]; titleFadeOut 10;};
        if (_type == "rollingMessages") exitWith {_message call dayz_rollingMessages;};
        if (_type == "dynamic_text")    exitWith {
            [
                format["<t size='0.40' color='#FFFFFF' align='center'>%1</t><br /><t size='0.70' color='#d5a040' align='center'>%2</t>",_message select 0,_message select 1],
                0,
                0,
                10,
                0.5
            ] spawn BIS_fnc_dynamicText;
        };
    };
};

"RemoteMessage" addPublicVariableEventHandler {(_this select 1) spawn fnc_remote_message;};

 

Link to comment
Share on other sites

I added in vehicle patrols to some missions but it seems to not be working correctly. The vehicle runs into the mines and gets blown up or disabled, or it wont spawn multiple vehicles to patrol the mission. Is there a way to fix this? here is one of my missions for example- (mayors mansion)

if(isServer) then {

    private            ["_room","_complete","_mayor_himself","_crate_type","_mission","_position","_crate","_baserunover","_mayor"];

    // Get mission number, important we do this early
    _mission         = count wai_mission_data -1;

    _position        = [40] call find_position;
    [_mission,_position,"Hard","Mayors Mansion","MainHero",true] call mission_init;
    
    diag_log         format["WAI: [Mission:[Hero] Mayors Mansion]: Starting... %1",_position];

    //Setup the crate
    _crate_type     = crates_large call BIS_fnc_selectRandom;
    _crate             = createVehicle ["BAF_VehicleBox",[(_position select 0),(_position select 1),0], [], 0, "CAN_COLLIDE"];
    
    //Mayors Mansion
    _baserunover     = createVehicle ["Land_A_Villa_EP1",[(_position select 0), (_position select 1),0],[], 0, "CAN_COLLIDE"];
    _baserunover     setVectorUp surfaceNormal position _baserunover;

    //Troops
    [[_position select 0,_position select 1,0],7,"Hard",["Random","AT"],4,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    [[_position select 0,_position select 1,0],4,"Hard","Random",4,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    [[_position select 0,_position select 1,0],4,"Hard","Random",4,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    [[_position select 0,_position select 1,0],6,"Hard",["Random","AT"],4,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    [[_position select 0,_position select 1,0],1,"Medium",["Random","AT"],3,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    [[_position select 0,_position select 1,0],1,"Medium",["Random","AA"],3,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    [[_position select 0,_position select 1,0],1,"Medium",["Random","AA"],3,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    [[_position select 0,_position select 1,0],1,"Medium",["Random","AA"],3,"Random","Bandit","Random","Bandit",_mission] call spawn_group;
    
    //Humvee Patrol
    [[(_position select 0) + 100, _position select 1, 0],[(_position select 0) + 100, _position select 1, 0],50,2,"BTR90","Hard","Bandit","Bandit",_mission] call vehicle_patrol;
    [[(_position select 0) + 100, _position select 1, 0],[(_position select 0) + 100, _position select 2, 0],50,2,"AAV","Hard","Bandit","Bandit",_mission] call vehicle_patrol;
    [[(_position select 0) + 100, _position select 1, 0],[(_position select 0) + 100, _position select 3, 0],50,2,"T90","Hard","Bandit","Bandit",_mission] call vehicle_patrol;

    //The Mayor Himself
    _mayor = [_position,1,"Hard","Random",4,"Random","Special","Random",["Bandit",500],_mission] call spawn_group;
    _mayor_himself = (units _mayor) select 0;
    
    //Put the Mayor in his room
    _room = (6 + ceil(random(3)));
    _mayor_himself disableAI "MOVE";
    _mayor_himself setPos (_baserunover buildingPos _room);
    
    //Let him move once player is near
    _mayor_himself spawn {
        private ["_mayor","_player_near"];
        _mayor = _this;
        _player_near = false;
        waitUntil {
            {
                if (isPlayer _x && (_x distance (position _mayor) < 20)) then { _player_near = true; };
            } count playableUnits;
            sleep .1;
            (_player_near)
        };
        _mayor enableAI "MOVE";
    };

    //Static mounted guns
    [[
        [(_position select 0) - 15, (_position select 1) + 15, 8],
        [(_position select 0) + 15, (_position select 1) - 15, 8]
    ],"M2StaticMG","Easy","Bandit","Bandit",1,2,"Random","Random",_mission] call spawn_static;

    _complete = [
        [_mission,_crate],        // mission number and crate
        ["assassinate",_mayor], // ["crate"], or ["kill"], or ["assassinate", _unitGroup],
        [_baserunover],         // cleanup objects
        "The Mayor has gone rogue, go take him and his bandit task force out to claim the rewards!",    // mission announcement
        "The rogue mayor has been taken out, who will be the next Mayor of Cherno?",                        // mission success
        "Survivors were unable to capture the mansion, time is up"                                        // mission fail
    ] call mission_winorfail;

    if(_complete) then {
        [_crate,85,9,65,9] call dynamic_crate;
    };

    diag_log format["WAI: [Mission:[Hero] Mayors Mansion]: Ended at %1",_position];

    h_missionsrunning = h_missionsrunning - 1;
};

 

Link to comment
Share on other sites

Ok, so I am getting a few errors with the latest WAI that you can download. Here is m RPT. Mostly seeing ai dying early, you will see their names repeated, also a common error that i saw, just can't remember how to fix it.  anyway, here is a copy of my RPT

Spoiler
Spoiler

=====================================================================
== D:\TCAFiles\Users\panayiotisc\43070\arma2oaserver.exe
== arma2oaserver.exe  -ip=145.239.136.45 -port=2307 "-config=SC\config.cfg" "-cfg=SC\basic.cfg" "-profiles=SC" -name=SC "-mod=@DayzOverwatch;@DayZ_Epoch;@DayZ_Epoch_Server;"
=====================================================================
Exe timestamp: 2017/08/19 06:51:59
Current time:  2017/08/26 21:43:23

Version 1.63.131129
Conflicting addon Monaro in 'holdenmonarocop\', previous definition in 'holdenmonaro\'
File nissan_350z\config.cpp, line 244: '/CfgVehicles/350zBase/Library.libTextDesc': Missing ';' prior '}'
Unsupported language English in stringtable
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</German>
        <English>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</English>
        <Italian>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Italian>
        <Spanish>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Spanish>
        <French>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</French>
        <Czech>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Czech>
        <Russian>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Russian>
        <Polish>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Polish>
        <Hungarian>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Hungarian>
    </Key>
    <Key ID="STR_VIL_AKS74UB_BS1_SHORT">
      <German>Compact assault rifle with silenced grenade launcher&lt'
Item STR_VIL_DN_BS1 listed twice
Item STR_AUTHOR_VILAS listed twice
Item STR_VIL_EASTERN listed twice
Item STR_VIL_WEAPONS listed twice
Item str_dss_10rnd_vss listed twice
Item str_dss_20rnd_vss listed twice
Item str_dn_20rnd_9x39_sp5_vss listed twice
Item str_dn_ak_107_gl_pso listed twice
Item str_dn_ak_107_kobra listed twice
Item str_dn_M40A3 listed twice
Item str_dn_rpk_74 listed twice
Item str_ep1_dn_fn_fal listed twice
Updating base class ->NonStrategic, by ca\config.bin/CfgVehicles/HouseBase/
Updating base class ->HouseBase, by ca\config.bin/CfgVehicles/Ruins/
Updating base class ->DestructionEffects, by ca\config.bin/CfgVehicles/House/DestructionEffects/
Updating base class ->FlagCarrierCore, by ca\ca_pmc\config.bin/CfgVehicles/FlagCarrier/
Updating base class ->Man, by nof_fsk\config.cpp/CfgVehicles/CAManBase/
Updating base class ->Default, by z\addons\anzio\config.bin/CfgWeapons/Rifle/
Updating base class ->BulletCore, by ca\weapons\config.bin/CfgAmmo/BulletBase/
Updating base class ->GrenadeCore, by ca\weapons\config.bin/CfgAmmo/GrenadeBase/
Updating base class ->VehicleMagazine, by ca\weapons\config.bin/CfgMagazines/14Rnd_FFAR/
Updating base class ->Default, by ca\weapons\config.bin/cfgWeapons/GrenadeLauncher/
Updating base class Default->RifleCore, by ca\weapons\config.bin/cfgWeapons/Rifle/
Updating base class ->LauncherCore, by ca\weapons\config.bin/cfgWeapons/RocketPods/
Updating base class ->RocketPods, by ca\weapons\config.bin/cfgWeapons/FFARLauncher/
Updating base class ->Bag_Base_EP1, by ca\weapons_e\ammoboxes\config.bin/cfgVehicles/US_Patrol_Pack_EP1/
Updating base class ->Bag_Base_EP1, by ca\weapons_e\ammoboxes\config.bin/cfgVehicles/US_Backpack_EP1/
Updating base class ->Bag_Base_EP1, by ca\weapons_e\ammoboxes\config.bin/cfgVehicles/CZ_Backpack_EP1/
Updating base class Man->CAManBase, by ca\characters\config.bin/CfgVehicles/Civilian/
Updating base class TalkTopics->TalkTopics, by bb_mercs_desert\config.bin/CfgVehicles/SoldierWB/TalkTopics/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_Light/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier2/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_GL/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_Officer/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_SL/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_TL/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_LAT/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_AT/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_HAT/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_AA/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_Medic/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_AR/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_MG/
Updating base class ->USMC_SoldierS_Sniper, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierS_SniperH/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierM_Marksman/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierS/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierS_Engineer/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_TL/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_R/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_Marksman/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_Corpsman/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_AR/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_GL/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_Sapper/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_AC/
Updating base class ->RU_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/RU_Soldier2/
Updating base class Soldier->MVD_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/MVD_Soldier/
Updating base class ->US_Soldier_Base_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_EP1/
Updating base class ->US_Soldier_Base_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_TL_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_Medic_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_AR_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_Marksman_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_Air_Controller_EP1/
Updating base class ->HMMWV_Base, by ca\wheeled\config.bin/CfgVehicles/HMMWV_M2/
Updating base class ->HMMWV_Base, by ca\wheeled\config.bin/CfgVehicles/HMMWV_TOW/
Updating base class ->HMMWV_Base, by ca\wheeled\config.bin/CfgVehicles/HMMWV_MK19/
Updating base class Car->SkodaBase, by ca\wheeled\config.bin/CfgVehicles/car_sedan/
Updating base class ->Pickup_PK_base, by ca\wheeled\datsun_armed\config.bin/CfgVehicles/Pickup_PK_GUE/
Updating base class ->Offroad_DSHKM_base, by ca\wheeled\hilux_armed\config.bin/CfgVehicles/Offroad_DSHKM_Gue/
Updating base class ->Offroad_DSHKM_base, by ca\wheeled\hilux_armed\config.bin/CfgVehicles/Offroad_SPG9_Gue/
Updating base class ->UH60_Base, by ca\air\config.bin/CfgVehicles/MH60S/
Updating base class ->Car, by ca\wheeled2\lada\config.bin/CfgVehicles/Lada_base/
Updating base class AKS_BASE->AK_BASE, by vilas_aks_cfg\config.cpp/cfgWeapons/AKS_74_UN_kobra/
Updating base class AK_BASE->AKS_BASE, by ca\communityconfigurationproject_e\ai_madeaks74unkobrafullysilenced\config.bin/CfgWeapons/AKS_74_UN_kobra/
Updating base class ->Mode_FullAuto, by corepatch\corepatch_ccp_68220\config.cpp/CfgWeapons/G36a/FullAuto/
Updating base class ->Mode_SemiAuto, by corepatch\corepatch_ccp_68220\config.cpp/CfgWeapons/G36a/Single/
Updating base class Small_items->ReammoBox, by dayz_equip\config.cpp/CfgVehicles/CardboardBox/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Small_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street1_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street2_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lampa_Ind_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_PowLines_Conc2L_EP1/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_2/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_3/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind_zebr/
Updating base class RscStandardDisplay->, by z\addons\dayz_code\config.bin/RscDisplayStart/
Updating base class RscShortcutButton->RscShortcutButtonMain, by z\addons\dayz_code\config.bin/RscDisplayMain/controls/CA_Exit/
Updating base class CA_IGUI_Title->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/Gear_Title/
Updating base class Available_items_Text->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/CA_ItemName/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item8/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item9/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item10/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item11/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item12/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item6/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item7/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item8/
Updating base class CA_Gear_slot_special1->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory1/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory8/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory9/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory10/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory11/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory12/
Updating base class CA_Gear_slot_item1->CA_Gear_slot_handgun, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_special1/
Updating base class RscIGUIShortcutButton->RscActiveText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/ButtonClose/
Updating base class RscText->, by z\addons\dayz_code\config.bin/RscTitles/Default/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/Mi17_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1H_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1_Base/Turrets/MainTurret/ViewOptics/
Updating base class Strategic->, by z\addons\dayz_code\config.bin/CfgVehicles/Bomb/
Updating base class HighCommand->Logic, by z\addons\dayz_code\config.bin/CfgVehicles/HighCommandSubordinate/
Updating base class NonStrategic->BuiltItems, by z\addons\dayz_code\config.bin/CfgVehicles/Fort_RazorWire/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroP/EventHandlers/
Updating base class AnimationSources->AnimationSources, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/AnimationSources/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/EventHandlers/
Updating base class BuiltItems->Generator_Base, by z\addons\dayz_code\config.bin/CfgVehicles/Generator_DZ/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/29Rnd_30mm_AGS30/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/48Rnd_40mm_MK19/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/2000Rnd_762x51_M134/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/100Rnd_127x99_M2/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/50Rnd_127x107_DSHKM/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_1300Rnd_762x51_M60/
Updating base class 100Rnd_762x51_M240->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_250Rnd_762x51/
Updating base class 6Rnd_Grenade_Camel->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_12Rnd_Grenade_Camel/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/3Rnd_GyroGrenade/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face1/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face2/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face3/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face4/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face5/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face5_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face6/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face6_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face7/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face8/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face8_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face9/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face10/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face11/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face12/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face13/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face13_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face14/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face15/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face16/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face17/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face18/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face19/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face20/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face21/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face22/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face23/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face24/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face25/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face26/
Updating base class ->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face27/
Updating base class ->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face28/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face29/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face30/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face31/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face32/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face33/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Pro_Helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Pro_Helmet_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Pro_Helmet_2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Kevlar_Helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Kevlar_Helmet_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/wdl_helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Barett/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/US_green_beret/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/US_black_beret/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Barett_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Bdu_cap/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Bdu_cap_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/b_TacticalGlasses/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/headset/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/headset_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask_helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask_red/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask_helmet2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/pilot_mask/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/pilot_mask_v/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/pilot_v/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/skull_cap/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/skull_cap2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/taliban_hat_shadow/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/dive_mask/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/BlackSun_sof_w/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/RedSun_sof_w/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/None_sof_w/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/goggles_winter/
Updating base class DropWeapon->None, by z\addons\dayz_code\config.bin/CfgActions/PutWeapon/
Updating base class DropMagazine->None, by z\addons\dayz_code\config.bin/CfgActions/PutMagazine/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_1L2/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_3I3/
Updating base class House->DZE_OpenHouse, by warehouse\config.bin/CfgVehicles/Land_Ind_Pec_03/
21:43:38 Initializing Steam server - Game Port: 2307, Steam Query Port: 2308
21:43:39 Connected to Steam servers
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:46:09 Strange convex component93 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component94 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component95 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component96 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component99 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component100 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component101 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component102 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component103 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component104 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component105 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component106 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component107 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component108 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component109 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component110 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component111 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component112 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component113 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component114 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component115 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component116 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component117 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component118 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component119 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component120 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component121 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component122 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component123 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component124 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component125 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component126 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component127 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component128 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component129 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component130 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component131 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component132 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component133 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component134 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:11 Strange convex component81 in zero_buildings\models\housev_3i3_i.p3d:geometryFire
21:46:12 ca\misc\houpacka.p3d: house, config class missing
21:46:12 ca\misc\houpacka.p3d: house, config class missing
21:46:13 ca\misc\houpacka.p3d: house, config class missing
21:46:19 "PRELOAD_ Functions\init [[<No group>:0 (FunctionsManager)],any]"
21:46:19 "MPframework inited"
21:46:19 "dayz_preloadFinished reset"
21:46:42 "<infiSTAR.de> Error loading infiSTAR DLL"
21:46:42 "<infiSTAR.de> 823351f29ac4"
21:46:42 "<infiSTAR.de> 25987d56881505aec254d9ab4ccb64eb"
21:46:42 "<infiSTAR.de> "
21:46:42 "<infiSTAR.de> Waiting for BIS_fnc_init..."
21:46:42 "Epoch detected"
21:46:42 "<infiSTAR.de> BIS_fnc_init done - AntiHack STARTING...!"
21:46:42 Warning Message: Script low_admins.sqf not found
21:46:42 Warning Message: Script normal_admins.sqf not found
21:46:42 Warning Message: Script super_admins.sqf not found
21:46:42 Warning Message: Script blacklist.sqf not found
21:46:42 "<infiSTAR.de> iproductVersion: 18-08-2017 20-45-53-v1443 | Server productVersion: ["ArmA 2 OA","ArmA2OA",163,131129] | worldName: Napf | dayz_instance: 24 | missionName: DayZ_Epoch_24"
21:46:42 "<infiSTAR.de> start: <infiSTAR.de> iproductVersion: 18-08-2017 20-45-53-v1443 | Server productVersion: ["ArmA 2 OA","ArmA2OA",163,131129] | worldName: Napf | dayz_instance: 24 | missionName: DayZ_Epoch_24"
21:46:42 "<infiSTAR.de> _fnc_RandomGen: {
_abc = ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_gen = _abc select (random ((count _abc)-1));
_arr = ['a','2','5','9','8','7','d','5','6','8','8','1','5','0','5','a','e','c','2','5','4','d','9','a','b','4','c','c','b','6','4','e','b'];
for '_i' from 0 to (8+(round(random 3))) do {_gen = _gen + str(round(random 9)) + (_arr select (random ((count _arr)-1)));};
_gen
}"
21:46:42 "<infiSTAR.de> _simple: e82543e724112270a245a91"
21:46:42 "<infiSTAR.de> _dialogIds: j643445846515942c65286455"
21:46:42 "<infiSTAR.de> _badtxts: x821755352a1b9569842d"
21:46:42 "<infiSTAR.de> _randvar1: p85392d65127b7b374c4439"
21:46:42 "<infiSTAR.de> _randvar2: p04384532848d3c684b78"
21:46:42 "<infiSTAR.de> _randvar0: r3c1134217b8e0a962444"
21:46:42 "<infiSTAR.de> _randvar3: k29592c2c6c62896e8525"
21:46:42 "<infiSTAR.de> _randvar4: k1455855c5c673d8a2824"
21:46:42 "<infiSTAR.de> _randvar5: h082476774a5d313607160647"
21:46:42 "<infiSTAR.de> _randvar6: f72352a345d2c3a78454a88"
21:46:42 "<infiSTAR.de> _randvar8: v18288a4d656918260a"
21:46:42 "<infiSTAR.de> _randvar9: k6b3539383d17418c653e6a46"
21:46:42 "<infiSTAR.de> _randvar11: g499a7b3e6c08075809850835"
21:46:42 "<infiSTAR.de> _randvar12: t25699d04422d8934854b0c"
21:46:42 "<infiSTAR.de> _randvar13: o7a45788a62757865557531"
21:46:42 "<infiSTAR.de> _randvar19: o266c557c644e2e26428c575e"
21:46:42 "<infiSTAR.de> _randvar27: d31157b15672d5a7e07"
21:46:42 "<infiSTAR.de> _randvar26: v1b34721771248604345e"
21:46:42 "<infiSTAR.de> _randvar25: y3244026b555a346455"
21:46:42 "<infiSTAR.de> _randvar31: p9d3d9b2445756b254a354a"
21:46:42 "<infiSTAR.de> _randvar33: b22443b88591e486935"
21:46:42 "<infiSTAR.de> _randvar34: m5875749c693d5865194c07"
21:46:42 "<infiSTAR.de> _randvar35: w15897d6a2995486989"
21:46:42 "<infiSTAR.de> _randvar36: w752a2a754a1d18341887"
21:46:42 "<infiSTAR.de> _randvar37: l882c455b7c258289307b1a8a"
21:46:42 "<infiSTAR.de> _randvar39: l6b826a5c146e2868888e"
21:46:42 "<infiSTAR.de> _clickOnMapTimer: u855986250c224d1639215b"
21:46:42 "<infiSTAR.de> _clickOnMapCaught: d66751b1816420c244b8447"
21:46:42 "<infiSTAR.de> _fnc_handlerandvar10: h5c726c6a24640b2482873a"
21:46:42 "<infiSTAR.de> _remark: q4c3b10524e3a384d3b35"
21:46:42 "<infiSTAR.de> _AHpos: l3c1d89384d10181e38686b"
21:46:42 "<infiSTAR.de> _loadedcheckpos: p9c7b1c425d0b7c3a6a25"
21:46:42 "<infiSTAR.de> _loadedchecktime: j9b6d783432626d4b8d65"
21:46:42 "<infiSTAR.de> _MenuChecksRunningx: l3c984b951568964b5c0c36"
21:46:42 "<infiSTAR.de> _oneachframe: y44653d1a34546b3b7894"
21:46:42 "<infiSTAR.de> _anotherloop: i445d327e062b20858c4c11"
21:46:42 "<infiSTAR.de> _clientoncetwo: o594484756c4634469451"
21:46:42 "<infiSTAR.de> _lastUnlock: l853419244b16883e4b1b9b94"
21:46:42 "<infiSTAR.de> _AdminReqCheck: b252d3125105474412a85"
21:46:42 "<infiSTAR.de> _antidupeCheckVar: h2c7d985c582e6a581c649a"
21:46:42 "<infiSTAR.de> _antiantihack1_rndvar: h6954869129858a2d3c4842"
21:46:42 "<infiSTAR.de> _antiantihack2_rndvar: t256832306555186e4a79"
21:46:42 "<infiSTAR.de> _antidupePVResVar: s59357d766938195e3b461e"
21:46:42 "<infiSTAR.de> _antidupePVCheckVar: PVAHR_0_h11665c34594d7555789678"
21:46:42 "<infiSTAR.de> _randvar10: PVAHR_0_u4e028b768d8b8c093e1e31"
21:46:43 "<infiSTAR.de> AntiHack LOADED!"
21:46:43 "<infiSTAR.de> CREATING AdminMenu"
21:46:43 "<infiSTAR.de> AdminMenu LOADED!"
21:46:43 "<infiSTAR.de> ADDING SERVERSIDE HANDLERS"
21:46:43 "<infiSTAR.de> AntiHack FULLY LOADED"
21:46:43 "Loading custom server compiles"
21:46:43 BIKE: loading version 2.8.2 ...
21:46:43 BIKE: adding bike to safe vehicle list...
21:46:45 "HIVE: Starting"
21:46:45 ["TIME SYNC: Local Time set to:",[2012,8,2,13,46],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,8,26,13,46]]
21:46:45 "HIVE: trying to get objects"
21:46:45 "HIVE: found 4 objects"
21:46:45 "HIVE: Request sent"
21:46:45 "HIVE: Streamed 4 objects"
21:46:45 "<infiSTAR.de> starting main server loop"
21:46:45 "HIVE: BENCHMARK - Server_monitor.sqf finished streaming 4 objects in 0.465988 seconds (unscheduled)"
21:46:45 "Total Number of spawn locations 11"
21:46:45 "SERVER FPS: 38  PLAYERS: 2"
21:46:45 Error in expression <
[5,5],
[9,13],
[11,11,10],
[12],
[6,6]

if (isServer) then {

>
21:46:45   Error position: <] 

if (isServer) then {

>
21:46:45   Error Missing ;
21:46:45 File z\addons\dayz_server\scripts\airpatrol.sqf, line 45
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [10923,12529.6,0] with 5 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [5008.7,4770.66,0] with 4 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [8094.76,17071.9,0] with 8 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [12885.2,5411.18,0] with 7 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [4844.76,10901.1,0] with 10 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [14187.7,7135.16,0] with 4 items."
21:46:46 "CRASHSPAWNER: Starting crash site spawner. Frequency: 25±20 min. Spawn chance: 0.75"
21:46:46 "CRASHSPAWNER: Spawning crash site (CrashSite_RU) at [4286.54,5263.18,0] with 8 items."
21:46:47 ca\misc\houpacka.p3d: house, config class missing
21:46:49 ca\misc\houpacka.p3d: house, config class missing
21:46:52 ca\misc\houpacka.p3d: house, config class missing
21:46:52 ca\misc\houpacka.p3d: house, config class missing
21:46:54 Strange convex component288 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component289 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component290 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component291 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component292 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component293 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component294 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component295 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component296 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component297 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component298 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component299 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component300 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component301 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component302 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component303 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component304 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component305 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component306 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component307 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component308 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component309 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component310 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component311 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component312 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component313 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component314 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component315 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component316 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component317 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component252 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component253 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component254 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component255 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component256 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component257 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component258 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component259 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component260 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component261 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component262 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component263 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component264 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component265 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component266 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component267 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component268 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component269 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component270 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component271 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component272 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component273 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component274 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component275 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component276 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component277 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component278 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component279 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component280 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component281 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component249 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component250 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component251 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component252 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component253 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component254 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component255 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component256 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component257 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component258 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component259 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component260 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component261 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component262 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component263 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component264 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component265 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component266 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component267 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component268 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component269 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component270 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component271 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component272 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component273 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component274 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component275 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component276 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component277 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component278 in warehouse\models\warehouse.p3d:geometryView
21:46:56 ca\misc3\wf\wf_depot.p3d: house, config class missing
21:46:56 ca\misc3\wf\wf_depot.p3d: house, config class missing
21:46:56 ca\misc3\wf\wf_depot.p3d: house, config class missing
21:47:00 ca\misc\houpacka.p3d: house, config class missing
21:47:00 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:08 ca\misc\houpacka.p3d: house, config class missing
21:47:11 ca\structures\house\housev\housev_2l_dam_ruins.p3d: house, config class missing
21:47:13 "<infiSTAR.de> CONNECTLOG: CONNECT - KRYTERION(76561198023876576)"
21:47:13 "<infiSTAR.de> Player-Log: KRYTERION(76561198023876576) - 0h 00min"
21:47:13 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGGING IN"
21:47:14 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGIN PUBLISHING, Location Wilderness [081051]"
21:47:15 "[DEBUG]: _vehLimit: -2, MaxVehicleLimit: 0, _serverVehicleCounter: 2"
21:47:15 "HIVE: Vehicle Spawn limit reached!"
21:47:15 "HIVE: Spawning # of Debris: 0"
21:47:15 "HIVE: Spawning # of Ammo Boxes: 3"
21:47:15 "HIVE: Spawning # of Veins: 50"
21:47:16 "HIVE: BENCHMARK - Server finished spawning 0 DynamicVehicles, 0 Debris, 3 SupplyCrates and 50 MineVeins in 29.312 seconds (scheduled)"
21:47:16 "EPOCH EVENTS INIT"
21:47:16 No owner
21:47:17 No owner
21:47:17 "CLEANUP: INITIALIZING Vehicle SCRIPT"
21:47:17 "WAI: AI Config File Loaded"
21:47:17 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,13,47],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,8,26,13,47]]
21:47:17 "WAI: AI Monitor Started"
21:47:17 "WAI: Initialising missions"
21:47:19 "<infiSTAR.de> CONNECTLOG: CONNECT - zambas(76561198189864193)"
21:47:19 "<infiSTAR.de> Player-Log: zambas(76561198189864193) - 0h 00min | ******ADMIN******"
21:47:19 "<infiSTAR.de> CONNECTLOG: CONNECT - __SERVER__()"
21:47:19 Server: Object 4:34 not found (message 94)
21:47:19 Server: Object 4:35 not found (message 94)
21:47:19 Server: Object 4:36 not found (message 94)
21:47:19 Server: Object 4:37 not found (message 94)
21:47:19 Server: Object 4:38 not found (message 94)
21:47:19 Server: Object 4:39 not found (message 94)
21:47:19 Server: Object 4:40 not found (message 94)
21:47:19 Server: Object 4:41 not found (message 94)
21:47:19 Server: Object 3:35 not found (message 70)
21:47:19 Server: Object 3:30 not found (message 94)
21:47:19 Server: Object 3:31 not found (message 94)
21:47:19 Server: Object 3:32 not found (message 94)
21:47:19 Server: Object 3:33 not found (message 94)
21:47:19 Server: Object 3:34 not found (message 94)
21:47:19 Server: Object 3:40 not found (message 70)
21:47:19 Server: Object 3:36 not found (message 94)
21:47:19 Server: Object 3:37 not found (message 94)
21:47:19 Server: Object 3:38 not found (message 94)
21:47:19 Server: Object 3:39 not found (message 94)
21:47:19 Server: Object 3:43 not found (message 94)
21:47:19 Server: Object 3:41 not found (message 94)
21:47:19 Server: Object 3:42 not found (message 94)
21:47:19 Server: Object 3:44 not found (message 94)
21:47:19 Server: Object 3:45 not found (message 94)
21:47:19 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGGING IN"
21:47:20 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGIN PUBLISHING, Location Wilderness [051157]"
21:47:20 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:20 "infiSTAR.de ******ADMIN-LOGIN******: zambas(76561198189864193)"
21:47:20 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:20 "<infiSTAR.de> CONNECTLOG: DISCONNECT - zambas(76561198189864193)"
21:47:20 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198189864193","zambas"]"
21:47:20 Client: Remote object 4:45 not found
21:47:20 "INFO - Player: zambas(UID:76561198189864193/CID:1) Status: CLIENT LOADED & PLAYING"
21:47:24 "<infiSTAR.de> CONNECTLOG: CONNECT - zambas(76561198189864193)"
21:47:24 Server: Object 4:72 not found (message 94)
21:47:24 Server: Object 4:73 not found (message 94)
21:47:24 Server: Object 4:74 not found (message 94)
21:47:24 Server: Object 4:75 not found (message 94)
21:47:24 Server: Object 4:76 not found (message 94)
21:47:24 Server: Object 4:77 not found (message 94)
21:47:24 Server: Object 4:78 not found (message 94)
21:47:24 Server: Object 4:79 not found (message 94)
21:47:24 Server: Object 4:80 not found (message 94)
21:47:24 Server: Object 4:81 not found (message 94)
21:47:24 Server: Object 4:82 not found (message 94)
21:47:24 Server: Object 4:83 not found (message 94)
21:47:24 Server: Object 4:84 not found (message 94)
21:47:24 Server: Object 4:85 not found (message 94)
21:47:24 Server: Object 4:86 not found (message 94)
21:47:24 Server: Object 4:87 not found (message 94)
21:47:25 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGGING IN"
21:47:25 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGIN PUBLISHING, Location Wilderness [051157]"
21:47:25 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:25 "infiSTAR.de ******ADMIN-LOGIN******: zambas(76561198189864193)"
21:47:25 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:25 "INFO - Player: zambas(UID:76561198189864193/CID:1) Status: CLIENT LOADED & PLAYING"
21:47:27 "B 1-1-C:1 (zambas) REMOTE, SafeZoneState, [0], 4"
21:47:27 "<infiSTAR.de> SAFEZONELOG: zambas(76561198189864193) -    Left SafeZone @051157"
21:47:29 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas G_o_d ON"
21:47:29 "<infiSTAR.de> AdminLog: 0h 00min | zambas G_o_d ON"
21:47:32 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas GroupIcons Activated"
21:47:32 "<infiSTAR.de> AdminLog: 0h 00min | zambas GroupIcons Activated"
21:47:34 "INFO - Player: KRYTERION(UID:76561198023876576/CID:4) Status: CLIENT LOADED & PLAYING"
21:47:34 "<infiSTAR.de> CONNECTLOG: DISCONNECT - KRYTERION(76561198023876576)"
21:47:34 "INFO - Player: KRYTERION(UID:76561198023876576/CID:4) Status: LOGGED OUT, Location Wilderness [081051]"
21:47:34 Client: Remote object 3:5 not found
21:47:34 Warning: Cleanup player - person 3:4 not found
21:47:45 Warning: looped for animation: ca\anims\characters\data\anim\sdr\mov\erc\stp\non\non\amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end.rtm differs (looped now 0)! MoveName: amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end
21:49:12 "<infiSTAR.de> CONNECTLOG: CONNECT - KRYTERION(76561198023876576)"
21:49:13 Server: Object 3:82 not found (message 94)
21:49:13 Server: Object 3:62 not found (message 70)
21:49:13 Server: Object 3:63 not found (message 94)
21:49:13 Server: Object 3:64 not found (message 94)
21:49:13 Server: Object 3:65 not found (message 94)
21:49:13 Server: Object 3:66 not found (message 94)
21:49:13 Server: Object 3:67 not found (message 94)
21:49:13 Server: Object 3:68 not found (message 94)
21:49:13 Server: Object 3:69 not found (message 94)
21:49:13 Server: Object 3:70 not found (message 94)
21:49:13 Server: Object 3:71 not found (message 94)
21:49:13 Server: Object 3:72 not found (message 94)
21:49:13 Server: Object 3:73 not found (message 94)
21:49:13 Server: Object 3:74 not found (message 94)
21:49:13 Server: Object 3:75 not found (message 94)
21:49:13 Server: Object 3:76 not found (message 94)
21:49:13 Server: Object 3:77 not found (message 94)
21:49:13 Server: Object 3:78 not found (message 94)
21:49:13 Server: Object 3:79 not found (message 94)
21:49:13 Server: Object 3:80 not found (message 94)
21:49:13 Server: Object 3:81 not found (message 94)
21:49:13 Server: Object 3:83 not found (message 94)
21:49:13 Server: Object 3:84 not found (message 94)
21:49:13 Server: Object 3:85 not found (message 94)
21:49:13 Server: Object 3:86 not found (message 94)
21:49:13 Server: Object 3:87 not found (message 94)
21:49:13 Server: Object 3:60 not found (message 94)
21:49:13 Server: Object 3:61 not found (message 94)
21:49:13 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGGING IN"
21:49:13 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGIN PUBLISHING, Location Wilderness [081051]"
21:49:13 "INFO - Player: KRYTERION(UID:76561198023876576/CID:4) Status: CLIENT LOADED & PLAYING"
21:49:15 "B 1-1-B:1 (KRYTERION) REMOTE, SafeZoneState, [0], 3"
21:49:15 "<infiSTAR.de> SAFEZONELOG: KRYTERION(76561198023876576) -    Left SafeZone @081051"
21:50:07 "B 1-1-B:1 (KRYTERION) REMOTE, SafeZoneState, [1], 3"
21:50:07 "<infiSTAR.de> SAFEZONELOG: KRYTERION(76561198023876576) -    Entered SafeZone @082050"
21:51:27 Server: Object 3:148 not found (message 94)
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemGPS into gear at trader city Lenzburg for 30,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemEtool into gear at trader city Lenzburg for 9,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemHatchet into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemKnife into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemToolbox into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemCrowbar into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemSledge into gear at trader city Lenzburg for 8,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemKeyKit into gear at trader city Lenzburg for 20,000 Coins"
21:52:13 "WAI: Mission:[Hero] Cannibal started at [10484.6,4212.71,0]"
21:52:14 "WAI: Spawned a group of 6 AI (bandit) at [10496.6,4255.21,0]"
21:52:14 "WAI: Spawned a group of 4 AI (bandit) at [10495.6,4253.71,0]"
21:52:14 trigger - unknown animation source revolved
21:52:15 "WAI: Spawned a group of 4 AI (bandit) at [10472.6,4169.71,0]"
21:52:15 "WAI: Spawned a group of 4 AI (bandit) at [10471.6,4169.71,0]"
21:52:15 No owner
21:52:15 No owner
21:52:15 No owner
21:52:15 No owner
21:52:15 Strange convex component01 in rh_m14\rh_m1stsp.p3d:geometry
21:52:15 Strange convex component07 in rh_m14\rh_m1stsp.p3d:geometry
21:52:15 Strange convex component08 in rh_m14\rh_m1stsp.p3d:geometry
21:52:15 Strange convex component12 in rh_m14\rh_m1stsp.p3d:geometry
21:52:16 "WAI: Spawned a group of 6 AI (bandit) at [10473.6,4255.21,0]"
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:53:12 "SERVER FPS: 45  PLAYERS: 2"
21:53:39 Server: Object 3:158 not found (message 94)
21:53:39 "HIVE: WRITE: "CHILD:308:24:350z_ruben:0:2883:[210,[8259.37,15472.3,-5.00679e-005]]:[]:[]:1:889621015472637:""
21:53:39 "Trader Menu: KRYTERION (76561198023876576) purchased 1x 350z_ruben into gear at trader city Lenzburg for 30,000 Coins"
21:53:39 "HIVE: WRITE: "CHILD:388:889621015472637:""
21:53:39 "CUSTOM: Selected "8""
21:53:39 "PUBLISH: KRYTERION(76561198023876576) bought 350z_ruben with ObjectUID 889621015472637"
21:53:47 "<infiSTAR.de> LockUnlockVehicle: 350z_ruben UNLOCKED @082050 [8259.37,15472.3,1.85966e-005]"
21:53:49 "HIVE: WRITE: "CHILD:305:8:[0,[8259.370117,15472.308594,1.85966e-005]]:1:""
21:53:49 "HIVE: WRITE: "CHILD:303:8:[[[],[]],[[],[]],[[],[]]]:-1:""
21:53:49 "HIVE: WRITE: "CHILD:306:8:[["motor",0],["karoserie",0],["palivo",0],["levy predni tlumic",0],["pravy predni tlumic",0],["levy zadni tlumic",0],["pravy zadni tlumic",0],["sklo predni L",0],["sklo predni P",0],["sklo predni P",0],["sklo predni L",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["glass3",0],["glass4",0]]:0:""
21:53:59 "HIVE: WRITE: "CHILD:305:8:[190.0537415,[8275.152344,15465.177734,0.00253248]]:0.996432:""
21:54:39 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12374.4,5086.36,0]]"
21:54:39 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051157([5180.32,4699.93,0.00144196]) to 123153([12374.4,5086.36,0]) | Key: any"
21:54:39 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12374.4,5086.36,0]]"
21:54:40 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12374.4,5086.36,0]"
21:54:40 "<infiSTAR.de> AdminLog: 0h 11min | Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12374.4,5086.36,0]"
21:54:40 "B 1-1-C:1 (zambas) REMOTE, SafeZoneState, [1], 4"
21:54:40 "<infiSTAR.de> SAFEZONELOG: zambas(76561198189864193) -    Entered SafeZone @123153"
21:54:41 "HIVE: WRITE: "CHILD:305:8:[232.651093,[8258.665039,15450.264648,0.000824928]]:0.98121:""
21:54:55 "HIVE: WRITE: "CHILD:305:8:[258.449188,[8242.0693359,15457.748047,0.0249739]]:0.975406:""
21:55:04 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"Mi17_Civilian_DZ",[316.928,[12369,5092.21,0]],"ItemKeyRed869"]"
21:55:04 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"Mi17_Civilian_DZ",[316.928,[12369,5092.21,0]],"ItemKeyRed869"]"
21:55:04 "Res3tting B!S effects..."
21:55:04 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned Mi17_Civilian_DZ @[316.928,[12369,5092.21,0]]"
21:55:04 "<infiSTAR.de> AdminLog: 0h 11min | zambas (76561198189864193) hivespawned Mi17_Civilian_DZ @[316.928,[12369,5092.21,0]]"
21:55:06 "HIVE: WRITE: "CHILD:305:9:[316.989044,[12368.908203,5092.16748,-0.0477448]]:1:""
21:55:06 "HIVE: WRITE: "CHILD:303:9:[[[],[]],[[],[]],[[],[]]]:-1:""
21:55:06 "HIVE: WRITE: "CHILD:306:9:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:55:06 "INFO: needUpdate_objects=[2225c100# 982796: mi_8amt.p3d]"
21:55:06 "HIVE: WRITE: "CHILD:306:9:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:55:09 "HIVE: WRITE: "CHILD:305:8:[259.801544,[8242.610352,15457.874023,0.0173826]]:0.970644:""
21:55:09 "HIVE: WRITE: "CHILD:306:8:[["motor",0],["karoserie",0],["palivo",0],["levy predni tlumic",0],["pravy predni tlumic",0],["levy zadni tlumic",0],["pravy zadni tlumic",0],["sklo predni L",0],["sklo predni P",0],["sklo predni P",0],["sklo predni L",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["glass3",0],["glass4",0]]:0:""
21:55:12 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5157.46,4822.46,0]]"
21:55:12 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 123153([12374.1,5083.19,0.00146484]) to 051156([5157.46,4822.46,0]) | Key: any"
21:55:12 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5157.46,4822.46,0]]"
21:55:12 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051156   WorldSpace: [5157.46,4822.46,0]"
21:55:12 "<infiSTAR.de> AdminLog: 0h 11min | Admin zambas(76561198189864193) teleported to   GPS: 051156   WorldSpace: [5157.46,4822.46,0]"
21:55:13 Strange convex component01 in rh_m14\rh_sc2aim.p3d:geometry
21:55:13 Strange convex component07 in rh_m14\rh_sc2aim.p3d:geometry
21:55:13 Strange convex component12 in rh_m14\rh_sc2aim.p3d:geometry
21:55:33 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"MH60S",[328.115,[5151.52,4834.53,0]],"ItemKeyYellow1146"]"
21:55:33 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"MH60S",[328.115,[5151.52,4834.53,0]],"ItemKeyYellow1146"]"
21:55:33 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned MH60S @[328.115,[5151.52,4834.53,0]]"
21:55:33 "<infiSTAR.de> AdminLog: 0h 11min | zambas (76561198189864193) hivespawned MH60S @[328.115,[5151.52,4834.53,0]]"
21:55:34 "HIVE: WRITE: "CHILD:305:10:[328.11264,[5151.522949,4834.516113,-0.026886]]:1:""
21:55:34 "HIVE: WRITE: "CHILD:303:10:[[[],[]],[[],[]],[[],[]]]:-1:""
21:55:34 "HIVE: WRITE: "CHILD:306:10:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:34 "INFO: needUpdate_objects=[314010c0# 982819: mh_60mg.p3d]"
21:55:34 "HIVE: WRITE: "CHILD:306:10:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:43 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,314010c0# 982819: mh_60mg.p3d]"
21:55:43 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,314010c0# 982819: mh_60mg.p3d]"
21:55:43 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  MH60S (characterID: 8646)  - to the database"
21:55:43 "<infiSTAR.de> AdminLog: 0h 12min | zambas saved -  MH60S (characterID: 8646)  - to the database"
21:55:43 "HIVE: WRITE: "CHILD:305:11:[328.0986328,[5151.522949,4834.516113,0.0348053]]:1:""
21:55:43 "HIVE: WRITE: "CHILD:306:11:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:43 "INFO: needUpdate_objects=[314010c0# 982819: mh_60mg.p3d]"
21:55:43 "HIVE: WRITE: "CHILD:306:11:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:49 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12363.3,5091.94,0]]"
21:55:49 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051156([5154.91,4838.98,0.00144196]) to 123153([12363.3,5091.94,0]) | Key: any"
21:55:49 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12363.3,5091.94,0]]"
21:55:50 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12363.3,5091.94,0]"
21:55:50 "<infiSTAR.de> AdminLog: 0h 12min | Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12363.3,5091.94,0]"
21:55:56 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,2225c100# 982796: mi_8amt.p3d]"
21:55:56 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,2225c100# 982796: mi_8amt.p3d]"
21:55:56 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  Mi17_Civilian_DZ (characterID: 3369)  - to the database"
21:55:56 "<infiSTAR.de> AdminLog: 0h 12min | zambas saved -  Mi17_Civilian_DZ (characterID: 3369)  - to the database"
21:55:56 "HIVE: WRITE: "CHILD:305:12:[317.0608215,[12368.907227,5092.234375,0.0538025]]:1:""
21:55:56 "HIVE: WRITE: "CHILD:306:12:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:55:56 "INFO: needUpdate_objects=[2225c100# 982796: mi_8amt.p3d]"
21:55:56 "HIVE: WRITE: "CHILD:306:12:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:56:06 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15485.2,13209.5,0]]"
21:56:06 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 123153([12362.3,5091.75,0.00151062]) to 154072([15485.2,13209.5,0]) | Key: any"
21:56:06 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15485.2,13209.5,0]]"
21:56:06 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 154072   WorldSpace: [15485.2,13209.5,0]"
21:56:06 "<infiSTAR.de> AdminLog: 0h 12min | Admin zambas(76561198189864193) teleported to   GPS: 154072   WorldSpace: [15485.2,13209.5,0]"
21:56:08 MuzzleFlashROT - unknown animation source ammoRandom
21:56:08 Server: Object 4:205 not found (message 70)
21:56:08 Server: Object 4:203 not found (message 70)
21:56:08 Server: Object 4:204 not found (message 94)
21:56:08 Server: Object 4:206 not found (message 94)
21:56:08 Server: Object 4:207 not found (message 94)
21:56:08 Server: Object 4:208 not found (message 70)
21:56:08 trigger - unknown animation source revolved
21:56:08 Server: Object 4:219 not found (message 70)
21:56:09 Server: Object 4:227 not found (message 70)
21:56:09 Server: Object 4:231 not found (message 70)
21:56:09 Server: Object 4:233 not found (message 94)
21:56:09 Server: Object 4:232 not found (message 70)
21:56:09 Server: Object 4:240 not found (message 70)
21:56:09 Server: Object 4:243 not found (message 94)
21:56:09 Server: Object 4:244 not found (message 70)
21:56:33 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"Ikarus",[309.84,[15434.1,13235.9,0]],"ItemKeyRed1298"]"
21:56:33 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"Ikarus",[309.84,[15434.1,13235.9,0]],"ItemKeyRed1298"]"
21:56:33 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned Ikarus @[309.84,[15434.1,13235.9,0]]"
21:56:33 "<infiSTAR.de> AdminLog: 0h 12min | zambas (76561198189864193) hivespawned Ikarus @[309.84,[15434.1,13235.9,0]]"
21:56:34 "HIVE: WRITE: "CHILD:305:13:[309.874695,[15434.223633,13235.99707,-0.0228767]]:1:""
21:56:34 "HIVE: WRITE: "CHILD:303:13:[[[],[]],[[],[]],[[],[]]]:-1:""
21:56:34 "HIVE: WRITE: "CHILD:306:13:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:34 "INFO: needUpdate_objects=[30ff50c0# 982920: ikarus.p3d]"
21:56:34 "HIVE: WRITE: "CHILD:306:13:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:39 "WAI: [Mission:[Hero] Ural Attack]: Starting... [8531.94,7159.58,0]"
21:56:39 "WAI: Spawned a group of 4 AI (Bandit) at [8531.94,7159.58,0]"
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:39 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,30ff50c0# 982920: ikarus.p3d]"
21:56:39 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,30ff50c0# 982920: ikarus.p3d]"
21:56:39 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  Ikarus (characterID: 3798)  - to the database"
21:56:39 "<infiSTAR.de> AdminLog: 0h 13min | zambas saved -  Ikarus (characterID: 3798)  - to the database"
21:56:39 "WAI: Spawned a group of 4 AI (Bandit) at [8531.94,7159.58,0]"
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:40 "HIVE: WRITE: "CHILD:305:14:[310.0206909,[15434.256836,13236.0302734,0.0348883]]:1:""
21:56:40 "HIVE: WRITE: "CHILD:306:14:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:40 "INFO: needUpdate_objects=[30ff50c0# 982920: ikarus.p3d]"
21:56:40 "HIVE: WRITE: "CHILD:306:14:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:40 "WAI: Spawned a group of 4 AI (Bandit) at [8531.94,7159.58,0]"
21:56:49 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[10392.3,8284.07,0]]"
21:56:49 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 154072([15436.9,13227.4,0.00143433]) to 103121([10392.3,8284.07,0]) | Key: any"
21:56:49 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[10392.3,8284.07,0]]"
21:56:49 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 103121   WorldSpace: [10392.3,8284.07,0]"
21:56:49 "<infiSTAR.de> AdminLog: 0h 13min | Admin zambas(76561198189864193) teleported to   GPS: 103121   WorldSpace: [10392.3,8284.07,0]"
21:57:16 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Pink",[283.942,[10388.4,8253.71,0]],"ItemKeyBlack356"]"
21:57:16 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Pink",[283.942,[10388.4,8253.71,0]],"ItemKeyBlack356"]"
21:57:16 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned SUV_Pink @[283.942,[10388.4,8253.71,0]]"
21:57:16 "<infiSTAR.de> AdminLog: 0h 13min | zambas (76561198189864193) hivespawned SUV_Pink @[283.942,[10388.4,8253.71,0]]"
21:57:18 "HIVE: WRITE: "CHILD:305:15:[284.0773621,[10388.375977,8253.672852,0.00376129]]:1:""
21:57:18 "HIVE: WRITE: "CHILD:303:15:[[[],[]],[[],[]],[[],[]]]:-1:""
21:57:18 "HIVE: WRITE: "CHILD:306:15:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:18 "INFO: needUpdate_objects=[30d03040# 982992: suv.p3d]"
21:57:18 "HIVE: WRITE: "CHILD:306:15:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:24 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,30d03040# 982992: suv.p3d]"
21:57:24 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,30d03040# 982992: suv.p3d]"
21:57:24 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  SUV_Pink (characterID: 10356)  - to the database"
21:57:24 "<infiSTAR.de> AdminLog: 0h 13min | zambas saved -  SUV_Pink (characterID: 10356)  - to the database"
21:57:24 "HIVE: WRITE: "CHILD:305:16:[285.752594,[10388.313477,8253.651367,0.0580368]]:1:""
21:57:24 "HIVE: WRITE: "CHILD:306:16:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:24 "INFO: needUpdate_objects=[30d03040# 982992: suv.p3d]"
21:57:24 "HIVE: WRITE: "CHILD:306:16:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:42 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12522,13572.3,0]]"
21:57:42 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 103122([10394,8245.87,0.00184631]) to 125069([12522,13572.3,0]) | Key: any"
21:57:42 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12522,13572.3,0]]"
21:57:42 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 125069   WorldSpace: [12522,13572.3,0]"
21:57:42 "<infiSTAR.de> AdminLog: 0h 14min | Admin zambas(76561198189864193) teleported to   GPS: 125069   WorldSpace: [12522,13572.3,0]"
21:57:43 trigger - unknown animation source revolved
21:57:56 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"Kamaz_DZE",[22.7175,[12525.1,13579.7,0]],"ItemKeyYellow565"]"
21:57:56 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"Kamaz_DZE",[22.7175,[12525.1,13579.7,0]],"ItemKeyYellow565"]"
21:57:56 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned Kamaz_DZE @[22.7175,[12525.1,13579.7,0]]"
21:57:56 "<infiSTAR.de> AdminLog: 0h 14min | zambas (76561198189864193) hivespawned Kamaz_DZE @[22.7175,[12525.1,13579.7,0]]"
21:57:57 "HIVE: WRITE: "CHILD:305:17:[22.806665,[12525.128906,13579.953125,0.0102692]]:1:""
21:57:57 "HIVE: WRITE: "CHILD:303:17:[[[],[]],[[],[]],[[],[]]]:-1:""
21:57:57 "HIVE: WRITE: "CHILD:306:17:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:57:57 "INFO: needUpdate_objects=[22760100# 983019: kamaz.p3d]"
21:57:57 "HIVE: WRITE: "CHILD:306:17:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:58:01 Server: Object 4:285 not found (message 70)
21:58:01 Server: Object 4:286 not found (message 94)
21:58:01 Server: Object 4:287 not found (message 94)
21:58:01 Server: Object 4:288 not found (message 94)
21:58:01 Server: Object 4:289 not found (message 94)
21:58:02 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,22760100# 983019: kamaz.p3d]"
21:58:02 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,22760100# 983019: kamaz.p3d]"
21:58:02 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  Kamaz_DZE (characterID: 8065)  - to the database"
21:58:02 "<infiSTAR.de> AdminLog: 0h 14min | zambas saved -  Kamaz_DZE (characterID: 8065)  - to the database"
21:58:02 "HIVE: WRITE: "CHILD:305:18:[23.0717564,[12525.158203,13580.0410156,0.0665436]]:1:""
21:58:02 "HIVE: WRITE: "CHILD:306:18:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:58:02 "INFO: needUpdate_objects=[22760100# 983019: kamaz.p3d]"
21:58:02 "HIVE: WRITE: "CHILD:306:18:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:58:08 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[2108.06,7804.14,0]]"
21:58:08 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 125069([12521.6,13579.3,0.00131989]) to 021126([2108.06,7804.14,0]) | Key: any"
21:58:08 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[2108.06,7804.14,0]]"
21:58:08 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 021126   WorldSpace: [2108.06,7804.14,0]"
21:58:08 "<infiSTAR.de> AdminLog: 0h 14min | Admin zambas(76561198189864193) teleported to   GPS: 021126   WorldSpace: [2108.06,7804.14,0]"
21:58:13 Server: Object 4:305 not found (message 94)
21:58:13 Server: Object 4:306 not found (message 94)
21:58:13 Server: Object 4:320 not found (message 70)
21:58:13 Server: Object 4:319 not found (message 70)
21:58:13 Server: Object 4:318 not found (message 70)
21:58:13 Server: Object 4:324 not found (message 70)
21:58:13 Server: Object 4:323 not found (message 70)
21:58:13 Server: Object 4:326 not found (message 70)
21:58:13 Server: Object 4:332 not found (message 70)
21:58:13 Server: Object 4:331 not found (message 70)
21:58:13 Server: Object 4:330 not found (message 70)
21:58:13 Server: Object 4:329 not found (message 70)
21:58:13 Server: Object 4:325 not found (message 94)
21:58:13 Server: Object 4:328 not found (message 70)
21:58:13 Server: Object 4:327 not found (message 94)
21:58:13 Server: Object 4:333 not found (message 70)
21:58:13 Server: Object 4:337 not found (message 70)
21:58:13 Server: Object 4:338 not found (message 70)
21:58:13 Server: Object 4:336 not found (message 94)
21:58:13 Server: Object 4:335 not found (message 70)
21:58:13 Server: Object 4:334 not found (message 94)
21:58:26 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Charcoal",[352.437,[2114.34,7811.95,0]],"ItemKeyGreen482"]"
21:58:26 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Charcoal",[352.437,[2114.34,7811.95,0]],"ItemKeyGreen482"]"
21:58:26 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned SUV_Charcoal @[352.437,[2114.34,7811.95,0]]"
21:58:26 "<infiSTAR.de> AdminLog: 0h 14min | zambas (76561198189864193) hivespawned SUV_Charcoal @[352.437,[2114.34,7811.95,0]]"
21:58:28 "HIVE: WRITE: "CHILD:305:19:[352.374084,[2114.341064,7811.897949,0.000928879]]:1:""
21:58:28 "HIVE: WRITE: "CHILD:303:19:[[[],[]],[[],[]],[[],[]]]:-1:""
21:58:28 "HIVE: WRITE: "CHILD:306:19:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:58:28 "INFO: needUpdate_objects=[30f9b040# 983087: suv.p3d]"
21:58:28 "HIVE: WRITE: "CHILD:306:19:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:58:34 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,30f9b040# 983087: suv.p3d]"
21:58:34 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,30f9b040# 983087: suv.p3d]"
21:58:34 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  SUV_Charcoal (characterID: 482)  - to the database"
21:58:34 "<infiSTAR.de> AdminLog: 0h 14min | zambas saved -  SUV_Charcoal (characterID: 482)  - to the database"
21:58:34 "HIVE: WRITE: "CHILD:305:20:[352.16571,[2114.341064,7811.865723,0.0578003]]:1:""
21:58:34 "HIVE: WRITE: "CHILD:306:20:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:58:34 "INFO: needUpdate_objects=[30f9b040# 983087: suv.p3d]"
21:58:34 "HIVE: WRITE: "CHILD:306:20:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:59:12 "SERVER FPS: 45  PLAYERS: 2"
22:00:01 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8572.68,13352.9,0]]"
22:00:01 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 021126([2109.61,7807.16,0.00141287]) to 085071([8572.68,13352.9,0]) | Key: any"
22:00:01 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8572.68,13352.9,0]]"
22:00:01 Server: Object 4:347 not found (message 94)
22:00:01 Server: Object 4:345 not found (message 94)
22:00:01 Server: Object 4:346 not found (message 70)
22:00:01 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8572.68,13352.9,0]"
22:00:01 "<infiSTAR.de> AdminLog: 0h 16min | Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8572.68,13352.9,0]"
22:00:01 Server: Object 4:353 not found (message 94)
22:00:01 Server: Object 4:354 not found (message 70)
22:00:01 Server: Object 4:359 not found (message 70)
22:00:01 Server: Object 4:358 not found (message 70)
22:00:01 Server: Object 4:357 not found (message 70)
22:00:01 Server: Object 4:356 not found (message 70)
22:00:01 Server: Object 4:355 not found (message 70)
22:00:01 Server: Object 4:352 not found (message 70)
22:00:01 Server: Object 4:361 not found (message 94)
22:00:01 Server: Object 4:364 not found (message 70)
22:00:01 Server: Object 4:369 not found (message 70)
22:00:01 Server: Object 4:368 not found (message 70)
22:00:01 Server: Object 4:367 not found (message 70)
22:00:01 Server: Object 4:363 not found (message 70)
22:00:01 Server: Object 4:362 not found (message 94)
22:00:01 Server: Object 4:365 not found (message 94)
22:00:01 Server: Object 4:366 not found (message 70)
22:00:01 Server: Object 4:360 not found (message 94)
22:00:05 "B 1-1-C:1 (zambas) REMOTE, SafeZoneState, [0], 4"
22:00:05 "<infiSTAR.de> SAFEZONELOG: zambas(76561198189864193) -    Left SafeZone @085071"
22:00:09 "RUNNING EVENT: crash_spawner on [2017,8,26,14,0]"
22:00:09 Warning Message: Script z\addons\dayz_server\modules\crash_spawner.sqf not found
22:01:09 "WAI: [Mission:[Hero] Gemstone Mine]: Starting... [15233.4,4947.3,0]"
22:01:10 "WAI: Spawned a group of 6 AI (Bandit) at [15243.4,4957.3,0]"
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 "WAI: Spawned a group of 4 AI (Bandit) at [15223.4,4937.3,0]"
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 "WAI: Spawned a group of 3 AI (Bandit) at [15243.4,4937.3,0]"
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:12 "WAI: Spawned a group of 3 AI (Bandit) at [15223.4,4957.3,0]"
22:01:12 "WAI: Spawned a group of 3 AI (Bandit) at [15283.4,4947.3,0]"
22:01:13 "WAI: Spawned a group of 3 AI (Bandit) at [15183.4,4947.3,0]"
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 "WAI: Spawned a group of 3 AI (Bandit) at [15233.4,4997.3,0]"
22:01:14 "WAI: Spawned in 1 M2StaticMG"
22:01:14 "WAI: Spawned in 1 M2StaticMG"
22:01:39 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15285.4,4918.45,0]]"
22:01:39 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 085071([8572.68,13352.9,0.00135803]) to 152155([15285.4,4918.45,0]) | Key: any"
22:01:39 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15285.4,4918.45,0]]"
22:01:39 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 152155   WorldSpace: [15285.4,4918.45,0]"
22:01:39 "<infiSTAR.de> AdminLog: 0h 18min | Admin zambas(76561198189864193) teleported to   GPS: 152155   WorldSpace: [15285.4,4918.45,0]"
22:02:02 Error in expression <

if(_complete) then {
[_crate,10,8,[25,crate_items_gem],3] call dynamic_crate;
>
22:02:02   Error position: <crate_items_gem],3] call dynamic_crate;
>
22:02:02   Error Undefined variable in expression: crate_items_gem
22:02:02 File z\addons\dayz_server\WAI\missions\hero\gemstonemine.sqf, line 63
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression <mmo, (1 + floor(random 5))];
};

};

if(_num_backpacks > 0) then {

_num_backpac>
22:02:02   Error position: <_num_backpacks > 0) then {

_num_backpac>
22:02:02   Error Undefined variable in expression: _num_backpacks
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 114
22:02:02 "WAI: [Mission:[Hero] Gemstone Mine]: Ended at [15233.4,4947.3,0]"
22:02:17 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,14,2],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,8,26,14,2]]
22:03:33 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.9,4706.58,0]]"
22:03:33 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 152155([15256.9,4970.33,0.00274658]) to 051157([5172.9,4706.58,0]) | Key: any"
22:03:33 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.9,4706.58,0]]"
22:03:34 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.9,4706.58,0]"
22:03:34 "<infiSTAR.de> AdminLog: 0h 19min | Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.9,4706.58,0]"
22:03:43 "WAI: [Mission:[Hero] ARMY Base]: Starting... [6045.06,13815.9,0]"
22:03:45 "WAI: Spawned a group of 4 AI (Bandit) at [6033.06,13817.9,0]"
22:03:45 No owner
22:03:45 No owner
22:03:45 No owner
22:03:45 No owner
22:03:46 "WAI: Spawned a group of 4 AI (Bandit) at [6047.06,13817.9,0]"
22:03:46 No owner
22:03:46 No owner
22:03:46 No owner
22:03:46 No owner
22:03:46 Strange convex component01 in rh_m14\rh_m1staim.p3d:geometry
22:03:46 Strange convex component07 in rh_m14\rh_m1staim.p3d:geometry
22:03:46 Strange convex component12 in rh_m14\rh_m1staim.p3d:geometry
22:03:46 "WAI: Spawned a group of 4 AI (Bandit) at [6059.06,13780.9,0]"
22:03:47 "WAI: Spawned a group of 4 AI (Bandit) at [6058.06,13850.9,0]"
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 "WAI: Spawned a group of 4 AI (Bandit) at [6060.06,13817.9,0]"
22:03:49 "WAI: Spawned in 1 M2StaticMG"
22:03:50 "WAI: Spawned in 1 M2StaticMG"
22:04:21 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8568.55,13357.9,0]]"
22:04:21 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051157([5172.9,4706.58,0.00144958]) to 085071([8568.55,13357.9,0]) | Key: any"
22:04:21 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8568.55,13357.9,0]]"
22:04:21 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8568.55,13357.9,0]"
22:04:21 "<infiSTAR.de> AdminLog: 0h 20min | Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8568.55,13357.9,0]"
22:05:13 "SERVER FPS: 47  PLAYERS: 2"
22:06:05 "WAI: [Mission:[Hero] Weapon Cache]: Starting... [3002.57,11130.6,0]"
22:06:06 No owner
22:06:06 No owner
22:06:06 No owner
22:06:06 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:07 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:08 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:09 No owner
22:06:09 No owner
22:06:09 No owner
22:06:09 Strange convex component01 in rh_m14\rh_m21.p3d:geometry
22:06:09 Strange convex component07 in rh_m14\rh_m21.p3d:geometry
22:06:09 Strange convex component08 in rh_m14\rh_m21.p3d:geometry
22:06:09 Strange convex component12 in rh_m14\rh_m21.p3d:geometry
22:06:10 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:11 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:12 "WAI: Spawned in 2 M2StaticMG"
22:06:29 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.92,4695.89,0]]"
22:06:29 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 085071([8567.76,13357.1,0.00148773]) to 051157([5172.92,4695.89,0]) | Key: any"
22:06:29 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.92,4695.89,0]]"
22:06:29 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.92,4695.89,0]"
22:06:29 "<infiSTAR.de> AdminLog: 0h 22min | Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.92,4695.89,0]"
22:08:58 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15295.9,4843.47,0]]"
22:08:58 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051157([5179.91,4696.73,0.00144196]) to 152156([15295.9,4843.47,0]) | Key: any"
22:08:58 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15295.9,4843.47,0]]"
22:08:58 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 152156   WorldSpace: [15295.9,4843.47,0]"
22:08:58 "<infiSTAR.de> AdminLog: 0h 25min | Admin zambas(76561198189864193) teleported to   GPS: 152156   WorldSpace: [15295.9,4843.47,0]"
22:09:47 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas plus 2500 Humanity to zambas"
22:09:47 "<infiSTAR.de> AdminLog: 0h 26min | zambas plus 2500 Humanity to zambas"
22:09:48 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas plus 2500 Humanity to zambas"
22:09:48 "<infiSTAR.de> AdminLog: 0h 26min | zambas plus 2500 Humanity to zambas"
22:10:17 "WAI: [Mission:[Hero] Communication Center]: Starting... [1704.73,11167.1,0]"
22:10:18 Error in expression <launcher call find_suitable_ammunition;
_unit addMagazine _rocket;
_unit addMaga>
22:10:18   Error position: <_unit addMagazine _rocket;
_unit addMaga>
22:10:18   Error Undefined variable in expression: _unit
22:10:18 File z\addons\dayz_server\WAI\compile\spawn_group.sqf, line 197
22:10:18 "WAI: Spawned a group of any AI (Bandit) at [1604.73,11267.1,0]"
22:10:18 Error in expression < random(25));
};
};

for "_x" from 1 to _unitnumber do {

call {
if(typeName(_gu>
22:10:18   Error position: <_unitnumber do {

call {
if(typeName(_gu>
22:10:18   Error Undefined variable in expression: _unitnumber
22:10:18 File z\addons\dayz_server\WAI\compile\spawn_group.sqf, line 62
22:10:18 Error in expression < 0) -100, (_position select 1) +100, 0],_num,"Extreme",["Random","AT"],4,"Random>
22:10:18   Error position: <_num,"Extreme",["Random","AT"],4,"Random>
22:10:18   Error Undefined variable in expression: _num
22:10:18 File z\addons\dayz_server\WAI\missions\hero\comm.sqf, line 35
22:10:18 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5161.77,4698.68,0]]"
22:10:18 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 152155([15278.8,4929.73,0.00268555]) to 051157([5161.77,4698.68,0]) | Key: any"
22:10:18 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5161.77,4698.68,0]]"
22:10:18 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5161.77,4698.68,0]"
22:10:18 "<infiSTAR.de> AdminLog: 0h 26min | Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5161.77,4698.68,0]"
22:10:19 trigger - unknown animation source revolved
22:10:19 "WAI: Spawned a group of 3 AI (Bandit) at [1804.73,11067.1,0]"
22:10:20 No owner
22:10:20 No owner
22:10:20 No owner
22:10:20 No owner
22:10:20 Strange convex component01 in rh_m14\rh_m1seot.p3d:geometry
22:10:20 Strange convex component07 in rh_m14\rh_m1seot.p3d:geometry
22:10:20 Strange convex component12 in rh_m14\rh_m1seot.p3d:geometry
22:10:20 "WAI: Spawned a group of 3 AI (Bandit) at [1804.73,11267.1,0]"
22:10:21 No owner
22:10:21 No owner
22:10:21 No owner
22:10:21 No owner
22:10:21 "WAI: Spawned a group of 3 AI (Bandit) at [1604.73,11067.1,0]"
22:10:22 "WAI: Spawned a group of 3 AI (Bandit) at [1704.73,11167.1,0]"
22:10:23 "WAI: Spawned in 1 M2StaticMG"
22:10:23 "WAI: Spawned in 1 M2StaticMG"
22:10:24 "WAI: Spawned in 1 M2StaticMG"
22:10:24 "WAI: Spawned in 1 M2StaticMG"
22:11:13 "SERVER FPS: 48  PLAYERS: 2"
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
 

 

 

Link to comment
Share on other sites

3 hours ago, DAKA said:

Ok, so I am getting a few errors with the latest WAI that you can download. Here is m RPT. Mostly seeing ai dying early, you will see their names repeated, also a common error that i saw, just can't remember how to fix it.  anyway, here is a copy of my RPT

  Reveal hidden contents
  Reveal hidden contents

=====================================================================
== D:\TCAFiles\Users\panayiotisc\43070\arma2oaserver.exe
== arma2oaserver.exe  -ip=145.239.136.45 -port=2307 "-config=SC\config.cfg" "-cfg=SC\basic.cfg" "-profiles=SC" -name=SC "[email protected];@DayZ_Epoch;@DayZ_Epoch_Server;"
=====================================================================
Exe timestamp: 2017/08/19 06:51:59
Current time:  2017/08/26 21:43:23

Version 1.63.131129
Conflicting addon Monaro in 'holdenmonarocop\', previous definition in 'holdenmonaro\'
File nissan_350z\config.cpp, line 244: '/CfgVehicles/350zBase/Library.libTextDesc': Missing ';' prior '}'
Unsupported language English in stringtable
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</German>
        <English>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</English>
        <Italian>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Italian>
        <Spanish>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, they were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunition new mounting brackets better suited
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Spanish>
        <French>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</French>
        <Czech>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Czech>
        <Russian>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Russian>
        <Polish>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Polish>
        <Hungarian>From world.guns.ru: &lt'
Unknown entity: 'C inatallations and equipment, fuel and ammunition storage facilities and parked tactical aircraft. The original BS-1 system was designed for the 7.62mm Kalashnikov AKMS assault rifle with PBS-1 silencers. When the Soviet army switched over to 5.45x39mm ammunition, the AKMS assault rifles with PBS-1 silencer were replaced with AKS-74UB compact assault rifles with PBS-4 silencers. The original GSN-19 grenade launcher system was slightly reworked, primarily to use different launching ammunit
Unknown entity: 'C equipment, and then cause enough damage to render the target inoperative. The grenade has no propelling system in itself, instead being launched by special blank cartridges which are loaded into a detachable box magazine.</Hungarian>
    </Key>
    <Key ID="STR_VIL_AKS74UB_BS1_SHORT">
      <German>Compact assault rifle with silenced grenade launcher&lt'
Item STR_VIL_DN_BS1 listed twice
Item STR_AUTHOR_VILAS listed twice
Item STR_VIL_EASTERN listed twice
Item STR_VIL_WEAPONS listed twice
Item str_dss_10rnd_vss listed twice
Item str_dss_20rnd_vss listed twice
Item str_dn_20rnd_9x39_sp5_vss listed twice
Item str_dn_ak_107_gl_pso listed twice
Item str_dn_ak_107_kobra listed twice
Item str_dn_M40A3 listed twice
Item str_dn_rpk_74 listed twice
Item str_ep1_dn_fn_fal listed twice
Updating base class ->NonStrategic, by ca\config.bin/CfgVehicles/HouseBase/
Updating base class ->HouseBase, by ca\config.bin/CfgVehicles/Ruins/
Updating base class ->DestructionEffects, by ca\config.bin/CfgVehicles/House/DestructionEffects/
Updating base class ->FlagCarrierCore, by ca\ca_pmc\config.bin/CfgVehicles/FlagCarrier/
Updating base class ->Man, by nof_fsk\config.cpp/CfgVehicles/CAManBase/
Updating base class ->Default, by z\addons\anzio\config.bin/CfgWeapons/Rifle/
Updating base class ->BulletCore, by ca\weapons\config.bin/CfgAmmo/BulletBase/
Updating base class ->GrenadeCore, by ca\weapons\config.bin/CfgAmmo/GrenadeBase/
Updating base class ->VehicleMagazine, by ca\weapons\config.bin/CfgMagazines/14Rnd_FFAR/
Updating base class ->Default, by ca\weapons\config.bin/cfgWeapons/GrenadeLauncher/
Updating base class Default->RifleCore, by ca\weapons\config.bin/cfgWeapons/Rifle/
Updating base class ->LauncherCore, by ca\weapons\config.bin/cfgWeapons/RocketPods/
Updating base class ->RocketPods, by ca\weapons\config.bin/cfgWeapons/FFARLauncher/
Updating base class ->Bag_Base_EP1, by ca\weapons_e\ammoboxes\config.bin/cfgVehicles/US_Patrol_Pack_EP1/
Updating base class ->Bag_Base_EP1, by ca\weapons_e\ammoboxes\config.bin/cfgVehicles/US_Backpack_EP1/
Updating base class ->Bag_Base_EP1, by ca\weapons_e\ammoboxes\config.bin/cfgVehicles/CZ_Backpack_EP1/
Updating base class Man->CAManBase, by ca\characters\config.bin/CfgVehicles/Civilian/
Updating base class TalkTopics->TalkTopics, by bb_mercs_desert\config.bin/CfgVehicles/SoldierWB/TalkTopics/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_Light/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier2/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_GL/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_Officer/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_SL/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_TL/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_LAT/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_AT/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_HAT/
Updating base class ->USMC_Soldier_AT_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_AA/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_Medic/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_AR/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_Soldier_MG/
Updating base class ->USMC_SoldierS_Sniper, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierS_SniperH/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierM_Marksman/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierS/
Updating base class ->USMC_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/USMC_SoldierS_Engineer/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_TL/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_R/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_Marksman/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_Corpsman/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_AR/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_GL/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_Sapper/
Updating base class ->FR_Base, by ca\characters2\config.bin/CfgVehicles/FR_AC/
Updating base class ->RU_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/RU_Soldier2/
Updating base class Soldier->MVD_Soldier_Base, by ca\characters2\config.bin/CfgVehicles/MVD_Soldier/
Updating base class ->US_Soldier_Base_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_EP1/
Updating base class ->US_Soldier_Base_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_TL_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_Medic_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_AR_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_Marksman_EP1/
Updating base class ->US_Delta_Force_EP1, by ca\characters_e\config.bin/CfgVehicles/US_Delta_Force_Air_Controller_EP1/
Updating base class ->HMMWV_Base, by ca\wheeled\config.bin/CfgVehicles/HMMWV_M2/
Updating base class ->HMMWV_Base, by ca\wheeled\config.bin/CfgVehicles/HMMWV_TOW/
Updating base class ->HMMWV_Base, by ca\wheeled\config.bin/CfgVehicles/HMMWV_MK19/
Updating base class Car->SkodaBase, by ca\wheeled\config.bin/CfgVehicles/car_sedan/
Updating base class ->Pickup_PK_base, by ca\wheeled\datsun_armed\config.bin/CfgVehicles/Pickup_PK_GUE/
Updating base class ->Offroad_DSHKM_base, by ca\wheeled\hilux_armed\config.bin/CfgVehicles/Offroad_DSHKM_Gue/
Updating base class ->Offroad_DSHKM_base, by ca\wheeled\hilux_armed\config.bin/CfgVehicles/Offroad_SPG9_Gue/
Updating base class ->UH60_Base, by ca\air\config.bin/CfgVehicles/MH60S/
Updating base class ->Car, by ca\wheeled2\lada\config.bin/CfgVehicles/Lada_base/
Updating base class AKS_BASE->AK_BASE, by vilas_aks_cfg\config.cpp/cfgWeapons/AKS_74_UN_kobra/
Updating base class AK_BASE->AKS_BASE, by ca\communityconfigurationproject_e\ai_madeaks74unkobrafullysilenced\config.bin/CfgWeapons/AKS_74_UN_kobra/
Updating base class ->Mode_FullAuto, by corepatch\corepatch_ccp_68220\config.cpp/CfgWeapons/G36a/FullAuto/
Updating base class ->Mode_SemiAuto, by corepatch\corepatch_ccp_68220\config.cpp/CfgWeapons/G36a/Single/
Updating base class Small_items->ReammoBox, by dayz_equip\config.cpp/CfgVehicles/CardboardBox/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Small_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street1_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street2_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lampa_Ind_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_PowLines_Conc2L_EP1/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_2/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_3/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind_zebr/
Updating base class RscStandardDisplay->, by z\addons\dayz_code\config.bin/RscDisplayStart/
Updating base class RscShortcutButton->RscShortcutButtonMain, by z\addons\dayz_code\config.bin/RscDisplayMain/controls/CA_Exit/
Updating base class CA_IGUI_Title->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/Gear_Title/
Updating base class Available_items_Text->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/CA_ItemName/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item8/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item9/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item10/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item11/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item12/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item6/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item7/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item8/
Updating base class CA_Gear_slot_special1->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory1/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory8/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory9/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory10/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory11/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory12/
Updating base class CA_Gear_slot_item1->CA_Gear_slot_handgun, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_special1/
Updating base class RscIGUIShortcutButton->RscActiveText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/ButtonClose/
Updating base class RscText->, by z\addons\dayz_code\config.bin/RscTitles/Default/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/Mi17_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1H_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1_Base/Turrets/MainTurret/ViewOptics/
Updating base class Strategic->, by z\addons\dayz_code\config.bin/CfgVehicles/Bomb/
Updating base class HighCommand->Logic, by z\addons\dayz_code\config.bin/CfgVehicles/HighCommandSubordinate/
Updating base class NonStrategic->BuiltItems, by z\addons\dayz_code\config.bin/CfgVehicles/Fort_RazorWire/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroP/EventHandlers/
Updating base class AnimationSources->AnimationSources, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/AnimationSources/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/EventHandlers/
Updating base class BuiltItems->Generator_Base, by z\addons\dayz_code\config.bin/CfgVehicles/Generator_DZ/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/29Rnd_30mm_AGS30/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/48Rnd_40mm_MK19/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/2000Rnd_762x51_M134/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/100Rnd_127x99_M2/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/50Rnd_127x107_DSHKM/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_1300Rnd_762x51_M60/
Updating base class 100Rnd_762x51_M240->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_250Rnd_762x51/
Updating base class 6Rnd_Grenade_Camel->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_12Rnd_Grenade_Camel/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/3Rnd_GyroGrenade/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face1/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face2/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face3/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face4/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face5/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face5_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face6/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face6_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face7/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face8/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face8_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face9/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face10/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face11/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face12/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face13/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face13_camo/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face14/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face15/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face16/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face17/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face18/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face19/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face20/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face21/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face22/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face23/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face24/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face25/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face26/
Updating base class ->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face27/
Updating base class ->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face28/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face29/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face30/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face31/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face32/
Updating base class Default->OW_Nope, by z\addons\dayz_code\config.bin/CfgFaces/Man/Merc_Face33/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Pro_Helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Pro_Helmet_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Pro_Helmet_2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Kevlar_Helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Kevlar_Helmet_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/wdl_helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Barett/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/US_green_beret/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/US_black_beret/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Barett_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Bdu_cap/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/Bdu_cap_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/b_TacticalGlasses/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/headset/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/headset_g/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask_helmet/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask_red/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/gasmask_helmet2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/pilot_mask/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/pilot_mask_v/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/pilot_v/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/skull_cap/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/skull_cap2/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/taliban_hat_shadow/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/dive_mask/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/BlackSun_sof_w/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/RedSun_sof_w/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/None_sof_w/
Updating base class ->None, by z\addons\dayz_code\config.bin/CfgGlasses/goggles_winter/
Updating base class DropWeapon->None, by z\addons\dayz_code\config.bin/CfgActions/PutWeapon/
Updating base class DropMagazine->None, by z\addons\dayz_code\config.bin/CfgActions/PutMagazine/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_1L2/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_3I3/
Updating base class House->DZE_OpenHouse, by warehouse\config.bin/CfgVehicles/Land_Ind_Pec_03/
21:43:38 Initializing Steam server - Game Port: 2307, Steam Query Port: 2308
21:43:39 Connected to Steam servers
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:45:54 Server error: Player without identity KRYTERION (id 1029063791)
21:46:09 Strange convex component93 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component94 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component95 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component96 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component99 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component100 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component101 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component102 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component103 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component104 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component105 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component106 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component107 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component108 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component109 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component110 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component111 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component112 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component113 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component114 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component115 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component116 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component117 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component118 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component119 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component120 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component121 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component122 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component123 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component124 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component125 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component126 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component127 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component128 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component129 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component130 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component131 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component132 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component133 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:09 Strange convex component134 in zero_buildings\models\mil_house_i.p3d:geometryView
21:46:11 Strange convex component81 in zero_buildings\models\housev_3i3_i.p3d:geometryFire
21:46:12 ca\misc\houpacka.p3d: house, config class missing
21:46:12 ca\misc\houpacka.p3d: house, config class missing
21:46:13 ca\misc\houpacka.p3d: house, config class missing
21:46:19 "PRELOAD_ Functions\init [[<No group>:0 (FunctionsManager)],any]"
21:46:19 "MPframework inited"
21:46:19 "dayz_preloadFinished reset"
21:46:42 "<infiSTAR.de> Error loading infiSTAR DLL"
21:46:42 "<infiSTAR.de> 823351f29ac4"
21:46:42 "<infiSTAR.de> 25987d56881505aec254d9ab4ccb64eb"
21:46:42 "<infiSTAR.de> "
21:46:42 "<infiSTAR.de> Waiting for BIS_fnc_init..."
21:46:42 "Epoch detected"
21:46:42 "<infiSTAR.de> BIS_fnc_init done - AntiHack STARTING...!"
21:46:42 Warning Message: Script low_admins.sqf not found
21:46:42 Warning Message: Script normal_admins.sqf not found
21:46:42 Warning Message: Script super_admins.sqf not found
21:46:42 Warning Message: Script blacklist.sqf not found
21:46:42 "<infiSTAR.de> iproductVersion: 18-08-2017 20-45-53-v1443 | Server productVersion: ["ArmA 2 OA","ArmA2OA",163,131129] | worldName: Napf | dayz_instance: 24 | missionName: DayZ_Epoch_24"
21:46:42 "<infiSTAR.de> start: <infiSTAR.de> iproductVersion: 18-08-2017 20-45-53-v1443 | Server productVersion: ["ArmA 2 OA","ArmA2OA",163,131129] | worldName: Napf | dayz_instance: 24 | missionName: DayZ_Epoch_24"
21:46:42 "<infiSTAR.de> _fnc_RandomGen: {
_abc = ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_gen = _abc select (random ((count _abc)-1));
_arr = ['a','2','5','9','8','7','d','5','6','8','8','1','5','0','5','a','e','c','2','5','4','d','9','a','b','4','c','c','b','6','4','e','b'];
for '_i' from 0 to (8+(round(random 3))) do {_gen = _gen + str(round(random 9)) + (_arr select (random ((count _arr)-1)));};
_gen
}"
21:46:42 "<infiSTAR.de> _simple: e82543e724112270a245a91"
21:46:42 "<infiSTAR.de> _dialogIds: j643445846515942c65286455"
21:46:42 "<infiSTAR.de> _badtxts: x821755352a1b9569842d"
21:46:42 "<infiSTAR.de> _randvar1: p85392d65127b7b374c4439"
21:46:42 "<infiSTAR.de> _randvar2: p04384532848d3c684b78"
21:46:42 "<infiSTAR.de> _randvar0: r3c1134217b8e0a962444"
21:46:42 "<infiSTAR.de> _randvar3: k29592c2c6c62896e8525"
21:46:42 "<infiSTAR.de> _randvar4: k1455855c5c673d8a2824"
21:46:42 "<infiSTAR.de> _randvar5: h082476774a5d313607160647"
21:46:42 "<infiSTAR.de> _randvar6: f72352a345d2c3a78454a88"
21:46:42 "<infiSTAR.de> _randvar8: v18288a4d656918260a"
21:46:42 "<infiSTAR.de> _randvar9: k6b3539383d17418c653e6a46"
21:46:42 "<infiSTAR.de> _randvar11: g499a7b3e6c08075809850835"
21:46:42 "<infiSTAR.de> _randvar12: t25699d04422d8934854b0c"
21:46:42 "<infiSTAR.de> _randvar13: o7a45788a62757865557531"
21:46:42 "<infiSTAR.de> _randvar19: o266c557c644e2e26428c575e"
21:46:42 "<infiSTAR.de> _randvar27: d31157b15672d5a7e07"
21:46:42 "<infiSTAR.de> _randvar26: v1b34721771248604345e"
21:46:42 "<infiSTAR.de> _randvar25: y3244026b555a346455"
21:46:42 "<infiSTAR.de> _randvar31: p9d3d9b2445756b254a354a"
21:46:42 "<infiSTAR.de> _randvar33: b22443b88591e486935"
21:46:42 "<infiSTAR.de> _randvar34: m5875749c693d5865194c07"
21:46:42 "<infiSTAR.de> _randvar35: w15897d6a2995486989"
21:46:42 "<infiSTAR.de> _randvar36: w752a2a754a1d18341887"
21:46:42 "<infiSTAR.de> _randvar37: l882c455b7c258289307b1a8a"
21:46:42 "<infiSTAR.de> _randvar39: l6b826a5c146e2868888e"
21:46:42 "<infiSTAR.de> _clickOnMapTimer: u855986250c224d1639215b"
21:46:42 "<infiSTAR.de> _clickOnMapCaught: d66751b1816420c244b8447"
21:46:42 "<infiSTAR.de> _fnc_handlerandvar10: h5c726c6a24640b2482873a"
21:46:42 "<infiSTAR.de> _remark: q4c3b10524e3a384d3b35"
21:46:42 "<infiSTAR.de> _AHpos: l3c1d89384d10181e38686b"
21:46:42 "<infiSTAR.de> _loadedcheckpos: p9c7b1c425d0b7c3a6a25"
21:46:42 "<infiSTAR.de> _loadedchecktime: j9b6d783432626d4b8d65"
21:46:42 "<infiSTAR.de> _MenuChecksRunningx: l3c984b951568964b5c0c36"
21:46:42 "<infiSTAR.de> _oneachframe: y44653d1a34546b3b7894"
21:46:42 "<infiSTAR.de> _anotherloop: i445d327e062b20858c4c11"
21:46:42 "<infiSTAR.de> _clientoncetwo: o594484756c4634469451"
21:46:42 "<infiSTAR.de> _lastUnlock: l853419244b16883e4b1b9b94"
21:46:42 "<infiSTAR.de> _AdminReqCheck: b252d3125105474412a85"
21:46:42 "<infiSTAR.de> _antidupeCheckVar: h2c7d985c582e6a581c649a"
21:46:42 "<infiSTAR.de> _antiantihack1_rndvar: h6954869129858a2d3c4842"
21:46:42 "<infiSTAR.de> _antiantihack2_rndvar: t256832306555186e4a79"
21:46:42 "<infiSTAR.de> _antidupePVResVar: s59357d766938195e3b461e"
21:46:42 "<infiSTAR.de> _antidupePVCheckVar: PVAHR_0_h11665c34594d7555789678"
21:46:42 "<infiSTAR.de> _randvar10: PVAHR_0_u4e028b768d8b8c093e1e31"
21:46:43 "<infiSTAR.de> AntiHack LOADED!"
21:46:43 "<infiSTAR.de> CREATING AdminMenu"
21:46:43 "<infiSTAR.de> AdminMenu LOADED!"
21:46:43 "<infiSTAR.de> ADDING SERVERSIDE HANDLERS"
21:46:43 "<infiSTAR.de> AntiHack FULLY LOADED"
21:46:43 "Loading custom server compiles"
21:46:43 BIKE: loading version 2.8.2 ...
21:46:43 BIKE: adding bike to safe vehicle list...
21:46:45 "HIVE: Starting"
21:46:45 ["TIME SYNC: Local Time set to:",[2012,8,2,13,46],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,8,26,13,46]]
21:46:45 "HIVE: trying to get objects"
21:46:45 "HIVE: found 4 objects"
21:46:45 "HIVE: Request sent"
21:46:45 "HIVE: Streamed 4 objects"
21:46:45 "<infiSTAR.de> starting main server loop"
21:46:45 "HIVE: BENCHMARK - Server_monitor.sqf finished streaming 4 objects in 0.465988 seconds (unscheduled)"
21:46:45 "Total Number of spawn locations 11"
21:46:45 "SERVER FPS: 38  PLAYERS: 2"
21:46:45 Error in expression <
[5,5],
[9,13],
[11,11,10],
[12],
[6,6]

if (isServer) then {

>
21:46:45   Error position: <] 

if (isServer) then {

>
21:46:45   Error Missing ;
21:46:45 File z\addons\dayz_server\scripts\airpatrol.sqf, line 45
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [10923,12529.6,0] with 5 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [5008.7,4770.66,0] with 4 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [8094.76,17071.9,0] with 8 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [12885.2,5411.18,0] with 7 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [4844.76,10901.1,0] with 10 items."
21:46:46 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [14187.7,7135.16,0] with 4 items."
21:46:46 "CRASHSPAWNER: Starting crash site spawner. Frequency: 25±20 min. Spawn chance: 0.75"
21:46:46 "CRASHSPAWNER: Spawning crash site (CrashSite_RU) at [4286.54,5263.18,0] with 8 items."
21:46:47 ca\misc\houpacka.p3d: house, config class missing
21:46:49 ca\misc\houpacka.p3d: house, config class missing
21:46:52 ca\misc\houpacka.p3d: house, config class missing
21:46:52 ca\misc\houpacka.p3d: house, config class missing
21:46:54 Strange convex component288 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component289 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component290 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component291 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component292 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component293 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component294 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component295 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component296 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component297 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component298 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component299 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component300 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component301 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component302 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component303 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component304 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component305 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component306 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component307 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component308 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component309 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component310 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component311 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component312 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component313 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component314 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component315 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component316 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component317 in warehouse\models\warehouse.p3d:geometry
21:46:54 Strange convex component252 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component253 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component254 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component255 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component256 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component257 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component258 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component259 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component260 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component261 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component262 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component263 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component264 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component265 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component266 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component267 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component268 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component269 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component270 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component271 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component272 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component273 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component274 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component275 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component276 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component277 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component278 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component279 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component280 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component281 in warehouse\models\warehouse.p3d:geometryFire
21:46:54 Strange convex component249 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component250 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component251 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component252 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component253 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component254 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component255 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component256 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component257 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component258 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component259 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component260 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component261 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component262 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component263 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component264 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component265 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component266 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component267 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component268 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component269 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component270 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component271 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component272 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component273 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component274 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component275 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component276 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component277 in warehouse\models\warehouse.p3d:geometryView
21:46:54 Strange convex component278 in warehouse\models\warehouse.p3d:geometryView
21:46:56 ca\misc3\wf\wf_depot.p3d: house, config class missing
21:46:56 ca\misc3\wf\wf_depot.p3d: house, config class missing
21:46:56 ca\misc3\wf\wf_depot.p3d: house, config class missing
21:47:00 ca\misc\houpacka.p3d: house, config class missing
21:47:00 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:03 ca\misc\houpacka.p3d: house, config class missing
21:47:08 ca\misc\houpacka.p3d: house, config class missing
21:47:11 ca\structures\house\housev\housev_2l_dam_ruins.p3d: house, config class missing
21:47:13 "<infiSTAR.de> CONNECTLOG: CONNECT - KRYTERION(76561198023876576)"
21:47:13 "<infiSTAR.de> Player-Log: KRYTERION(76561198023876576) - 0h 00min"
21:47:13 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGGING IN"
21:47:14 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGIN PUBLISHING, Location Wilderness [081051]"
21:47:15 "[DEBUG]: _vehLimit: -2, MaxVehicleLimit: 0, _serverVehicleCounter: 2"
21:47:15 "HIVE: Vehicle Spawn limit reached!"
21:47:15 "HIVE: Spawning # of Debris: 0"
21:47:15 "HIVE: Spawning # of Ammo Boxes: 3"
21:47:15 "HIVE: Spawning # of Veins: 50"
21:47:16 "HIVE: BENCHMARK - Server finished spawning 0 DynamicVehicles, 0 Debris, 3 SupplyCrates and 50 MineVeins in 29.312 seconds (scheduled)"
21:47:16 "EPOCH EVENTS INIT"
21:47:16 No owner
21:47:17 No owner
21:47:17 "CLEANUP: INITIALIZING Vehicle SCRIPT"
21:47:17 "WAI: AI Config File Loaded"
21:47:17 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,13,47],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,8,26,13,47]]
21:47:17 "WAI: AI Monitor Started"
21:47:17 "WAI: Initialising missions"
21:47:19 "<infiSTAR.de> CONNECTLOG: CONNECT - zambas(76561198189864193)"
21:47:19 "<infiSTAR.de> Player-Log: zambas(76561198189864193) - 0h 00min | ******ADMIN******"
21:47:19 "<infiSTAR.de> CONNECTLOG: CONNECT - __SERVER__()"
21:47:19 Server: Object 4:34 not found (message 94)
21:47:19 Server: Object 4:35 not found (message 94)
21:47:19 Server: Object 4:36 not found (message 94)
21:47:19 Server: Object 4:37 not found (message 94)
21:47:19 Server: Object 4:38 not found (message 94)
21:47:19 Server: Object 4:39 not found (message 94)
21:47:19 Server: Object 4:40 not found (message 94)
21:47:19 Server: Object 4:41 not found (message 94)
21:47:19 Server: Object 3:35 not found (message 70)
21:47:19 Server: Object 3:30 not found (message 94)
21:47:19 Server: Object 3:31 not found (message 94)
21:47:19 Server: Object 3:32 not found (message 94)
21:47:19 Server: Object 3:33 not found (message 94)
21:47:19 Server: Object 3:34 not found (message 94)
21:47:19 Server: Object 3:40 not found (message 70)
21:47:19 Server: Object 3:36 not found (message 94)
21:47:19 Server: Object 3:37 not found (message 94)
21:47:19 Server: Object 3:38 not found (message 94)
21:47:19 Server: Object 3:39 not found (message 94)
21:47:19 Server: Object 3:43 not found (message 94)
21:47:19 Server: Object 3:41 not found (message 94)
21:47:19 Server: Object 3:42 not found (message 94)
21:47:19 Server: Object 3:44 not found (message 94)
21:47:19 Server: Object 3:45 not found (message 94)
21:47:19 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGGING IN"
21:47:20 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGIN PUBLISHING, Location Wilderness [051157]"
21:47:20 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:20 "infiSTAR.de ******ADMIN-LOGIN******: zambas(76561198189864193)"
21:47:20 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:20 "<infiSTAR.de> CONNECTLOG: DISCONNECT - zambas(76561198189864193)"
21:47:20 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198189864193","zambas"]"
21:47:20 Client: Remote object 4:45 not found
21:47:20 "INFO - Player: zambas(UID:76561198189864193/CID:1) Status: CLIENT LOADED & PLAYING"
21:47:24 "<infiSTAR.de> CONNECTLOG: CONNECT - zambas(76561198189864193)"
21:47:24 Server: Object 4:72 not found (message 94)
21:47:24 Server: Object 4:73 not found (message 94)
21:47:24 Server: Object 4:74 not found (message 94)
21:47:24 Server: Object 4:75 not found (message 94)
21:47:24 Server: Object 4:76 not found (message 94)
21:47:24 Server: Object 4:77 not found (message 94)
21:47:24 Server: Object 4:78 not found (message 94)
21:47:24 Server: Object 4:79 not found (message 94)
21:47:24 Server: Object 4:80 not found (message 94)
21:47:24 Server: Object 4:81 not found (message 94)
21:47:24 Server: Object 4:82 not found (message 94)
21:47:24 Server: Object 4:83 not found (message 94)
21:47:24 Server: Object 4:84 not found (message 94)
21:47:24 Server: Object 4:85 not found (message 94)
21:47:24 Server: Object 4:86 not found (message 94)
21:47:24 Server: Object 4:87 not found (message 94)
21:47:25 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGGING IN"
21:47:25 "INFO - Player: PID#4(zambas)(UID:76561198189864193/CID:1) Status: LOGIN PUBLISHING, Location Wilderness [051157]"
21:47:25 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:25 "infiSTAR.de ******ADMIN-LOGIN******: zambas(76561198189864193)"
21:47:25 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (zambas) REMOTE,"76561198189864193"]"
21:47:25 "INFO - Player: zambas(UID:76561198189864193/CID:1) Status: CLIENT LOADED & PLAYING"
21:47:27 "B 1-1-C:1 (zambas) REMOTE, SafeZoneState, [0], 4"
21:47:27 "<infiSTAR.de> SAFEZONELOG: zambas(76561198189864193) -    Left SafeZone @051157"
21:47:29 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas G_o_d ON"
21:47:29 "<infiSTAR.de> AdminLog: 0h 00min | zambas G_o_d ON"
21:47:32 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas GroupIcons Activated"
21:47:32 "<infiSTAR.de> AdminLog: 0h 00min | zambas GroupIcons Activated"
21:47:34 "INFO - Player: KRYTERION(UID:76561198023876576/CID:4) Status: CLIENT LOADED & PLAYING"
21:47:34 "<infiSTAR.de> CONNECTLOG: DISCONNECT - KRYTERION(76561198023876576)"
21:47:34 "INFO - Player: KRYTERION(UID:76561198023876576/CID:4) Status: LOGGED OUT, Location Wilderness [081051]"
21:47:34 Client: Remote object 3:5 not found
21:47:34 Warning: Cleanup player - person 3:4 not found
21:47:45 Warning: looped for animation: ca\anims\characters\data\anim\sdr\mov\erc\stp\non\non\amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end.rtm differs (looped now 0)! MoveName: amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end
21:49:12 "<infiSTAR.de> CONNECTLOG: CONNECT - KRYTERION(76561198023876576)"
21:49:13 Server: Object 3:82 not found (message 94)
21:49:13 Server: Object 3:62 not found (message 70)
21:49:13 Server: Object 3:63 not found (message 94)
21:49:13 Server: Object 3:64 not found (message 94)
21:49:13 Server: Object 3:65 not found (message 94)
21:49:13 Server: Object 3:66 not found (message 94)
21:49:13 Server: Object 3:67 not found (message 94)
21:49:13 Server: Object 3:68 not found (message 94)
21:49:13 Server: Object 3:69 not found (message 94)
21:49:13 Server: Object 3:70 not found (message 94)
21:49:13 Server: Object 3:71 not found (message 94)
21:49:13 Server: Object 3:72 not found (message 94)
21:49:13 Server: Object 3:73 not found (message 94)
21:49:13 Server: Object 3:74 not found (message 94)
21:49:13 Server: Object 3:75 not found (message 94)
21:49:13 Server: Object 3:76 not found (message 94)
21:49:13 Server: Object 3:77 not found (message 94)
21:49:13 Server: Object 3:78 not found (message 94)
21:49:13 Server: Object 3:79 not found (message 94)
21:49:13 Server: Object 3:80 not found (message 94)
21:49:13 Server: Object 3:81 not found (message 94)
21:49:13 Server: Object 3:83 not found (message 94)
21:49:13 Server: Object 3:84 not found (message 94)
21:49:13 Server: Object 3:85 not found (message 94)
21:49:13 Server: Object 3:86 not found (message 94)
21:49:13 Server: Object 3:87 not found (message 94)
21:49:13 Server: Object 3:60 not found (message 94)
21:49:13 Server: Object 3:61 not found (message 94)
21:49:13 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGGING IN"
21:49:13 "INFO - Player: PID#3(KRYTERION)(UID:76561198023876576/CID:4) Status: LOGIN PUBLISHING, Location Wilderness [081051]"
21:49:13 "INFO - Player: KRYTERION(UID:76561198023876576/CID:4) Status: CLIENT LOADED & PLAYING"
21:49:15 "B 1-1-B:1 (KRYTERION) REMOTE, SafeZoneState, [0], 3"
21:49:15 "<infiSTAR.de> SAFEZONELOG: KRYTERION(76561198023876576) -    Left SafeZone @081051"
21:50:07 "B 1-1-B:1 (KRYTERION) REMOTE, SafeZoneState, [1], 3"
21:50:07 "<infiSTAR.de> SAFEZONELOG: KRYTERION(76561198023876576) -    Entered SafeZone @082050"
21:51:27 Server: Object 3:148 not found (message 94)
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemGPS into gear at trader city Lenzburg for 30,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemEtool into gear at trader city Lenzburg for 9,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemHatchet into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemKnife into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemToolbox into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemCrowbar into gear at trader city Lenzburg for 2,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemSledge into gear at trader city Lenzburg for 8,000 Coins"
21:51:27 "Trader Menu: KRYTERION (76561198023876576) purchased 1x ItemKeyKit into gear at trader city Lenzburg for 20,000 Coins"
21:52:13 "WAI: Mission:[Hero] Cannibal started at [10484.6,4212.71,0]"
21:52:14 "WAI: Spawned a group of 6 AI (bandit) at [10496.6,4255.21,0]"
21:52:14 "WAI: Spawned a group of 4 AI (bandit) at [10495.6,4253.71,0]"
21:52:14 trigger - unknown animation source revolved
21:52:15 "WAI: Spawned a group of 4 AI (bandit) at [10472.6,4169.71,0]"
21:52:15 "WAI: Spawned a group of 4 AI (bandit) at [10471.6,4169.71,0]"
21:52:15 No owner
21:52:15 No owner
21:52:15 No owner
21:52:15 No owner
21:52:15 Strange convex component01 in rh_m14\rh_m1stsp.p3d:geometry
21:52:15 Strange convex component07 in rh_m14\rh_m1stsp.p3d:geometry
21:52:15 Strange convex component08 in rh_m14\rh_m1stsp.p3d:geometry
21:52:15 Strange convex component12 in rh_m14\rh_m1stsp.p3d:geometry
21:52:16 "WAI: Spawned a group of 6 AI (bandit) at [10473.6,4255.21,0]"
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Daniel Doe is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:16 WARNING: Function 'name' - Matthew Lewis is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Tyler Rochelle is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:17 WARNING: Function 'name' - Nicholas Lopez is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - John Walker is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:52:38 WARNING: Function 'name' - Miguel Self is dead
21:53:12 "SERVER FPS: 45  PLAYERS: 2"
21:53:39 Server: Object 3:158 not found (message 94)
21:53:39 "HIVE: WRITE: "CHILD:308:24:350z_ruben:0:2883:[210,[8259.37,15472.3,-5.00679e-005]]:[]:[]:1:889621015472637:""
21:53:39 "Trader Menu: KRYTERION (76561198023876576) purchased 1x 350z_ruben into gear at trader city Lenzburg for 30,000 Coins"
21:53:39 "HIVE: WRITE: "CHILD:388:889621015472637:""
21:53:39 "CUSTOM: Selected "8""
21:53:39 "PUBLISH: KRYTERION(76561198023876576) bought 350z_ruben with ObjectUID 889621015472637"
21:53:47 "<infiSTAR.de> LockUnlockVehicle: 350z_ruben UNLOCKED @082050 [8259.37,15472.3,1.85966e-005]"
21:53:49 "HIVE: WRITE: "CHILD:305:8:[0,[8259.370117,15472.308594,1.85966e-005]]:1:""
21:53:49 "HIVE: WRITE: "CHILD:303:8:[[[],[]],[[],[]],[[],[]]]:-1:""
21:53:49 "HIVE: WRITE: "CHILD:306:8:[["motor",0],["karoserie",0],["palivo",0],["levy predni tlumic",0],["pravy predni tlumic",0],["levy zadni tlumic",0],["pravy zadni tlumic",0],["sklo predni L",0],["sklo predni P",0],["sklo predni P",0],["sklo predni L",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["glass3",0],["glass4",0]]:0:""
21:53:59 "HIVE: WRITE: "CHILD:305:8:[190.0537415,[8275.152344,15465.177734,0.00253248]]:0.996432:""
21:54:39 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12374.4,5086.36,0]]"
21:54:39 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051157([5180.32,4699.93,0.00144196]) to 123153([12374.4,5086.36,0]) | Key: any"
21:54:39 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12374.4,5086.36,0]]"
21:54:40 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12374.4,5086.36,0]"
21:54:40 "<infiSTAR.de> AdminLog: 0h 11min | Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12374.4,5086.36,0]"
21:54:40 "B 1-1-C:1 (zambas) REMOTE, SafeZoneState, [1], 4"
21:54:40 "<infiSTAR.de> SAFEZONELOG: zambas(76561198189864193) -    Entered SafeZone @123153"
21:54:41 "HIVE: WRITE: "CHILD:305:8:[232.651093,[8258.665039,15450.264648,0.000824928]]:0.98121:""
21:54:55 "HIVE: WRITE: "CHILD:305:8:[258.449188,[8242.0693359,15457.748047,0.0249739]]:0.975406:""
21:55:04 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"Mi17_Civilian_DZ",[316.928,[12369,5092.21,0]],"ItemKeyRed869"]"
21:55:04 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"Mi17_Civilian_DZ",[316.928,[12369,5092.21,0]],"ItemKeyRed869"]"
21:55:04 "Res3tting B!S effects..."
21:55:04 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned Mi17_Civilian_DZ @[316.928,[12369,5092.21,0]]"
21:55:04 "<infiSTAR.de> AdminLog: 0h 11min | zambas (76561198189864193) hivespawned Mi17_Civilian_DZ @[316.928,[12369,5092.21,0]]"
21:55:06 "HIVE: WRITE: "CHILD:305:9:[316.989044,[12368.908203,5092.16748,-0.0477448]]:1:""
21:55:06 "HIVE: WRITE: "CHILD:303:9:[[[],[]],[[],[]],[[],[]]]:-1:""
21:55:06 "HIVE: WRITE: "CHILD:306:9:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:55:06 "INFO: needUpdate_objects=[2225c100# 982796: mi_8amt.p3d]"
21:55:06 "HIVE: WRITE: "CHILD:306:9:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:55:09 "HIVE: WRITE: "CHILD:305:8:[259.801544,[8242.610352,15457.874023,0.0173826]]:0.970644:""
21:55:09 "HIVE: WRITE: "CHILD:306:8:[["motor",0],["karoserie",0],["palivo",0],["levy predni tlumic",0],["pravy predni tlumic",0],["levy zadni tlumic",0],["pravy zadni tlumic",0],["sklo predni L",0],["sklo predni P",0],["sklo predni P",0],["sklo predni L",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["glass3",0],["glass4",0]]:0:""
21:55:12 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5157.46,4822.46,0]]"
21:55:12 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 123153([12374.1,5083.19,0.00146484]) to 051156([5157.46,4822.46,0]) | Key: any"
21:55:12 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5157.46,4822.46,0]]"
21:55:12 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051156   WorldSpace: [5157.46,4822.46,0]"
21:55:12 "<infiSTAR.de> AdminLog: 0h 11min | Admin zambas(76561198189864193) teleported to   GPS: 051156   WorldSpace: [5157.46,4822.46,0]"
21:55:13 Strange convex component01 in rh_m14\rh_sc2aim.p3d:geometry
21:55:13 Strange convex component07 in rh_m14\rh_sc2aim.p3d:geometry
21:55:13 Strange convex component12 in rh_m14\rh_sc2aim.p3d:geometry
21:55:33 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"MH60S",[328.115,[5151.52,4834.53,0]],"ItemKeyYellow1146"]"
21:55:33 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"MH60S",[328.115,[5151.52,4834.53,0]],"ItemKeyYellow1146"]"
21:55:33 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned MH60S @[328.115,[5151.52,4834.53,0]]"
21:55:33 "<infiSTAR.de> AdminLog: 0h 11min | zambas (76561198189864193) hivespawned MH60S @[328.115,[5151.52,4834.53,0]]"
21:55:34 "HIVE: WRITE: "CHILD:305:10:[328.11264,[5151.522949,4834.516113,-0.026886]]:1:""
21:55:34 "HIVE: WRITE: "CHILD:303:10:[[[],[]],[[],[]],[[],[]]]:-1:""
21:55:34 "HIVE: WRITE: "CHILD:306:10:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:34 "INFO: needUpdate_objects=[314010c0# 982819: mh_60mg.p3d]"
21:55:34 "HIVE: WRITE: "CHILD:306:10:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:43 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,314010c0# 982819: mh_60mg.p3d]"
21:55:43 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,314010c0# 982819: mh_60mg.p3d]"
21:55:43 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  MH60S (characterID: 8646)  - to the database"
21:55:43 "<infiSTAR.de> AdminLog: 0h 12min | zambas saved -  MH60S (characterID: 8646)  - to the database"
21:55:43 "HIVE: WRITE: "CHILD:305:11:[328.0986328,[5151.522949,4834.516113,0.0348053]]:1:""
21:55:43 "HIVE: WRITE: "CHILD:306:11:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:43 "INFO: needUpdate_objects=[314010c0# 982819: mh_60mg.p3d]"
21:55:43 "HIVE: WRITE: "CHILD:306:11:[["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0]]:0:""
21:55:49 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12363.3,5091.94,0]]"
21:55:49 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051156([5154.91,4838.98,0.00144196]) to 123153([12363.3,5091.94,0]) | Key: any"
21:55:49 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12363.3,5091.94,0]]"
21:55:50 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12363.3,5091.94,0]"
21:55:50 "<infiSTAR.de> AdminLog: 0h 12min | Admin zambas(76561198189864193) teleported to   GPS: 123153   WorldSpace: [12363.3,5091.94,0]"
21:55:56 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,2225c100# 982796: mi_8amt.p3d]"
21:55:56 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,2225c100# 982796: mi_8amt.p3d]"
21:55:56 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  Mi17_Civilian_DZ (characterID: 3369)  - to the database"
21:55:56 "<infiSTAR.de> AdminLog: 0h 12min | zambas saved -  Mi17_Civilian_DZ (characterID: 3369)  - to the database"
21:55:56 "HIVE: WRITE: "CHILD:305:12:[317.0608215,[12368.907227,5092.234375,0.0538025]]:1:""
21:55:56 "HIVE: WRITE: "CHILD:306:12:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:55:56 "INFO: needUpdate_objects=[2225c100# 982796: mi_8amt.p3d]"
21:55:56 "HIVE: WRITE: "CHILD:306:12:[["glass1",0],["glass2",0],["glass3",0],["glass4",0],["glass5",0],["glass6",0],["NEtrup",0],["motor",0],["elektronika",0],["mala vrtule",0],["velka vrtule",0],["munice",0],["sklo predni P",0],["sklo predni L",0]]:0:""
21:56:06 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15485.2,13209.5,0]]"
21:56:06 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 123153([12362.3,5091.75,0.00151062]) to 154072([15485.2,13209.5,0]) | Key: any"
21:56:06 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15485.2,13209.5,0]]"
21:56:06 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 154072   WorldSpace: [15485.2,13209.5,0]"
21:56:06 "<infiSTAR.de> AdminLog: 0h 12min | Admin zambas(76561198189864193) teleported to   GPS: 154072   WorldSpace: [15485.2,13209.5,0]"
21:56:08 MuzzleFlashROT - unknown animation source ammoRandom
21:56:08 Server: Object 4:205 not found (message 70)
21:56:08 Server: Object 4:203 not found (message 70)
21:56:08 Server: Object 4:204 not found (message 94)
21:56:08 Server: Object 4:206 not found (message 94)
21:56:08 Server: Object 4:207 not found (message 94)
21:56:08 Server: Object 4:208 not found (message 70)
21:56:08 trigger - unknown animation source revolved
21:56:08 Server: Object 4:219 not found (message 70)
21:56:09 Server: Object 4:227 not found (message 70)
21:56:09 Server: Object 4:231 not found (message 70)
21:56:09 Server: Object 4:233 not found (message 94)
21:56:09 Server: Object 4:232 not found (message 70)
21:56:09 Server: Object 4:240 not found (message 70)
21:56:09 Server: Object 4:243 not found (message 94)
21:56:09 Server: Object 4:244 not found (message 70)
21:56:33 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"Ikarus",[309.84,[15434.1,13235.9,0]],"ItemKeyRed1298"]"
21:56:33 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"Ikarus",[309.84,[15434.1,13235.9,0]],"ItemKeyRed1298"]"
21:56:33 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned Ikarus @[309.84,[15434.1,13235.9,0]]"
21:56:33 "<infiSTAR.de> AdminLog: 0h 12min | zambas (76561198189864193) hivespawned Ikarus @[309.84,[15434.1,13235.9,0]]"
21:56:34 "HIVE: WRITE: "CHILD:305:13:[309.874695,[15434.223633,13235.99707,-0.0228767]]:1:""
21:56:34 "HIVE: WRITE: "CHILD:303:13:[[[],[]],[[],[]],[[],[]]]:-1:""
21:56:34 "HIVE: WRITE: "CHILD:306:13:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:34 "INFO: needUpdate_objects=[30ff50c0# 982920: ikarus.p3d]"
21:56:34 "HIVE: WRITE: "CHILD:306:13:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:39 "WAI: [Mission:[Hero] Ural Attack]: Starting... [8531.94,7159.58,0]"
21:56:39 "WAI: Spawned a group of 4 AI (Bandit) at [8531.94,7159.58,0]"
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:39 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,30ff50c0# 982920: ikarus.p3d]"
21:56:39 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,30ff50c0# 982920: ikarus.p3d]"
21:56:39 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  Ikarus (characterID: 3798)  - to the database"
21:56:39 "<infiSTAR.de> AdminLog: 0h 13min | zambas saved -  Ikarus (characterID: 3798)  - to the database"
21:56:39 "WAI: Spawned a group of 4 AI (Bandit) at [8531.94,7159.58,0]"
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:39 No owner
21:56:40 "HIVE: WRITE: "CHILD:305:14:[310.0206909,[15434.256836,13236.0302734,0.0348883]]:1:""
21:56:40 "HIVE: WRITE: "CHILD:306:14:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:40 "INFO: needUpdate_objects=[30ff50c0# 982920: ikarus.p3d]"
21:56:40 "HIVE: WRITE: "CHILD:306:14:[["glass5",0],["glass6",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:56:40 "WAI: Spawned a group of 4 AI (Bandit) at [8531.94,7159.58,0]"
21:56:49 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[10392.3,8284.07,0]]"
21:56:49 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 154072([15436.9,13227.4,0.00143433]) to 103121([10392.3,8284.07,0]) | Key: any"
21:56:49 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[10392.3,8284.07,0]]"
21:56:49 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 103121   WorldSpace: [10392.3,8284.07,0]"
21:56:49 "<infiSTAR.de> AdminLog: 0h 13min | Admin zambas(76561198189864193) teleported to   GPS: 103121   WorldSpace: [10392.3,8284.07,0]"
21:57:16 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Pink",[283.942,[10388.4,8253.71,0]],"ItemKeyBlack356"]"
21:57:16 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Pink",[283.942,[10388.4,8253.71,0]],"ItemKeyBlack356"]"
21:57:16 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned SUV_Pink @[283.942,[10388.4,8253.71,0]]"
21:57:16 "<infiSTAR.de> AdminLog: 0h 13min | zambas (76561198189864193) hivespawned SUV_Pink @[283.942,[10388.4,8253.71,0]]"
21:57:18 "HIVE: WRITE: "CHILD:305:15:[284.0773621,[10388.375977,8253.672852,0.00376129]]:1:""
21:57:18 "HIVE: WRITE: "CHILD:303:15:[[[],[]],[[],[]],[[],[]]]:-1:""
21:57:18 "HIVE: WRITE: "CHILD:306:15:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:18 "INFO: needUpdate_objects=[30d03040# 982992: suv.p3d]"
21:57:18 "HIVE: WRITE: "CHILD:306:15:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:24 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,30d03040# 982992: suv.p3d]"
21:57:24 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,30d03040# 982992: suv.p3d]"
21:57:24 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  SUV_Pink (characterID: 10356)  - to the database"
21:57:24 "<infiSTAR.de> AdminLog: 0h 13min | zambas saved -  SUV_Pink (characterID: 10356)  - to the database"
21:57:24 "HIVE: WRITE: "CHILD:305:16:[285.752594,[10388.313477,8253.651367,0.0580368]]:1:""
21:57:24 "HIVE: WRITE: "CHILD:306:16:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:24 "INFO: needUpdate_objects=[30d03040# 982992: suv.p3d]"
21:57:24 "HIVE: WRITE: "CHILD:306:16:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:57:42 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12522,13572.3,0]]"
21:57:42 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 103122([10394,8245.87,0.00184631]) to 125069([12522,13572.3,0]) | Key: any"
21:57:42 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[12522,13572.3,0]]"
21:57:42 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 125069   WorldSpace: [12522,13572.3,0]"
21:57:42 "<infiSTAR.de> AdminLog: 0h 14min | Admin zambas(76561198189864193) teleported to   GPS: 125069   WorldSpace: [12522,13572.3,0]"
21:57:43 trigger - unknown animation source revolved
21:57:56 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"Kamaz_DZE",[22.7175,[12525.1,13579.7,0]],"ItemKeyYellow565"]"
21:57:56 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"Kamaz_DZE",[22.7175,[12525.1,13579.7,0]],"ItemKeyYellow565"]"
21:57:56 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned Kamaz_DZE @[22.7175,[12525.1,13579.7,0]]"
21:57:56 "<infiSTAR.de> AdminLog: 0h 14min | zambas (76561198189864193) hivespawned Kamaz_DZE @[22.7175,[12525.1,13579.7,0]]"
21:57:57 "HIVE: WRITE: "CHILD:305:17:[22.806665,[12525.128906,13579.953125,0.0102692]]:1:""
21:57:57 "HIVE: WRITE: "CHILD:303:17:[[[],[]],[[],[]],[[],[]]]:-1:""
21:57:57 "HIVE: WRITE: "CHILD:306:17:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:57:57 "INFO: needUpdate_objects=[22760100# 983019: kamaz.p3d]"
21:57:57 "HIVE: WRITE: "CHILD:306:17:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:58:01 Server: Object 4:285 not found (message 70)
21:58:01 Server: Object 4:286 not found (message 94)
21:58:01 Server: Object 4:287 not found (message 94)
21:58:01 Server: Object 4:288 not found (message 94)
21:58:01 Server: Object 4:289 not found (message 94)
21:58:02 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,22760100# 983019: kamaz.p3d]"
21:58:02 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,22760100# 983019: kamaz.p3d]"
21:58:02 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  Kamaz_DZE (characterID: 8065)  - to the database"
21:58:02 "<infiSTAR.de> AdminLog: 0h 14min | zambas saved -  Kamaz_DZE (characterID: 8065)  - to the database"
21:58:02 "HIVE: WRITE: "CHILD:305:18:[23.0717564,[12525.158203,13580.0410156,0.0665436]]:1:""
21:58:02 "HIVE: WRITE: "CHILD:306:18:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:58:02 "INFO: needUpdate_objects=[22760100# 983019: kamaz.p3d]"
21:58:02 "HIVE: WRITE: "CHILD:306:18:[["wheel_1_1_steering",0],["wheel_2_1_steering",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["wheel_1_2_steering",0],["wheel_2_2_steering",0],["motor",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["palivo",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0:""
21:58:08 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[2108.06,7804.14,0]]"
21:58:08 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 125069([12521.6,13579.3,0.00131989]) to 021126([2108.06,7804.14,0]) | Key: any"
21:58:08 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[2108.06,7804.14,0]]"
21:58:08 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 021126   WorldSpace: [2108.06,7804.14,0]"
21:58:08 "<infiSTAR.de> AdminLog: 0h 14min | Admin zambas(76561198189864193) teleported to   GPS: 021126   WorldSpace: [2108.06,7804.14,0]"
21:58:13 Server: Object 4:305 not found (message 94)
21:58:13 Server: Object 4:306 not found (message 94)
21:58:13 Server: Object 4:320 not found (message 70)
21:58:13 Server: Object 4:319 not found (message 70)
21:58:13 Server: Object 4:318 not found (message 70)
21:58:13 Server: Object 4:324 not found (message 70)
21:58:13 Server: Object 4:323 not found (message 70)
21:58:13 Server: Object 4:326 not found (message 70)
21:58:13 Server: Object 4:332 not found (message 70)
21:58:13 Server: Object 4:331 not found (message 70)
21:58:13 Server: Object 4:330 not found (message 70)
21:58:13 Server: Object 4:329 not found (message 70)
21:58:13 Server: Object 4:325 not found (message 94)
21:58:13 Server: Object 4:328 not found (message 70)
21:58:13 Server: Object 4:327 not found (message 94)
21:58:13 Server: Object 4:333 not found (message 70)
21:58:13 Server: Object 4:337 not found (message 70)
21:58:13 Server: Object 4:338 not found (message 70)
21:58:13 Server: Object 4:336 not found (message 94)
21:58:13 Server: Object 4:335 not found (message 70)
21:58:13 Server: Object 4:334 not found (message 94)
21:58:26 "infiSTAR.de fnc_AdminFirstReq: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Charcoal",[352.437,[2114.34,7811.95,0]],"ItemKeyGreen482"]"
21:58:26 "infiSTAR.de fnc_AdminReqProceed: [-3,B 1-1-C:1 (zambas) REMOTE,"SUV_Charcoal",[352.437,[2114.34,7811.95,0]],"ItemKeyGreen482"]"
21:58:26 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas (76561198189864193) hivespawned SUV_Charcoal @[352.437,[2114.34,7811.95,0]]"
21:58:26 "<infiSTAR.de> AdminLog: 0h 14min | zambas (76561198189864193) hivespawned SUV_Charcoal @[352.437,[2114.34,7811.95,0]]"
21:58:28 "HIVE: WRITE: "CHILD:305:19:[352.374084,[2114.341064,7811.897949,0.000928879]]:1:""
21:58:28 "HIVE: WRITE: "CHILD:303:19:[[[],[]],[[],[]],[[],[]]]:-1:""
21:58:28 "HIVE: WRITE: "CHILD:306:19:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:58:28 "INFO: needUpdate_objects=[30f9b040# 983087: suv.p3d]"
21:58:28 "HIVE: WRITE: "CHILD:306:19:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:58:34 "infiSTAR.de fnc_AdminFirstReq: [26,B 1-1-C:1 (zambas) REMOTE,30f9b040# 983087: suv.p3d]"
21:58:34 "infiSTAR.de fnc_AdminReqProceed: [26,B 1-1-C:1 (zambas) REMOTE,30f9b040# 983087: suv.p3d]"
21:58:34 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas saved -  SUV_Charcoal (characterID: 482)  - to the database"
21:58:34 "<infiSTAR.de> AdminLog: 0h 14min | zambas saved -  SUV_Charcoal (characterID: 482)  - to the database"
21:58:34 "HIVE: WRITE: "CHILD:305:20:[352.16571,[2114.341064,7811.865723,0.0578003]]:1:""
21:58:34 "HIVE: WRITE: "CHILD:306:20:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:58:34 "INFO: needUpdate_objects=[30f9b040# 983087: suv.p3d]"
21:58:34 "HIVE: WRITE: "CHILD:306:20:[["wheel_1_1_steering",0],["wheel_1_2_steering",0],["wheel_2_1_steering",0],["wheel_2_2_steering",0],["palivo",0],["motor",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0],["sklo predni P",0],["sklo predni L",0],["karoserie",0],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0]]:0:""
21:59:12 "SERVER FPS: 45  PLAYERS: 2"
22:00:01 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8572.68,13352.9,0]]"
22:00:01 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 021126([2109.61,7807.16,0.00141287]) to 085071([8572.68,13352.9,0]) | Key: any"
22:00:01 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8572.68,13352.9,0]]"
22:00:01 Server: Object 4:347 not found (message 94)
22:00:01 Server: Object 4:345 not found (message 94)
22:00:01 Server: Object 4:346 not found (message 70)
22:00:01 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8572.68,13352.9,0]"
22:00:01 "<infiSTAR.de> AdminLog: 0h 16min | Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8572.68,13352.9,0]"
22:00:01 Server: Object 4:353 not found (message 94)
22:00:01 Server: Object 4:354 not found (message 70)
22:00:01 Server: Object 4:359 not found (message 70)
22:00:01 Server: Object 4:358 not found (message 70)
22:00:01 Server: Object 4:357 not found (message 70)
22:00:01 Server: Object 4:356 not found (message 70)
22:00:01 Server: Object 4:355 not found (message 70)
22:00:01 Server: Object 4:352 not found (message 70)
22:00:01 Server: Object 4:361 not found (message 94)
22:00:01 Server: Object 4:364 not found (message 70)
22:00:01 Server: Object 4:369 not found (message 70)
22:00:01 Server: Object 4:368 not found (message 70)
22:00:01 Server: Object 4:367 not found (message 70)
22:00:01 Server: Object 4:363 not found (message 70)
22:00:01 Server: Object 4:362 not found (message 94)
22:00:01 Server: Object 4:365 not found (message 94)
22:00:01 Server: Object 4:366 not found (message 70)
22:00:01 Server: Object 4:360 not found (message 94)
22:00:05 "B 1-1-C:1 (zambas) REMOTE, SafeZoneState, [0], 4"
22:00:05 "<infiSTAR.de> SAFEZONELOG: zambas(76561198189864193) -    Left SafeZone @085071"
22:00:09 "RUNNING EVENT: crash_spawner on [2017,8,26,14,0]"
22:00:09 Warning Message: Script z\addons\dayz_server\modules\crash_spawner.sqf not found
22:01:09 "WAI: [Mission:[Hero] Gemstone Mine]: Starting... [15233.4,4947.3,0]"
22:01:10 "WAI: Spawned a group of 6 AI (Bandit) at [15243.4,4957.3,0]"
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 "WAI: Spawned a group of 4 AI (Bandit) at [15223.4,4937.3,0]"
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 "WAI: Spawned a group of 3 AI (Bandit) at [15243.4,4937.3,0]"
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:11 No owner
22:01:12 "WAI: Spawned a group of 3 AI (Bandit) at [15223.4,4957.3,0]"
22:01:12 "WAI: Spawned a group of 3 AI (Bandit) at [15283.4,4947.3,0]"
22:01:13 "WAI: Spawned a group of 3 AI (Bandit) at [15183.4,4947.3,0]"
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 No owner
22:01:13 "WAI: Spawned a group of 3 AI (Bandit) at [15233.4,4997.3,0]"
22:01:14 "WAI: Spawned in 1 M2StaticMG"
22:01:14 "WAI: Spawned in 1 M2StaticMG"
22:01:39 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15285.4,4918.45,0]]"
22:01:39 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 085071([8572.68,13352.9,0.00135803]) to 152155([15285.4,4918.45,0]) | Key: any"
22:01:39 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15285.4,4918.45,0]]"
22:01:39 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 152155   WorldSpace: [15285.4,4918.45,0]"
22:01:39 "<infiSTAR.de> AdminLog: 0h 18min | Admin zambas(76561198189864193) teleported to   GPS: 152155   WorldSpace: [15285.4,4918.45,0]"
22:02:02 Error in expression <

if(_complete) then {
[_crate,10,8,[25,crate_items_gem],3] call dynamic_crate;
>
22:02:02   Error position: <crate_items_gem],3] call dynamic_crate;
>
22:02:02   Error Undefined variable in expression: crate_items_gem
22:02:02 File z\addons\dayz_server\WAI\missions\hero\gemstonemine.sqf, line 63
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression < "_i" from 1 to _num_items do {
_item = _item_array call BIS_fnc_selectRandom;

>
22:02:02   Error position: <_item_array call BIS_fnc_selectRandom;

>
22:02:02   Error Undefined variable in expression: _item_array
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 90
22:02:02 Error in expression <mmo, (1 + floor(random 5))];
};

};

if(_num_backpacks > 0) then {

_num_backpac>
22:02:02   Error position: <_num_backpacks > 0) then {

_num_backpac>
22:02:02   Error Undefined variable in expression: _num_backpacks
22:02:02 File z\addons\dayz_server\WAI\compile\dynamic_crate.sqf, line 114
22:02:02 "WAI: [Mission:[Hero] Gemstone Mine]: Ended at [15233.4,4947.3,0]"
22:02:17 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,14,2],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,8,26,14,2]]
22:03:33 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.9,4706.58,0]]"
22:03:33 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 152155([15256.9,4970.33,0.00274658]) to 051157([5172.9,4706.58,0]) | Key: any"
22:03:33 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.9,4706.58,0]]"
22:03:34 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.9,4706.58,0]"
22:03:34 "<infiSTAR.de> AdminLog: 0h 19min | Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.9,4706.58,0]"
22:03:43 "WAI: [Mission:[Hero] ARMY Base]: Starting... [6045.06,13815.9,0]"
22:03:45 "WAI: Spawned a group of 4 AI (Bandit) at [6033.06,13817.9,0]"
22:03:45 No owner
22:03:45 No owner
22:03:45 No owner
22:03:45 No owner
22:03:46 "WAI: Spawned a group of 4 AI (Bandit) at [6047.06,13817.9,0]"
22:03:46 No owner
22:03:46 No owner
22:03:46 No owner
22:03:46 No owner
22:03:46 Strange convex component01 in rh_m14\rh_m1staim.p3d:geometry
22:03:46 Strange convex component07 in rh_m14\rh_m1staim.p3d:geometry
22:03:46 Strange convex component12 in rh_m14\rh_m1staim.p3d:geometry
22:03:46 "WAI: Spawned a group of 4 AI (Bandit) at [6059.06,13780.9,0]"
22:03:47 "WAI: Spawned a group of 4 AI (Bandit) at [6058.06,13850.9,0]"
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 No owner
22:03:48 "WAI: Spawned a group of 4 AI (Bandit) at [6060.06,13817.9,0]"
22:03:49 "WAI: Spawned in 1 M2StaticMG"
22:03:50 "WAI: Spawned in 1 M2StaticMG"
22:04:21 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8568.55,13357.9,0]]"
22:04:21 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051157([5172.9,4706.58,0.00144958]) to 085071([8568.55,13357.9,0]) | Key: any"
22:04:21 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[8568.55,13357.9,0]]"
22:04:21 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8568.55,13357.9,0]"
22:04:21 "<infiSTAR.de> AdminLog: 0h 20min | Admin zambas(76561198189864193) teleported to   GPS: 085071   WorldSpace: [8568.55,13357.9,0]"
22:05:13 "SERVER FPS: 47  PLAYERS: 2"
22:06:05 "WAI: [Mission:[Hero] Weapon Cache]: Starting... [3002.57,11130.6,0]"
22:06:06 No owner
22:06:06 No owner
22:06:06 No owner
22:06:06 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:07 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:08 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:09 No owner
22:06:09 No owner
22:06:09 No owner
22:06:09 Strange convex component01 in rh_m14\rh_m21.p3d:geometry
22:06:09 Strange convex component07 in rh_m14\rh_m21.p3d:geometry
22:06:09 Strange convex component08 in rh_m14\rh_m21.p3d:geometry
22:06:09 Strange convex component12 in rh_m14\rh_m21.p3d:geometry
22:06:10 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:11 "WAI: Spawned a group of 4 AI (Bandit) at [3002.57,11130.6,0]"
22:06:12 "WAI: Spawned in 2 M2StaticMG"
22:06:29 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.92,4695.89,0]]"
22:06:29 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 085071([8567.76,13357.1,0.00148773]) to 051157([5172.92,4695.89,0]) | Key: any"
22:06:29 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5172.92,4695.89,0]]"
22:06:29 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.92,4695.89,0]"
22:06:29 "<infiSTAR.de> AdminLog: 0h 22min | Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5172.92,4695.89,0]"
22:08:58 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15295.9,4843.47,0]]"
22:08:58 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 051157([5179.91,4696.73,0.00144196]) to 152156([15295.9,4843.47,0]) | Key: any"
22:08:58 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[15295.9,4843.47,0]]"
22:08:58 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 152156   WorldSpace: [15295.9,4843.47,0]"
22:08:58 "<infiSTAR.de> AdminLog: 0h 25min | Admin zambas(76561198189864193) teleported to   GPS: 152156   WorldSpace: [15295.9,4843.47,0]"
22:09:47 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas plus 2500 Humanity to zambas"
22:09:47 "<infiSTAR.de> AdminLog: 0h 26min | zambas plus 2500 Humanity to zambas"
22:09:48 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   zambas plus 2500 Humanity to zambas"
22:09:48 "<infiSTAR.de> AdminLog: 0h 26min | zambas plus 2500 Humanity to zambas"
22:10:17 "WAI: [Mission:[Hero] Communication Center]: Starting... [1704.73,11167.1,0]"
22:10:18 Error in expression <launcher call find_suitable_ammunition;
_unit addMagazine _rocket;
_unit addMaga>
22:10:18   Error position: <_unit addMagazine _rocket;
_unit addMaga>
22:10:18   Error Undefined variable in expression: _unit
22:10:18 File z\addons\dayz_server\WAI\compile\spawn_group.sqf, line 197
22:10:18 "WAI: Spawned a group of any AI (Bandit) at [1604.73,11267.1,0]"
22:10:18 Error in expression < random(25));
};
};

for "_x" from 1 to _unitnumber do {

call {
if(typeName(_gu>
22:10:18   Error position: <_unitnumber do {

call {
if(typeName(_gu>
22:10:18   Error Undefined variable in expression: _unitnumber
22:10:18 File z\addons\dayz_server\WAI\compile\spawn_group.sqf, line 62
22:10:18 Error in expression < 0) -100, (_position select 1) +100, 0],_num,"Extreme",["Random","AT"],4,"Random>
22:10:18   Error position: <_num,"Extreme",["Random","AT"],4,"Random>
22:10:18   Error Undefined variable in expression: _num
22:10:18 File z\addons\dayz_server\WAI\missions\hero\comm.sqf, line 35
22:10:18 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5161.77,4698.68,0]]"
22:10:18 "<infiSTAR.de> ADMINTP: Admin zambas(76561198189864193) Teleport: 152155([15278.8,4929.73,0.00268555]) to 051157([5161.77,4698.68,0]) | Key: any"
22:10:18 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (zambas) REMOTE,B 1-1-C:1 (zambas) REMOTE,[5161.77,4698.68,0]]"
22:10:18 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (zambas) REMOTE   Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5161.77,4698.68,0]"
22:10:18 "<infiSTAR.de> AdminLog: 0h 26min | Admin zambas(76561198189864193) teleported to   GPS: 051157   WorldSpace: [5161.77,4698.68,0]"
22:10:19 trigger - unknown animation source revolved
22:10:19 "WAI: Spawned a group of 3 AI (Bandit) at [1804.73,11067.1,0]"
22:10:20 No owner
22:10:20 No owner
22:10:20 No owner
22:10:20 No owner
22:10:20 Strange convex component01 in rh_m14\rh_m1seot.p3d:geometry
22:10:20 Strange convex component07 in rh_m14\rh_m1seot.p3d:geometry
22:10:20 Strange convex component12 in rh_m14\rh_m1seot.p3d:geometry
22:10:20 "WAI: Spawned a group of 3 AI (Bandit) at [1804.73,11267.1,0]"
22:10:21 No owner
22:10:21 No owner
22:10:21 No owner
22:10:21 No owner
22:10:21 "WAI: Spawned a group of 3 AI (Bandit) at [1604.73,11067.1,0]"
22:10:22 "WAI: Spawned a group of 3 AI (Bandit) at [1704.73,11167.1,0]"
22:10:23 "WAI: Spawned in 1 M2StaticMG"
22:10:23 "WAI: Spawned in 1 M2StaticMG"
22:10:24 "WAI: Spawned in 1 M2StaticMG"
22:10:24 "WAI: Spawned in 1 M2StaticMG"
22:11:13 "SERVER FPS: 48  PLAYERS: 2"
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
22:11:44 No owner
 

 

 

Is this the Epoch version or the Overpoch version? I can do some testing when I get home from work to see if I can replicate the errors.

Link to comment
Share on other sites

By the way, you have other issues in your rpt

22:00:09 "RUNNING EVENT: crash_spawner on [2017,8,26,14,0]"
22:00:09 Warning Message: Script z\addons\dayz_server\modules\crash_spawner.sqf not found
21:46:45 Error in expression <
[5,5],
[9,13],
[11,11,10],
[12],
[6,6]
] 

if (isServer) then {

>
21:46:45   Error position: <] 

if (isServer) then {

>
21:46:45   Error Missing ;
21:46:45 File z\addons\dayz_server\scripts\airpatrol.sqf, line 45

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...