Jump to content

[RELEASE] WAI 2.2.6


JasonTM

Recommended Posts

  • 1 month later...
  • 4 weeks later...

I'm now testing enemy artillery in my server, and got it working (not balanced yet)

1. Activate artillery module by adding this in dayz_server/WAI/init.sqf

Spoiler

//arty logic
ARTY_LOGIC = createAgent ["BIS_ARTY_Logic",[0,0,0],[],0,"NONE"];
enableEngineArtillery true; 
WAI_arty_fire = compile preprocessFileLineNumbers "\z\addons\dayz_server\WAI\compile\arty_fire.sqf";

(Because I use this BIS_ARTY_LOGIC for all mortars, we can use only 1 type of mortar in the the server.
I think I'd better create new BIS_ARTY_LOGIC in spawn_static.sqf and use it in arty_fire.sqf .. but I haven't tried this yet)

2. To add brain of artillery to each mortar (which you will spawn by using spawn_static function), add this into dayz_server/WAI/complie/spawn_static.sqf 's Line183 or around - where one of the static weapon is prepared for battle.

Spoiler


if(_static isKindOf "StaticMortar" || _static isKindOf "StaticCannon") exitWith {
    _static spawn WAI_arty_fire;
};

 

3. Now this is the brain of artillery. Create dayz_server/WAI/complie/arty_fire.sqf with this content

Spoiler

private ["_arty","_fmTemplate","_pos","_ammo","_battery","_time","_knowsAbout"];
_arty=_this;

ARTY_LOGIC synchronizeObjectsAdd [_arty];
[_arty] call BIS_ARTY_F_initVehicle;
[ARTY_LOGIC] call BIS_ARTY_F_Firebase;

while {alive _arty} do {
    //interval
    _time = 60 + (random 30);

    //check ammo
    if (needReload _arty == 1) then {
        _arty addMagazine "8Rnd_81mmHE_M252";
        _arty addMagazine "8Rnd_82mmHE_2B14";
        _arty addMagazine "8Rnd_81mmILLUM_M252";
        _arty addMagazine "8Rnd_82mmILLUM_2B14";
    };

    //check players
    _battery = group (gunner _arty);
    {
        //find position
        _pos = getPosASL _x;
        _pos = [(_pos select 0) - 15 + (random 30),(_pos select 1) - 15 + (random 30),_pos select 2];

        //target found or not
        _knowsAbout = _battery knowsAbout _x;
        if (_knowsAbout > 1.5 && !((vehicle _x) isKindOf "Air")) then {
            //ammo selection
            _ammo = "HE";
            if (sunOrMoon != 1 && random 1 < 0.2) then {
                _ammo="ILLUM";
            };
            _fmTemplate = ["IMMEDIATE", _ammo, 10.0/_knowsAbout, round(_knowsAbout)];

            //in range
            if ([ARTY_LOGIC, _pos, _fmTemplate select 1] call BIS_ARTY_F_PosInRange && {!isPlayer _x} count (_x nearEntities ["CAManBase", 40]) < 1) then {
                //fire
                [ARTY_LOGIC, _pos, _fmTemplate] call BIS_ARTY_F_ExecuteTemplateMission;

                sleep (random _time);
            };
        };
    } forEach playableUnits;

    sleep _time;
};

(Most settings are hard-coded here so far, and may be inbalanced)

 

Notes:

To spawn artillery, put this code in the random mission

Spoiler

[[
    [(_position select 0) - 1, (_position select 1) -27, 0]
],"2b14_82mm_GUE","Extreme",_aiType,_aiType,0,2,"Random","Random",_mission] call spawn_static;

If the mortar's group find a player, they will try to bombard him.
I think the mortar unit doesn't have good eye, so I'm combining the group to another static weapons or cars like

Spoiler

_uG1=[[
    [(_position select 0) - 0.01, (_position select 1) + 41, 0],
    [(_position select 0) + 0.1, (_position select 1) - 25, 0]
],"ZU23_CDF","Extreme","CZ_Soldier_SL_DES_EP1_DZ",_aiType,0,2,"Random","Random",_mission] call spawn_static; //This is the group of "another static weapons"
_uG2=[[
    [(_position select 0) - 1, (_position select 1) -27, 0]
],"2b14_82mm_GUE","Extreme","CZ_Soldier_SL_DES_EP1_DZ",_aiType,0,2,"Random","Random",_mission] call spawn_static; //This is artillery
(units _uG2) joinSilent _uG1;//Now 2 groups are combined

 

 

 

Link to comment
Share on other sites

28 minutes ago, Schalldampfer said:

I'm now testing enemy artillery in my server, and got it working (not balanced yet)

1. Activate artillery module by adding this in dayz_server/WAI/init.sqf

  Hide contents

//arty logic
ARTY_LOGIC = createAgent ["BIS_ARTY_Logic",[0,0,0],[],0,"NONE"];
enableEngineArtillery true; 
WAI_arty_fire = compile preprocessFileLineNumbers "\z\addons\dayz_server\WAI\compile\arty_fire.sqf";

(Because I use this BIS_ARTY_LOGIC for all mortars, we can use only 1 type of mortar in the the server.
I think I'd better create new BIS_ARTY_LOGIC in spawn_static.sqf and use it in arty_fire.sqf .. but I haven't tried this yet)

2. To add brain of artillery to each mortar (which you will spawn by using spawn_static function), add this into dayz_server/WAI/complie/spawn_static.sqf 's Line183 or around - where one of the static weapon is prepared for battle.

  Hide contents


if(_static isKindOf "StaticMortar" || _static isKindOf "StaticCannon") exitWith {
    _static spawn WAI_arty_fire;
};

 

3. Now this is the brain of artillery. Create dayz_server/WAI/complie/arty_fire.sqf with this content

  Hide contents

private ["_arty","_fmTemplate","_pos","_ammo","_battery","_time","_knowsAbout"];
_arty=_this;

ARTY_LOGIC synchronizeObjectsAdd [_arty];
[_arty] call BIS_ARTY_F_initVehicle;
[ARTY_LOGIC] call BIS_ARTY_F_Firebase;

while {alive _arty} do {
    //interval
    _time = 60 + (random 30);

    //check ammo
    if (needReload _arty == 1) then {
        _arty addMagazine "8Rnd_81mmHE_M252";
        _arty addMagazine "8Rnd_82mmHE_2B14";
        _arty addMagazine "8Rnd_81mmILLUM_M252";
        _arty addMagazine "8Rnd_82mmILLUM_2B14";
    };

    //check players
    _battery = group (gunner _arty);
    {
        //find position
        _pos = getPosASL _x;
        _pos = [(_pos select 0) - 15 + (random 30),(_pos select 1) - 15 + (random 30),_pos select 2];

        //target found or not
        _knowsAbout = _battery knowsAbout _x;
        if (_knowsAbout > 1.5 && !((vehicle _x) isKindOf "Air")) then {
            //ammo selection
            _ammo = "HE";
            if (sunOrMoon != 1 && random 1 < 0.2) then {
                _ammo="ILLUM";
            };
            _fmTemplate = ["IMMEDIATE", _ammo, 10.0/_knowsAbout, round(_knowsAbout)];

            //in range
            if ([ARTY_LOGIC, _pos, _fmTemplate select 1] call BIS_ARTY_F_PosInRange && {!isPlayer _x} count (_x nearEntities ["CAManBase", 40]) < 1) then {
                //fire
                [ARTY_LOGIC, _pos, _fmTemplate] call BIS_ARTY_F_ExecuteTemplateMission;

                sleep (random _time);
            };
        };
    } forEach playableUnits;

    sleep _time;
};

(Most settings are hard-coded here so far, and may be inbalanced)

 

Notes:

To spawn artillery, put this code in the random mission

  Hide contents

[[
    [(_position select 0) - 1, (_position select 1) -27, 0]
],"2b14_82mm_GUE","Extreme",_aiType,_aiType,0,2,"Random","Random",_mission] call spawn_static;

If the mortar's group find a player, they will try to bombard him.
I think the mortar unit doesn't have good eye, so I'm combining the group to another static weapons or cars like

  Hide contents

_uG1=[[
    [(_position select 0) - 0.01, (_position select 1) + 41, 0],
    [(_position select 0) + 0.1, (_position select 1) - 25, 0]
],"ZU23_CDF","Extreme","CZ_Soldier_SL_DES_EP1_DZ",_aiType,0,2,"Random","Random",_mission] call spawn_static; //This is the group of "another static weapons"
_uG2=[[
    [(_position select 0) - 1, (_position select 1) -27, 0]
],"2b14_82mm_GUE","Extreme","CZ_Soldier_SL_DES_EP1_DZ",_aiType,0,2,"Random","Random",_mission] call spawn_static; //This is artillery
(units _uG2) joinSilent _uG1;//Now 2 groups are combined

 

 

 

That's a pretty interesting mod, really like the idea behind it

Link to comment
Share on other sites

  • 4 weeks later...
On 12/28/2019 at 7:37 PM, Schalldampfer said:

I'm now testing enemy artillery in my server, and got it working (not balanced yet)

1. Activate artillery module by adding this in dayz_server/WAI/init.sqf

  Hide contents

//arty logic
ARTY_LOGIC = createAgent ["BIS_ARTY_Logic",[0,0,0],[],0,"NONE"];
enableEngineArtillery true; 
WAI_arty_fire = compile preprocessFileLineNumbers "\z\addons\dayz_server\WAI\compile\arty_fire.sqf";

(Because I use this BIS_ARTY_LOGIC for all mortars, we can use only 1 type of mortar in the the server.
I think I'd better create new BIS_ARTY_LOGIC in spawn_static.sqf and use it in arty_fire.sqf .. but I haven't tried this yet)

2. To add brain of artillery to each mortar (which you will spawn by using spawn_static function), add this into dayz_server/WAI/complie/spawn_static.sqf 's Line183 or around - where one of the static weapon is prepared for battle.

  Hide contents


if(_static isKindOf "StaticMortar" || _static isKindOf "StaticCannon") exitWith {
    _static spawn WAI_arty_fire;
};

 

3. Now this is the brain of artillery. Create dayz_server/WAI/complie/arty_fire.sqf with this content

  Hide contents

private ["_arty","_fmTemplate","_pos","_ammo","_battery","_time","_knowsAbout"];
_arty=_this;

ARTY_LOGIC synchronizeObjectsAdd [_arty];
[_arty] call BIS_ARTY_F_initVehicle;
[ARTY_LOGIC] call BIS_ARTY_F_Firebase;

while {alive _arty} do {
    //interval
    _time = 60 + (random 30);

    //check ammo
    if (needReload _arty == 1) then {
        _arty addMagazine "8Rnd_81mmHE_M252";
        _arty addMagazine "8Rnd_82mmHE_2B14";
        _arty addMagazine "8Rnd_81mmILLUM_M252";
        _arty addMagazine "8Rnd_82mmILLUM_2B14";
    };

    //check players
    _battery = group (gunner _arty);
    {
        //find position
        _pos = getPosASL _x;
        _pos = [(_pos select 0) - 15 + (random 30),(_pos select 1) - 15 + (random 30),_pos select 2];

        //target found or not
        _knowsAbout = _battery knowsAbout _x;
        if (_knowsAbout > 1.5 && !((vehicle _x) isKindOf "Air")) then {
            //ammo selection
            _ammo = "HE";
            if (sunOrMoon != 1 && random 1 < 0.2) then {
                _ammo="ILLUM";
            };
            _fmTemplate = ["IMMEDIATE", _ammo, 10.0/_knowsAbout, round(_knowsAbout)];

            //in range
            if ([ARTY_LOGIC, _pos, _fmTemplate select 1] call BIS_ARTY_F_PosInRange && {!isPlayer _x} count (_x nearEntities ["CAManBase", 40]) < 1) then {
                //fire
                [ARTY_LOGIC, _pos, _fmTemplate] call BIS_ARTY_F_ExecuteTemplateMission;

                sleep (random _time);
            };
        };
    } forEach playableUnits;

    sleep _time;
};

(Most settings are hard-coded here so far, and may be inbalanced)

 

Notes:

To spawn artillery, put this code in the random mission

  Hide contents

[[
    [(_position select 0) - 1, (_position select 1) -27, 0]
],"2b14_82mm_GUE","Extreme",_aiType,_aiType,0,2,"Random","Random",_mission] call spawn_static;

If the mortar's group find a player, they will try to bombard him.
I think the mortar unit doesn't have good eye, so I'm combining the group to another static weapons or cars like

  Hide contents

_uG1=[[
    [(_position select 0) - 0.01, (_position select 1) + 41, 0],
    [(_position select 0) + 0.1, (_position select 1) - 25, 0]
],"ZU23_CDF","Extreme","CZ_Soldier_SL_DES_EP1_DZ",_aiType,0,2,"Random","Random",_mission] call spawn_static; //This is the group of "another static weapons"
_uG2=[[
    [(_position select 0) - 1, (_position select 1) -27, 0]
],"2b14_82mm_GUE","Extreme","CZ_Soldier_SL_DES_EP1_DZ",_aiType,0,2,"Random","Random",_mission] call spawn_static; //This is artillery
(units _uG2) joinSilent _uG1;//Now 2 groups are combined

Im going to test this on my server this week and let you know what people think. I have it working great on my Test server. I linked the mortars to the M2 guns and it doesn't seem to OP. There is such a long travel time between firing the rounds and them hitting, people should see it fire and get the hell out of there. 

 

 

Im going to test this on my server this week and let you know what people think. I have it working great on my Test server. I linked the mortars to the M2 guns and it doesn't seem to OP. There is such a long travel time between firing the rounds and them hitting, people should see it fire and get the hell out of there. 

Link to comment
Share on other sites

  • 1 month later...
  • 2 weeks later...
57 minutes ago, salival said:

Can't help much without RPT's.

 

But i'm guessing the server is killing the AI and the vehicle for being a hacker, i.e the vehicles are not being setup correctly

Oké that I understand so here are the files hope you can help would be sick mission :D

(dont know if it happend this restart because most of the time happends and somethimes they work normal) 

and I am using infistar don’t know if it’s still smart to use 

 

here is the WAI Static mission 

rpt is in the same spoiler!!

 

 

if(isServer) then {

 

 

 

 

// Custom Spawns file//

/*

Place your custom group spawns below

*/

[

[16424.8,18410.2,0.00143814], // Position

6, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

[

[16334.1,18458.7,0.00143814], // Position

6, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16062.2,18779.8,0.00130463], // Position

6, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[15986,19043,0.00122833], // Position

6, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16610,18216.8,0.125416], // Position

6, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16552.3,18211.4,0.125446], // Position

6, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[15828.8,19290.5,0.00139618], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[15676.7,19808.2,0.00144958], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16536.6,18886.2,0.00123024], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16624.3,18511.1,0.00138664], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[17026.9,18732.7,0.00121307], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[17125.7,18106.7,0.00127411], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

[

[17353.3,17485.9,0.0014267], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[17442.3,16931.8,0.00150156], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[17021.9,17249.6,0.00102997], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16596.8,17517.7,0.00146103], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16208.2,18030.3,0.00149822], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[15828.7,18730.5,0.00154114], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[15551.6,19225.1,0.0014019], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16095.4,18761.2,3.5748], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16067.2,18548.4,0.00170135], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16350.4,18372.3,0.00143814], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16516.4,18232.7,0.00143814], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16879.2,18342.2,0.0012207], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

[

[16991.5,17822.7,0.00164032], // Position

4, // Number Of units

"Random", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Primary gun set number or gun and rocket launcher. Syntax is "Random", for gun only or ["Random","AT"], for gun and launcher

4, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random", // Skin classname, use "Random" or classname here

"Random", // Gearset number. "Random" for random gear set

"Bandit" // AI Type, "Hero" or "Bandit".

] call spawn_group;

 

 

 

 

 

 

 

 

 

 

 

/*

Place your custom static weapon spawns below

*/

[

[ // Position(s) (can be multiple)

[16423.1,18378.1,6.88736],

[16481.1,18331.4,6.88736],

[16621.3,18181.2,15.5161],

[16643.1,18207.4,15.5034],

[16614.7,18231.3,15.161],

[16544.6,18173.1,15.5162],

[16517.7,18194.4,15.5162],

[16542.4,18224.2,15.512],

[16095.4,18752.3,7.1012]

],

"M2StaticMG", // Classname of turret

"medium", // Skill level of unit (easy, medium, hard, extreme, Random)

"Random", // Skin classname, use "Random" or classname here

"Bandit", // AI Type, "Hero" or "Bandit".

"Random", // Primary gun set number. "Random" for random weapon set

2, // Number of magazines

"Random", // Backpack classname, use "Random" or classname here

"Random" // Gearset classname, use "Random" or classname here

] call spawn_static;

 

 

/*

 

Place your vehicle patrols below this line

*/

[

[16520.7,18883.1,0.00135231], // Position to patrol

[16520.7,18883.1,0.00135231], // Position to spawn at

350, // Radius of patrol

10, // Number of waypoints to give

"HMMWV_M1151_M2_DES_EP1", // Classname of vehicle (make sure it has driver and gunner)

"medium", // Skill level of units (easy, medium, hard, extreme, Random)

"Random", // Skin classname, use "Random" or classname here

"Bandit" // AI Type, "Hero" or "Bandit".

] spawn vehicle_patrol;

 

 

[

[16633.2,18071.5,0.00143814], // Position to patrol

[16633.2,18071.5,0.00143814], // Position to spawn at

350, // Radius of patrol

10, // Number of waypoints to give

"M113_TK_EP1", // Classname of vehicle (make sure it has driver and gunner)

"hard", // Skill level of units (easy, medium, hard, extreme, Random)

"Random", // Skin classname, use "Random" or classname here

"Bandit" // AI Type, "Hero" or "Bandit".

] spawn vehicle_patrol;

 

 

[

[16912.7,18412.9,0.00122833], // Position to patrol

[16912.7,18412.9,0.00122833], // Position to spawn at

350, // Radius of patrol

10, // Number of waypoints to give

"ArmoredSUV_PMC", // Classname of vehicle (make sure it has driver and gunner)

"medium", // Skill level of units (easy, medium, hard, extreme, Random)

"Random", // Skin classname, use "Random" or classname here

"Bandit" // AI Type, "Hero" or "Bandit".

] spawn vehicle_patrol;

 

 

 

diag_log "WAI: Static mission loaded";

 

};

 

[/SPOILER]

 

and the server rpt here,

 
 

 

:51:47 "<infiSTAR.de> ["START","<infiSTAR.de> iproductVersion: 10-02-2020 17-54-37-v1452 | Server productVersion: ["ArmA 2 OA","ArmA2OA",164,144629] | worldName: Napf | dayz_instance: 24 | missionName: DayZ_Epoch_24"]"

21:51:47 "<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','d','7','b','e','f','7','a','4','e','e','d','7','3','b','9','a','c','1','8','d','e','1','7','0','0','2','a','f','4','4'];

for '_i' from 0 to (8+(round(random 3))) do {_gen = _gen + str(round(random 9)) + (_arr select (random ((count _arr)-1)));};

_gen

}"

21:51:47 "<infiSTAR.de> _simple: z4e8a4a5e677e332e2b"

21:51:47 "<infiSTAR.de> _dialogIds: j4c9e5c306991430150"

21:51:47 "<infiSTAR.de> _badtxts: q0117686a6b4e6a722e3d47"

21:51:47 "<infiSTAR.de> _randvar1: l6e2d7b075e483c501d6f"

21:51:47 "<infiSTAR.de> _randvar2: n511f68371f3f1d5f5d"

21:51:47 "<infiSTAR.de> _randvar3: e1f393e3c2e8a4a044d3e577d"

21:51:47 "<infiSTAR.de> _randvar4: j4b8783704f446810137f3e"

21:51:47 "<infiSTAR.de> _randvar5: f445127941a3d173f748b"

21:51:47 "<infiSTAR.de> _randvar6: g6e8022572b40618e578d"

21:51:47 "<infiSTAR.de> _randvar11: s5e609a488411307e174d1b"

21:51:47 "<infiSTAR.de> _randvar12: y89713d6e5a1e9a7463"

21:51:47 "<infiSTAR.de> _randvar13: o41244f1e4447506e8d101d"

21:51:47 "<infiSTAR.de> _randvar14: u5794243e1c107a571a4e"

21:51:47 "<infiSTAR.de> _randvar19: h078b0a59525a9e24101067"

21:51:47 "<infiSTAR.de> _randvar27: f8f8f4e7f24715c631e5d5e"

21:51:47 "<infiSTAR.de> _randvar25: i9441804b7b474a6a6a7347"

21:51:47 "<infiSTAR.de> _randvar31: f114b8720538d41378a511d"

21:51:47 "<infiSTAR.de> _randvar33: p143e396d717b3770542e7443"

21:51:47 "<infiSTAR.de> _randvar34: s7e0f8a31604a6e641e5e73"

21:51:47 "<infiSTAR.de> _randvar35: w1a9f2a048e24345d977d"

21:51:47 "<infiSTAR.de> _randvar36: r6a3f103d3e41895f543d"

21:51:47 "<infiSTAR.de> _randvar37: g4f035c9884677a348a71"

21:51:47 "<infiSTAR.de> _fnc_handlerandvar10: f1e1f5e641d373e405c"

21:51:47 "<infiSTAR.de> _remark: z100f0b129b877a477e5370"

21:51:47 "<infiSTAR.de> _AHpos: j219b507e2b671f5980431d"

21:51:47 "<infiSTAR.de> _loadedcheckpos: w3b4a6f447d118a878c"

21:51:47 "<infiSTAR.de> _loadedchecktime: t71895d8d7d8b47775d2e"

21:51:47 "<infiSTAR.de> _MenuChecksRunningx: y022a2e7a113e5e3e8e1408"

21:51:47 "<infiSTAR.de> _anotherloop: h0a9a2f577a64401d675227"

21:51:47 "<infiSTAR.de> _lastUnlock: f8c2a377b5a18678e493e"

21:51:47 "<infiSTAR.de> _AdminReqCheck: p13379d106e542b8e50710f"

21:51:47 "<infiSTAR.de> _antidupeCheckVar: f987a9862474494007d3048"

21:51:47 "<infiSTAR.de> _antidupePVResVar: j2e142d8b8b010e1784"

21:51:47 "<infiSTAR.de> _antidupePVCheckVar: PVAHR_0_n4d0d5e544d542e6102708d0e"

21:51:47 "<infiSTAR.de> _randvar10: PVAHR_0_i213a5b3f7f347001399b8c67"

21:51:47 "<infiSTAR.de> ["DEBUG","compiling _AHstring"]"

21:51:47 "<infiSTAR.de> ["DEBUG","_AHstring compiled"]"

21:51:47 "<infiSTAR.de> ["DEBUG","time: 0"]"

21:51:47 "<infiSTAR.de> ["DEBUG","diag_tickTime: 97.798"]"

21:51:47 "<infiSTAR.de> ["DEBUG","serverTime: 3.05831e+006"]"

21:51:47 "<infiSTAR.de> ["DEBUG","_AHstring loaded."]"

21:51:47 "<infiSTAR.de> ["DEBUG","AntiHack FULLY LOADED"]"

21:51:47 "<infiSTAR.de> AntiHack FULLY LOADED"

21:51:47 "<infiSTAR.de> ["DEBUG","CREATING AdminMenu"]"

21:51:47 "<infiSTAR.de> CREATING AdminMenu"

21:51:47 "<infiSTAR.de> AdminMenu LOADED: true"

21:51:47 "<infiSTAR.de> ["DEBUG","AdminMenu LOADED: true"]"

21:51:47 "SERVER FPS: 46  PLAYERS: 1"

21:51:47 ["TIME SYNC: Local Time set to:",[2012,8,2,13,51],"Fullmoon:",true,"Date given by HiveExt.dll:",[2020,3,9,13,51]]

21:51:47 "HIVE: trying to get objects"

21:51:47 "<infiSTAR.de> ["DEBUG","Waiting for some infiSTAR functions"]"

21:51:47 "<infiSTAR.de> ["DEBUG","All infiSTAR functions compiled"]"

21:51:47 "<infiSTAR.de> starting main server loop"

21:51:47 "<infiSTAR.de> ["DEBUG","starting main server loop"]"

21:51:47 "<infiSTAR.de> ["DEBUG","starting main server loop: 0 | 98.033 | 3.05831e+006"]"

21:51:47 "HIVE: found 361 objects"

21:51:47 "HIVE: Request sent"

21:51:48 "HIVE: Streamed 361 objects"

21:51:48 "Res3tting B!S effects..."

21:51:49 "<infiSTAR.de> waiting for player and functions.."

21:51:52 "<infiSTAR.de> Player-Log: Dance with the Wolves(76561198122429523) - 0h 00min | ******ADMIN******"

21:51:54 "HIVE: BENCHMARK - Server_monitor.sqf finished streaming 361 objects in 6.238 seconds (unscheduled)"

21:51:54 "Total Number of spawn locations 11"

21:51:54 "[DZAI] Initializing DZAI version 2.2.1 Release Build 20141208 using base path z\addons\dayz_server\DZAI."

21:51:54 "[DZAI] Reading DZAI configuration file."

21:51:54 "[DZAI] DZAI configuration file loaded."

21:51:54 "[DZAI] Compiling DZAI functions."

21:51:54 "[DZAI] DZAI functions compiled."

21:51:54 "[DZAI] Napf classnames loaded."

21:51:54 "[DZAI] DZAI settings: Debug Level: 0. DebugMarkers: false. WorldName: napf. ModName:  (Ver: dayz epoch 1.0.6.2). DZAI_dynamicWeaponList: true. VerifyTables: true."

21:51:54 "[DZAI] AI spawn settings: Static: false. Dynamic: true. Random: false. Air: false. Land: true."

21:51:54 "[DZAI] AI settings: DZAI_findKiller: true. DZAI_useHealthSystem: false. DZAI_weaponNoise: false. DZAI_zombieEnemy: false."

21:51:54 "[DZAI] DZAI loading completed in 0.330002 seconds."

21:51:54 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [7864.03,8521.05,0] with 3 items."

21:51:54 "DEBUG: Spawning a care package (Misc_cargo_cont_net2) at [16455.4,3268.06,0] with 6 items."

21:51:54 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [3467.16,9190.34,0] with 4 items."

21:51:54 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [11803.1,14217.8,0] with 4 items."

21:51:54 "DEBUG: Spawning a care package (Misc_cargo_cont_net2) at [1970.05,11141.6,0] with 8 items."

21:51:54 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [10142.3,18678.7,0] with 5 items."

21:51:54 "CRASHSPAWNER: Starting crash site spawner. Frequency: 25±20 min. Spawn chance: 0.75"

21:51:54 "CRASHSPAWNER: Spawning crash site (CrashSite_UN) at [12839.2,3541.29,0] with 6 items."

21:51:54 Strange convex component01 in rh_m14\rh_m1stacog.p3d:geometry

21:51:54 Strange convex component07 in rh_m14\rh_m1stacog.p3d:geometry

21:51:54 Strange convex component12 in rh_m14\rh_m1stacog.p3d:geometry

21:51:55 ca\misc\houpacka.p3d: house, config class missing

21:51:56 ca\misc\houpacka.p3d: house, config class missing

21:51:58 ca\misc\houpacka.p3d: house, config class missing

21:51:58 ca\misc\houpacka.p3d: house, config class missing

21:51:59 Strange convex component288 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component289 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component290 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component291 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component292 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component293 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component294 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component295 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component296 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component297 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component298 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component299 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component300 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component301 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component302 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component303 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component304 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component305 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component306 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component307 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component308 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component309 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component310 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component311 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component312 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component313 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component314 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component315 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component316 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component317 in warehouse\models\warehouse.p3d:geometry

21:51:59 Strange convex component252 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component253 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component254 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component255 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component256 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component257 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component258 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component259 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component260 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component261 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component262 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component263 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component264 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component265 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component266 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component267 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component268 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component269 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component270 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component271 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component272 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component273 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component274 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component275 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component276 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component277 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component278 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component279 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component280 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component281 in warehouse\models\warehouse.p3d:geometryFire

21:51:59 Strange convex component249 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component250 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component251 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component252 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component253 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component254 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component255 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component256 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component257 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component258 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component259 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component260 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component261 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component262 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component263 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component264 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component265 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component266 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component267 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component268 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component269 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component270 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component271 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component272 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component273 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component274 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component275 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component276 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component277 in warehouse\models\warehouse.p3d:geometryView

21:51:59 Strange convex component278 in warehouse\models\warehouse.p3d:geometryView

21:52:00 ca\misc3\wf\wf_depot.p3d: house, config class missing

21:52:00 ca\misc3\wf\wf_depot.p3d: house, config class missing

21:52:00 ca\misc3\wf\wf_depot.p3d: house, config class missing

21:52:02 ca\misc\houpacka.p3d: house, config class missing

21:52:02 ca\misc\houpacka.p3d: house, config class missing

21:52:04 ca\misc\houpacka.p3d: house, config class missing

21:52:04 ca\misc\houpacka.p3d: house, config class missing

21:52:04 ca\misc\houpacka.p3d: house, config class missing

21:52:04 ca\misc\houpacka.p3d: house, config class missing

21:52:06 ca\misc\houpacka.p3d: house, config class missing

21:52:08 ca\structures\house\housev\housev_2l_dam_ruins.p3d: house, config class missing

21:52:08 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-A:1 (Dance with the Wolves) REMOTE,"76561198122429523"]"

21:52:08 "infiSTAR.de ******ADMIN-LOGIN******: Dance with the Wolves(76561198122429523)"

21:52:08 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-A:1 (Dance with the Wolves) REMOTE,"76561198122429523"]"

21:52:10 "HIVE: Vehicle Spawn limit reached!"

21:52:10 "HIVE: Spawning # of Debris: 100"

21:52:14 "<infiSTAR.de> ["CONNECTLOG","CONNECT - Dance with the Wolves(76561198122429523)"]"

21:52:20 "HIVE: Spawning # of Ammo Boxes: 3"

21:52:20 "HIVE: Spawning # of Veins: 50"

21:52:21 "HIVE: BENCHMARK - Server finished spawning 0 DynamicVehicles, 100 Debris, 3 SupplyCrates and 50 MineVeins in 26.93 seconds (scheduled)"

21:52:21 "EPOCH EVENTS INIT"

21:52:23 "[DZAI] Removing invalid classname: Winchester1866."

21:52:23 "[DZAI] Removing invalid classname: MR43."

21:52:23 "[DZAI] Removing invalid classname: Winchester1866."

21:52:23 "[DZAI] Removing invalid classname: MR43."

21:52:23 "[DZAI] Contents of DZAI_Rifles0 failed verification. Invalid entries removed."

21:52:23 "[DZAI] Removing invalid classname: Remington870_lamp."

21:52:23 "[DZAI] Contents of DZAI_Rifles1 failed verification. Invalid entries removed."

21:52:23 "[DZAI] Removing invalid classname: Remington870_lamp."

21:52:23 "[DZAI] Removing invalid classname: Mk_48_DZ."

21:52:23 "WAI: AI Config File Loaded"

21:52:23 "[DZAI] Contents of DZAI_Rifles2 failed verification. Invalid entries removed."

21:52:23 "[DZAI] Removing invalid classname: Remington870_lamp."

21:52:23 "[DZAI] Removing invalid classname: Mk_48_DZ."

21:52:23 "[DZAI] Contents of DZAI_Rifles3 failed verification. Invalid entries removed."

21:52:23 "[DZAI] Removing invalid classname: DZ_Czech_Vest_Puch."

21:52:23 "[DZAI] Contents of DZAI_Backpacks0 failed verification. Invalid entries removed."

21:52:23 "[DZAI] Removing invalid classname: DZ_Czech_Vest_Puch."

21:52:23 "[DZAI] Contents of DZAI_Backpacks1 failed verification. Invalid entries removed."

21:52:24 "[DZAI] Verified 92 unique classnames in 1.65399 seconds."

21:52:24 "WAI: Overpoch Config File Loaded"

21:52:24 "WAI: blacklist Loaded"

21:52:24 "CLEANUP: INITIALIZING Vehicle SCRIPT"

21:52:24 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,13,52],"Fullmoon:",true,"Date given by HiveExt.dll:",[2020,3,9,13,52]]

21:52:30 "WAI: Initializing missions"

21:52:31 No speaker given for Jorg Richter

21:52:34 Strange convex component01 in rh_m14\rh_m1ssp.p3d:geometry

21:52:34 Strange convex component07 in rh_m14\rh_m1ssp.p3d:geometry

21:52:34 Strange convex component08 in rh_m14\rh_m1ssp.p3d:geometry

21:52:34 Strange convex component12 in rh_m14\rh_m1ssp.p3d:geometry

21:52:35 No speaker given for Thomas Wagner

21:52:35 Strange convex component01 in rh_m14\rh_sc2acog.p3d:geometry

21:52:35 Strange convex component07 in rh_m14\rh_sc2acog.p3d:geometry

21:52:35 Strange convex component12 in rh_m14\rh_sc2acog.p3d:geometry

21:52:35 No speaker given for Tobias Richter

21:52:37 Strange convex component01 in rh_m14\rh_m21.p3d:geometry

21:52:37 Strange convex component07 in rh_m14\rh_m21.p3d:geometry

21:52:37 Strange convex component08 in rh_m14\rh_m21.p3d:geometry

21:52:37 Strange convex component12 in rh_m14\rh_m21.p3d:geometry

21:52:40 Strange convex component01 in rh_m14\rh_m1seot.p3d:geometry

21:52:40 Strange convex component07 in rh_m14\rh_m1seot.p3d:geometry

21:52:40 Strange convex component12 in rh_m14\rh_m1seot.p3d:geometry

21:52:43 trigger - unknown animation source revolved

21:52:48 trigger - unknown animation source revolved

21:52:53 trigger - unknown animation source revolved

21:53:00 Strange convex component01 in rh_m14\rh_sc2aim.p3d:geometry

21:53:00 Strange convex component07 in rh_m14\rh_sc2aim.p3d:geometry

21:53:00 Strange convex component12 in rh_m14\rh_sc2aim.p3d:geometry

21:53:00 Strange convex component05 in vilas_wwp\ska_m60.p3d:geometry

21:53:00 Strange convex component01 in rh_m14\rh_sc2eot.p3d:geometry

21:53:00 Strange convex component07 in rh_m14\rh_sc2eot.p3d:geometry

21:53:00 Strange convex component12 in rh_m14\rh_sc2eot.p3d:geometry

21:53:01 "WAI: Static mission loaded"

21:53:01 "WAI: Initializing static missions"

21:53:13 "<infiSTAR.de> ["CONNECTLOG","CONNECT - __SERVER__()"]"

21:53:13 "Napf static spawn configuration loaded."

21:53:16 "INFO - Player: PID#3(Dance with the Wolves)(UID:76561198122429523/CID:205) Status: LOGGING IN"

21:53:18 Server: Object 3:14 not found (message 70)

21:53:19 "INFO - Player: PID#3(Dance with the Wolves)(UID:76561198122429523/CID:205) Status: LOGIN PUBLISHING, Location Lenzburg [082050]"

21:53:20 "INFO - Player: Dance with the Wolves(UID:76561198122429523/CID:205) Status: CLIENT LOADED & PLAYING"

21:53:27 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-A:2 REMOTE,"76561198110439339"]"

21:53:27 "infiSTAR.de fnc_AdminFirstReq (): !!!!!!ADMIN-LOGIN-ERROR!!!!!!"

21:53:30 "<infiSTAR.de> ["CONNECTLOG","CONNECT - LordBuffel(76561198110439339)"]"

21:53:30 "<infiSTAR.de> Player-Log: LordBuffel(76561198110439339) - 0h 00min | ******ADMIN******"

21:53:38 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:53:49 Server: Object 3:73 not found (message 94)

21:53:49 Server: Object 3:76 not found (message 70)

21:53:49 Server: Object 3:75 not found (message 94)

21:53:55 Server: Object 3:90 not found (message 94)

21:53:59 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:217) Status: LOGGING IN"

21:53:59 Server: Object 4:14 not found (message 70)

21:54:00 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:217) Status: LOGIN PUBLISHING, Location Wilderness [082052]"

21:54:00 "INFO - Player: LordBuffel(UID:76561198110439339/CID:217) Status: CLIENT LOADED & PLAYING"

21:54:28 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - LordBuffel(76561198110439339)"]"

21:54:28 "INFO: OnPlayerDisconnect exiting. Player is not in playableUnits. ["76561198110439339","LordBuffel"]"

21:54:28 Client: Remote object 4:13 not found

21:54:43 Server: Object 3:208 not found (message 94)

21:54:43 Server: Object 3:218 not found (message 94)

21:54:43 Server: Object 3:219 not found (message 94)

21:54:43 Server: Object 3:220 not found (message 94)

21:54:43 Server: Object 3:221 not found (message 94)

21:54:44 "<infiSTAR.de> ["CONNECTLOG","CONNECT - LordBuffel(76561198110439339)"]"

21:54:44 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-A:1 (LordBuffel) REMOTE,"76561198110439339"]"

21:54:44 "infiSTAR.de ******ADMIN-LOGIN******: LordBuffel(76561198110439339)"

21:54:44 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-A:1 (LordBuffel) REMOTE,"76561198110439339"]"

21:54:44 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:217) Status: LOGGING IN"

21:54:49 Server: Object 3:237 not found (message 70)

21:54:49 Server: Object 3:238 not found (message 94)

21:54:49 Server: Object 3:239 not found (message 94)

21:54:49 Server: Object 3:246 not found (message 70)

21:54:49 Server: Object 3:249 not found (message 94)

21:54:49 Server: Object 3:247 not found (message 94)

21:54:49 Server: Object 3:248 not found (message 94)

21:54:55 Server: Object 3:262 not found (message 94)

21:54:55 Server: Object 3:263 not found (message 94)

21:54:55 Server: Object 3:272 not found (message 94)

21:54:55 Server: Object 3:271 not found (message 94)

21:54:55 Server: Object 3:274 not found (message 70)

21:54:55 Server: Object 3:273 not found (message 70)

21:54:59 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:217) Status: LOGGING IN"

21:54:59 Server: Object 4:34 not found (message 94)

21:54:59 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:217) Status: LOGIN PUBLISHING, Location Wilderness [082052]"

21:55:00 "INFO - Player: LordBuffel(UID:76561198110439339/CID:217) Status: CLIENT LOADED & PLAYING"

21:55:05 "WAI: [Mission:[MainHero] Slaughter House]: Starting... [15613.6,14011.9,0]"

21:55:05 trigger - unknown animation source revolved

21:55:06 Strange convex component01 in rh_m14\rh_m1sacog.p3d:geometry

21:55:06 Strange convex component07 in rh_m14\rh_m1sacog.p3d:geometry

21:55:06 Strange convex component12 in rh_m14\rh_m1sacog.p3d:geometry

21:55:07 Server: Object 3:330 not found (message 94)

21:55:07 Server: Object 3:331 not found (message 94)

21:55:09 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Dance with the Wolves Spectating "

21:55:09 "<infiSTAR.de> ["AdminLog","0h 01min | Dance with the Wolves Spectating "]"

21:55:12 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Dance with the Wolves Spectating "

21:55:12 "<infiSTAR.de> ["AdminLog","0h 01min | Dance with the Wolves Spectating "]"

21:55:13 Server: Object 3:358 not found (message 94)

21:55:15 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   LordBuffel Spectating Dance with the Wolves"

21:55:15 "<infiSTAR.de> ["AdminLog","0h 01min | LordBuffel Spectating Dance with the Wolves"]"

21:55:17 Server: Object 4:46 not found (message 70)

21:55:17 Server: Object 4:47 not found (message 94)

21:55:17 Server: Object 4:48 not found (message 94)

21:55:17 Server: Object 4:50 not found (message 94)

21:55:17 Server: Object 4:51 not found (message 70)

21:55:17 Server: Object 4:52 not found (message 94)

21:55:17 Server: Object 4:53 not found (message 94)

21:55:17 Server: Object 4:55 not found (message 91)

21:55:17 Server: Object 4:54 not found (message 98)

21:55:18 Server: Object 4:57 not found (message 91)

21:55:18 Server: Object 4:56 not found (message 98)

21:55:19 Server: Object 3:385 not found (message 94)

21:55:19 Server: Object 3:386 not found (message 94)

21:55:19 Server: Object 3:387 not found (message 94)

21:55:19 Server: Object 3:388 not found (message 94)

21:55:23 Server: Object 4:63 not found (message 94)

21:55:23 Server: Object 4:62 not found (message 94)

21:55:23 Server: Object 4:64 not found (message 94)

21:55:23 Server: Object 4:66 not found (message 94)

21:55:23 Server: Object 4:67 not found (message 94)

21:55:23 Server: Object 4:68 not found (message 70)

21:55:23 Server: Object 4:69 not found (message 94)

21:55:29 Server: Object 4:74 not found (message 94)

21:55:29 Server: Object 4:80 not found (message 70)

21:55:29 Server: Object 4:79 not found (message 94)

21:55:29 Server: Object 4:85 not found (message 94)

21:55:29 Server: Object 4:81 not found (message 94)

21:55:29 Server: Object 4:82 not found (message 94)

21:55:29 Server: Object 4:83 not found (message 94)

21:55:29 Server: Object 4:84 not found (message 94)

21:55:29 Server: Object 4:88 not found (message 94)

21:55:29 Server: Object 4:91 not found (message 70)

21:55:29 Server: Object 4:86 not found (message 94)

21:55:29 Server: Object 4:87 not found (message 94)

21:55:29 Server: Object 4:89 not found (message 94)

21:55:29 Server: Object 4:90 not found (message 94)

21:55:31 Server: Object 3:433 not found (message 94)

21:55:31 Server: Object 3:434 not found (message 94)

21:55:31 Server: Object 3:442 not found (message 94)

21:55:31 Server: Object 3:444 not found (message 94)

21:55:31 Server: Object 3:445 not found (message 94)

21:55:31 Server: Object 3:446 not found (message 94)

21:55:35 Server: Object 4:96 not found (message 94)

21:55:35 Server: Object 4:97 not found (message 94)

21:55:35 Server: Object 4:98 not found (message 94)

21:55:35 Server: Object 4:99 not found (message 94)

21:55:35 Server: Object 4:103 not found (message 94)

21:55:35 Server: Object 4:102 not found (message 70)

21:55:35 Server: Object 4:108 not found (message 70)

21:55:35 Server: Object 4:109 not found (message 70)

21:55:35 Server: Object 4:100 not found (message 94)

21:55:35 Server: Object 4:101 not found (message 94)

21:55:35 Server: Object 4:106 not found (message 94)

21:55:35 Server: Object 4:107 not found (message 94)

21:55:35 Server: Object 4:114 not found (message 70)

21:55:35 Server: Object 4:113 not found (message 70)

21:55:35 Server: Object 4:121 not found (message 70)

21:55:35 Server: Object 4:120 not found (message 70)

21:55:35 Server: Object 4:117 not found (message 94)

21:55:35 Server: Object 4:116 not found (message 70)

21:55:35 Server: Object 4:115 not found (message 94)

21:55:35 Server: Object 4:119 not found (message 94)

21:55:35 Server: Object 4:118 not found (message 94)

21:55:35 Server: Object 4:123 not found (message 70)

21:55:35 Server: Object 4:122 not found (message 70)

21:55:37 Server: Object 3:460 not found (message 94)

21:55:37 Server: Object 3:461 not found (message 94)

21:55:37 Server: Object 3:462 not found (message 94)

21:55:37 Server: Object 3:463 not found (message 94)

21:55:41 Server: Object 4:137 not found (message 94)

21:55:41 Server: Object 4:138 not found (message 94)

21:55:41 Server: Object 4:139 not found (message 94)

21:55:41 Server: Object 4:140 not found (message 94)

21:55:41 Server: Object 4:141 not found (message 94)

21:55:41 Server: Object 4:142 not found (message 94)

21:55:41 Server: Object 4:144 not found (message 94)

21:55:47 Server: Object 4:159 not found (message 94)

21:55:47 Server: Object 4:160 not found (message 94)

21:55:47 Server: Object 4:161 not found (message 94)

21:55:47 Server: Object 4:162 not found (message 94)

21:55:47 Server: Object 4:163 not found (message 94)

21:55:47 Server: Object 4:164 not found (message 94)

21:55:53 Server: Object 4:176 not found (message 94)

21:55:53 Server: Object 4:177 not found (message 94)

21:55:53 Server: Object 4:178 not found (message 94)

21:55:53 Server: Object 4:179 not found (message 94)

21:55:55 Server: Object 3:504 not found (message 70)

21:55:55 Server: Object 3:503 not found (message 94)

21:55:55 Server: Object 3:502 not found (message 94)

21:55:55 Server: Object 3:505 not found (message 70)

21:56:03 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   LordBuffel TP infront of you ON"

21:56:03 "<infiSTAR.de> ["AdminLog","0h 05min | LordBuffel TP infront of you ON"]"

21:56:04 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   LordBuffel G_o_d ON"

21:56:04 "<infiSTAR.de> ["AdminLog","0h 05min | LordBuffel G_o_d ON"]"

21:56:06 "Trader Menu: Dance with the Wolves (76561198122429523) sold 1x vil_9a91 from gear at trader city Lenzburg for 10,000 Coins"

21:56:09 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (LordBuffel) REMOTE,B 1-1-C:1 (LordBuffel) REMOTE,[6269.07,12769.1,0]]"

21:56:09 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 082050([8259.88,15438.1,0.00154448]) to 062077([6269.07,12769.1,0]) | Key: any"]"

21:56:09 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (LordBuffel) REMOTE,B 1-1-C:1 (LordBuffel) REMOTE,[6269.07,12769.1,0]]"

21:56:09 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 062077   WorldSpace: [6269.07,12769.1,0]"

21:56:09 "<infiSTAR.de> ["AdminLog","0h 05min | Admin LordBuffel(76561198110439339) teleported to   GPS: 062077   WorldSpace: [6269.07,12769.1,0]"]"

21:56:12 Server: Object 4:228 not found (message 70)

21:56:12 Server: Object 4:231 not found (message 94)

21:56:12 Server: Object 4:229 not found (message 94)

21:56:12 Server: Object 4:230 not found (message 94)

21:56:12 Server: Object 4:232 not found (message 94)

21:56:12 Server: Object 4:236 not found (message 70)

21:56:12 Server: Object 4:237 not found (message 94)

21:56:12 Server: Object 4:240 not found (message 70)

21:56:12 Server: Object 4:233 not found (message 94)

21:56:12 Server: Object 4:239 not found (message 70)

21:56:12 Server: Object 4:241 not found (message 98)

21:56:12 Server: Object 4:242 not found (message 91)

21:56:12 Server: Object 4:248 not found (message 70)

21:56:12 Server: Object 4:247 not found (message 94)

21:56:13 Server: Object 4:259 not found (message 98)

21:56:13 Server: Object 4:260 not found (message 91)

21:56:13 Server: Object 4:266 not found (message 70)

21:56:13 Server: Object 4:262 not found (message 94)

21:56:13 Server: Object 4:272 not found (message 70)

21:56:13 Server: Object 4:263 not found (message 94)

21:56:13 Server: Object 4:269 not found (message 94)

21:56:13 Server: Object 4:268 not found (message 70)

21:56:13 Server: Object 4:271 not found (message 70)

21:56:13 Server: Object 4:270 not found (message 70)

21:56:13 Server: Object 4:261 not found (message 94)

21:56:13 Server: Object 4:267 not found (message 94)

21:56:13 Server: Object 4:264 not found (message 94)

21:56:13 Server: Object 4:265 not found (message 94)

21:56:17 Server: Object 4:277 not found (message 70)

21:56:17 Server: Object 4:278 not found (message 94)

21:56:17 Server: Object 4:285 not found (message 94)

21:56:17 Server: Object 4:284 not found (message 70)

21:56:17 Server: Object 4:279 not found (message 94)

21:56:17 Server: Object 4:280 not found (message 94)

21:56:17 Server: Object 4:283 not found (message 94)

21:56:17 Server: Object 4:294 not found (message 94)

21:56:17 Server: Object 4:296 not found (message 94)

21:56:17 Server: Object 4:297 not found (message 70)

21:56:17 Server: Object 4:286 not found (message 94)

21:56:17 Server: Object 4:287 not found (message 94)

21:56:17 Server: Object 4:288 not found (message 94)

21:56:17 Server: Object 4:292 not found (message 70)

21:56:17 Server: Object 4:295 not found (message 94)

21:56:17 Server: Object 4:291 not found (message 94)

21:56:17 Server: Object 4:298 not found (message 94)

21:56:17 Server: Object 4:301 not found (message 70)

21:56:17 Server: Object 4:300 not found (message 70)

21:56:17 Server: Object 4:299 not found (message 70)

21:56:17 Server: Object 4:306 not found (message 70)

21:56:17 Server: Object 4:313 not found (message 70)

21:56:17 Server: Object 4:305 not found (message 70)

21:56:17 Server: Object 4:312 not found (message 70)

21:56:17 Server: Object 4:302 not found (message 94)

21:56:17 Server: Object 4:303 not found (message 94)

21:56:17 Server: Object 4:304 not found (message 94)

21:56:17 Server: Object 4:311 not found (message 94)

21:56:17 Server: Object 4:307 not found (message 94)

21:56:18 Server: Object 4:308 not found (message 94)

21:56:18 Server: Object 4:309 not found (message 94)

21:56:18 Server: Object 4:310 not found (message 94)

21:56:19 Server: Object 3:566 not found (message 94)

21:56:19 "LordBuffel (76561198110439339) UNLOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:56:23 Server: Object 4:319 not found (message 94)

21:56:23 Server: Object 4:318 not found (message 94)

21:56:23 Server: Object 4:321 not found (message 70)

21:56:23 Server: Object 4:320 not found (message 94)

21:56:23 Server: Object 4:323 not found (message 94)

21:56:23 Server: Object 4:322 not found (message 94)

21:56:23 Server: Object 4:329 not found (message 94)

21:56:23 Server: Object 4:328 not found (message 94)

21:56:23 Server: Object 4:324 not found (message 94)

21:56:23 Server: Object 4:327 not found (message 94)

21:56:23 Server: Object 4:325 not found (message 94)

21:56:23 Server: Object 4:326 not found (message 94)

21:56:23 Server: Object 4:335 not found (message 94)

21:56:23 Server: Object 4:336 not found (message 94)

21:56:23 Server: Object 4:332 not found (message 94)

21:56:23 Server: Object 4:333 not found (message 94)

21:56:23 Server: Object 4:339 not found (message 94)

21:56:23 Server: Object 4:338 not found (message 94)

21:56:23 Server: Object 4:342 not found (message 70)

21:56:23 Server: Object 4:337 not found (message 94)

21:56:23 Server: Object 4:340 not found (message 70)

21:56:23 Server: Object 4:341 not found (message 70)

21:56:23 Server: Object 4:347 not found (message 94)

21:56:23 Server: Object 4:346 not found (message 70)

21:56:23 Server: Object 4:354 not found (message 70)

21:56:23 Server: Object 4:353 not found (message 70)

21:56:23 Server: Object 4:343 not found (message 94)

21:56:23 Server: Object 4:344 not found (message 94)

21:56:23 Server: Object 4:345 not found (message 94)

21:56:23 Server: Object 4:352 not found (message 70)

21:56:23 Server: Object 4:349 not found (message 70)

21:56:23 Server: Object 4:350 not found (message 94)

21:56:23 Server: Object 4:348 not found (message 94)

21:56:23 Server: Object 4:351 not found (message 94)

21:56:25 Server: Object 3:579 not found (message 94)

21:56:25 Server: Object 3:580 not found (message 94)

21:56:29 Server: Object 4:362 not found (message 94)

21:56:29 Server: Object 4:359 not found (message 94)

21:56:29 Server: Object 4:364 not found (message 94)

21:56:29 Server: Object 4:361 not found (message 94)

21:56:29 Server: Object 4:365 not found (message 94)

21:56:29 Server: Object 4:366 not found (message 94)

21:56:29 Server: Object 4:367 not found (message 94)

21:56:29 Server: Object 4:377 not found (message 70)

21:56:29 Server: Object 4:368 not found (message 94)

21:56:29 Server: Object 4:369 not found (message 94)

21:56:29 Server: Object 4:370 not found (message 94)

21:56:29 Server: Object 4:371 not found (message 94)

21:56:29 Server: Object 4:379 not found (message 94)

21:56:29 Server: Object 4:373 not found (message 94)

21:56:29 Server: Object 4:374 not found (message 94)

21:56:29 Server: Object 4:376 not found (message 94)

21:56:29 Server: Object 4:378 not found (message 94)

21:56:29 Server: Object 4:386 not found (message 94)

21:56:29 Server: Object 4:393 not found (message 94)

21:56:29 Server: Object 4:380 not found (message 94)

21:56:29 Server: Object 4:381 not found (message 94)

21:56:29 Server: Object 4:382 not found (message 94)

21:56:29 Server: Object 4:383 not found (message 94)

21:56:29 Server: Object 4:384 not found (message 94)

21:56:29 Server: Object 4:385 not found (message 94)

21:56:29 Server: Object 4:392 not found (message 70)

21:56:29 Server: Object 4:387 not found (message 94)

21:56:29 Server: Object 4:388 not found (message 94)

21:56:29 Server: Object 4:389 not found (message 94)

21:56:29 Server: Object 4:390 not found (message 94)

21:56:29 Server: Object 4:391 not found (message 94)

21:56:29 Server: Object 4:395 not found (message 70)

21:56:29 Server: Object 4:394 not found (message 94)

21:56:31 Server: Object 3:605 not found (message 94)

21:56:34 "Trader Menu: Dance with the Wolves (76561198122429523) purchased 1x RH_hk417sdsp into gear at trader city Lenzburg for 60,000 Coins"

21:56:35 Server: Object 4:402 not found (message 70)

21:56:35 Server: Object 4:403 not found (message 94)

21:56:35 Server: Object 4:406 not found (message 94)

21:56:35 Server: Object 4:407 not found (message 94)

21:56:35 Server: Object 4:408 not found (message 94)

21:56:35 Server: Object 4:400 not found (message 94)

21:56:35 Server: Object 4:401 not found (message 94)

21:56:35 Server: Object 4:415 not found (message 94)

21:56:35 Server: Object 4:409 not found (message 70)

21:56:35 Server: Object 4:410 not found (message 94)

21:56:35 Server: Object 4:411 not found (message 94)

21:56:35 Server: Object 4:414 not found (message 94)

21:56:35 Server: Object 4:417 not found (message 94)

21:56:35 Server: Object 4:418 not found (message 94)

21:56:35 Server: Object 4:420 not found (message 94)

21:56:35 Server: Object 4:421 not found (message 70)

21:56:35 Server: Object 4:422 not found (message 94)

21:56:35 Server: Object 4:423 not found (message 99)

21:56:35 Server: Object 4:424 not found (message 91)

21:56:36 Server: Object 4:435 not found (message 94)

21:56:36 Server: Object 4:430 not found (message 94)

21:56:36 Server: Object 4:431 not found (message 94)

21:56:36 Server: Object 4:432 not found (message 94)

21:56:36 Server: Object 4:433 not found (message 94)

21:56:36 Server: Object 4:434 not found (message 94)

21:56:36 Server: Object 4:439 not found (message 70)

21:56:36 Server: Object 4:436 not found (message 94)

21:56:36 Server: Object 4:437 not found (message 94)

21:56:36 Server: Object 4:438 not found (message 94)

21:56:36 Server: Object 4:440 not found (message 94)

21:56:41 Server: Object 4:447 not found (message 70)

21:56:41 Server: Object 4:445 not found (message 94)

21:56:41 Server: Object 4:446 not found (message 94)

21:56:41 Server: Object 4:452 not found (message 94)

21:56:41 Server: Object 4:448 not found (message 94)

21:56:41 Server: Object 4:450 not found (message 94)

21:56:41 Server: Object 4:451 not found (message 94)

21:56:41 Server: Object 4:459 not found (message 70)

21:56:41 Server: Object 4:460 not found (message 94)

21:56:41 Server: Object 4:456 not found (message 70)

21:56:41 Server: Object 4:453 not found (message 94)

21:56:41 Server: Object 4:454 not found (message 94)

21:56:41 Server: Object 4:455 not found (message 94)

21:56:41 Server: Object 4:464 not found (message 94)

21:56:41 Server: Object 4:462 not found (message 94)

21:56:41 Server: Object 4:463 not found (message 94)

21:56:41 Server: Object 4:466 not found (message 70)

21:56:41 Server: Object 4:467 not found (message 94)

21:56:41 Server: Object 4:468 not found (message 70)

21:56:41 Server: Object 4:465 not found (message 94)

21:56:41 Server: Object 4:476 not found (message 94)

21:56:41 Server: Object 4:475 not found (message 94)

21:56:41 Server: Object 4:474 not found (message 70)

21:56:41 Server: Object 4:469 not found (message 94)

21:56:41 Server: Object 4:470 not found (message 94)

21:56:41 Server: Object 4:471 not found (message 94)

21:56:41 Server: Object 4:472 not found (message 94)

21:56:41 Server: Object 4:473 not found (message 94)

21:56:41 Server: Object 4:480 not found (message 94)

21:56:41 Server: Object 4:481 not found (message 70)

21:56:41 Server: Object 4:477 not found (message 94)

21:56:41 Server: Object 4:478 not found (message 94)

21:56:41 Server: Object 4:479 not found (message 94)

21:56:42 MuzzleFlashROT - unknown animation source ammoRandom

21:56:43 Server: Object 3:633 not found (message 94)

21:56:43 Server: Object 3:634 not found (message 94)

21:56:47 Server: Object 4:493 not found (message 70)

21:56:47 Server: Object 4:492 not found (message 94)

21:56:47 Server: Object 4:489 not found (message 94)

21:56:47 Server: Object 4:488 not found (message 70)

21:56:47 Server: Object 4:487 not found (message 70)

21:56:47 Server: Object 4:486 not found (message 70)

21:56:47 Server: Object 4:484 not found (message 70)

21:56:47 Server: Object 4:483 not found (message 70)

21:56:47 Server: Object 4:494 not found (message 70)

21:56:47 Server: Object 4:482 not found (message 94)

21:56:47 Server: Object 4:485 not found (message 70)

21:56:47 Server: Object 4:495 not found (message 70)

21:56:48 Server: Object 4:503 not found (message 70)

21:56:48 Server: Object 4:504 not found (message 94)

21:56:48 Server: Object 4:500 not found (message 70)

21:56:48 Server: Object 4:506 not found (message 70)

21:56:48 Server: Object 4:505 not found (message 70)

21:56:48 Server: Object 4:501 not found (message 70)

21:56:48 Server: Object 4:496 not found (message 94)

21:56:48 Server: Object 4:497 not found (message 70)

21:56:48 Server: Object 4:508 not found (message 94)

21:56:48 Server: Object 4:509 not found (message 70)

21:56:48 Server: Object 4:507 not found (message 70)

21:56:48 Server: Object 4:518 not found (message 70)

21:56:48 Server: Object 4:511 not found (message 70)

21:56:48 Server: Object 4:522 not found (message 70)

21:56:48 Server: Object 4:521 not found (message 70)

21:56:48 Server: Object 4:513 not found (message 94)

21:56:48 Server: Object 4:520 not found (message 70)

21:56:48 Server: Object 4:519 not found (message 70)

21:56:48 Server: Object 4:514 not found (message 94)

21:56:48 Server: Object 4:510 not found (message 94)

21:56:48 Server: Object 4:512 not found (message 94)

21:56:48 Server: Object 4:515 not found (message 70)

21:56:48 Server: Object 4:516 not found (message 94)

21:56:48 Server: Object 4:517 not found (message 70)

21:56:48 Server: Object 4:524 not found (message 91)

21:56:48 Server: Object 4:523 not found (message 99)

21:56:48 Server: Object 4:525 not found (message 98)

21:56:48 Server: Object 4:526 not found (message 91)

21:56:50 "LordBuffel (76561198110439339) LOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:56:52 "LordBuffel (76561198110439339) UNLOCKED Safe with code: 1953 @062077 [6251.02,12760.9,0]"

21:56:53 Server: Object 4:532 not found (message 94)

21:56:53 Server: Object 4:533 not found (message 94)

21:56:53 Server: Object 4:537 not found (message 70)

21:56:53 Server: Object 4:527 not found (message 94)

21:56:53 Server: Object 4:528 not found (message 94)

21:56:53 Server: Object 4:529 not found (message 94)

21:56:53 Server: Object 4:539 not found (message 70)

21:56:53 Server: Object 4:538 not found (message 70)

21:56:53 Server: Object 4:540 not found (message 70)

21:56:53 Server: Object 4:534 not found (message 94)

21:56:53 Server: Object 4:530 not found (message 94)

21:56:53 Server: Object 4:531 not found (message 70)

21:56:53 Server: Object 4:542 not found (message 70)

21:56:53 Server: Object 4:546 not found (message 94)

21:56:53 Server: Object 4:545 not found (message 70)

21:56:53 Server: Object 4:541 not found (message 94)

21:56:53 Server: Object 4:548 not found (message 94)

21:56:54 Server: Object 4:549 not found (message 94)

21:56:54 Server: Object 4:554 not found (message 94)

21:56:54 Server: Object 4:550 not found (message 94)

21:56:54 Server: Object 4:551 not found (message 94)

21:56:54 Server: Object 4:552 not found (message 94)

21:56:54 Server: Object 4:553 not found (message 70)

21:56:54 Server: Object 4:559 not found (message 70)

21:56:54 Server: Object 4:565 not found (message 94)

21:56:54 Server: Object 4:558 not found (message 94)

21:56:54 Server: Object 4:563 not found (message 70)

21:56:54 Server: Object 4:562 not found (message 70)

21:56:54 Server: Object 4:561 not found (message 70)

21:56:54 Server: Object 4:560 not found (message 70)

21:56:54 Server: Object 4:556 not found (message 70)

21:56:54 Server: Object 4:564 not found (message 94)

21:56:54 Server: Object 4:555 not found (message 70)

21:56:54 Server: Object 4:557 not found (message 70)

21:56:54 Server: Object 4:566 not found (message 70)

21:56:54 Server: Object 4:567 not found (message 70)

21:56:55 "LordBuffel (76561198110439339) LOCKED Safe with code: 1953 @062077 [6251.02,12760.9,0]"

21:56:57 "LordBuffel (76561198110439339) UNLOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:56:59 Server: Object 4:570 not found (message 94)

21:56:59 Server: Object 4:578 not found (message 94)

21:56:59 Server: Object 4:575 not found (message 70)

21:56:59 Server: Object 4:580 not found (message 70)

21:56:59 Server: Object 4:574 not found (message 70)

21:56:59 Server: Object 4:579 not found (message 70)

21:56:59 Server: Object 4:573 not found (message 70)

21:56:59 Server: Object 4:569 not found (message 70)

21:56:59 Server: Object 4:568 not found (message 70)

21:56:59 Server: Object 4:581 not found (message 70)

21:56:59 Server: Object 4:571 not found (message 70)

21:56:59 Server: Object 4:572 not found (message 70)

21:56:59 Server: Object 4:586 not found (message 94)

21:56:59 Server: Object 4:592 not found (message 70)

21:56:59 Server: Object 4:590 not found (message 70)

21:56:59 Server: Object 4:582 not found (message 94)

21:56:59 Server: Object 4:591 not found (message 70)

21:56:59 Server: Object 4:587 not found (message 70)

21:56:59 Server: Object 4:583 not found (message 70)

21:57:00 Server: Object 4:589 not found (message 70)

21:57:00 Server: Object 4:602 not found (message 94)

21:57:00 Server: Object 4:593 not found (message 94)

21:57:00 Server: Object 4:603 not found (message 70)

21:57:00 Server: Object 4:595 not found (message 70)

21:57:00 Server: Object 4:600 not found (message 70)

21:57:00 Server: Object 4:599 not found (message 70)

21:57:00 Server: Object 4:605 not found (message 70)

21:57:00 Server: Object 4:598 not found (message 70)

21:57:00 Server: Object 4:601 not found (message 94)

21:57:00 Server: Object 4:596 not found (message 94)

21:57:00 Server: Object 4:604 not found (message 70)

21:57:00 Server: Object 4:594 not found (message 70)

21:57:00 Server: Object 4:597 not found (message 70)

21:57:00 Server: Object 4:607 not found (message 94)

21:57:00 Server: Object 4:608 not found (message 70)

21:57:00 Server: Object 4:606 not found (message 70)

21:57:01 "WAI: [Mission:[MainBandit] Presidents in Town]: Starting... [6218.76,15111.8,0]"

21:57:01 "LordBuffel (76561198110439339) LOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:57:05 "LordBuffel (76561198110439339) UNLOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:57:06 Server: Object 4:615 not found (message 94)

21:57:06 Server: Object 4:613 not found (message 94)

21:57:06 Server: Object 4:614 not found (message 94)

21:57:06 Server: Object 4:616 not found (message 94)

21:57:06 Server: Object 4:619 not found (message 94)

21:57:06 Server: Object 4:618 not found (message 94)

21:57:06 Server: Object 4:620 not found (message 94)

21:57:06 Server: Object 4:621 not found (message 94)

21:57:06 Server: Object 4:630 not found (message 94)

21:57:06 Server: Object 4:633 not found (message 70)

21:57:06 Server: Object 4:622 not found (message 94)

21:57:06 Server: Object 4:623 not found (message 94)

21:57:06 Server: Object 4:624 not found (message 94)

21:57:06 Server: Object 4:628 not found (message 70)

21:57:06 Server: Object 4:631 not found (message 94)

21:57:06 Server: Object 4:627 not found (message 94)

21:57:06 Server: Object 4:635 not found (message 94)

21:57:06 Server: Object 4:634 not found (message 94)

21:57:06 Server: Object 4:637 not found (message 70)

21:57:06 Server: Object 4:636 not found (message 94)

21:57:06 Server: Object 4:638 not found (message 98)

21:57:06 Server: Object 4:639 not found (message 91)

21:57:06 Server: Object 4:640 not found (message 98)

21:57:06 Server: Object 4:641 not found (message 91)

21:57:06 Server: Object 4:648 not found (message 94)

21:57:06 Server: Object 4:649 not found (message 70)

21:57:06 Server: Object 4:650 not found (message 94)

21:57:06 Server: Object 4:651 not found (message 94)

21:57:06 Server: Object 4:652 not found (message 94)

21:57:06 Server: Object 4:653 not found (message 94)

21:57:06 Server: Object 4:647 not found (message 94)

21:57:06 Server: Object 4:646 not found (message 70)

21:57:08 "LordBuffel (76561198110439339) LOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:57:09 "LordBuffel (76561198110439339) UNLOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:57:11 Server: Object 4:663 not found (message 94)

21:57:11 Server: Object 4:662 not found (message 94)

21:57:11 Server: Object 4:664 not found (message 94)

21:57:11 Server: Object 4:665 not found (message 94)

21:57:12 Server: Object 4:677 not found (message 70)

21:57:12 Server: Object 4:680 not found (message 94)

21:57:12 Server: Object 4:672 not found (message 94)

21:57:12 Server: Object 4:675 not found (message 94)

21:57:12 Server: Object 4:673 not found (message 94)

21:57:12 Server: Object 4:674 not found (message 94)

21:57:12 Server: Object 4:676 not found (message 94)

21:57:12 Server: Object 4:684 not found (message 94)

21:57:12 Server: Object 4:683 not found (message 94)

21:57:12 Server: Object 4:681 not found (message 94)

21:57:12 Server: Object 4:687 not found (message 70)

21:57:12 Server: Object 4:685 not found (message 94)

21:57:12 Server: Object 4:686 not found (message 94)

21:57:12 Server: Object 4:696 not found (message 94)

21:57:12 Server: Object 4:694 not found (message 70)

21:57:12 Server: Object 4:702 not found (message 94)

21:57:12 Server: Object 4:688 not found (message 94)

21:57:12 Server: Object 4:689 not found (message 94)

21:57:12 Server: Object 4:690 not found (message 94)

21:57:12 Server: Object 4:691 not found (message 94)

21:57:12 Server: Object 4:692 not found (message 94)

21:57:12 Server: Object 4:693 not found (message 94)

21:57:12 Server: Object 4:698 not found (message 94)

21:57:12 Server: Object 4:695 not found (message 94)

21:57:12 Server: Object 4:699 not found (message 94)

21:57:12 Server: Object 4:697 not found (message 94)

21:57:12 Server: Object 4:701 not found (message 94)

21:57:12 Server: Object 4:700 not found (message 94)

21:57:17 Server: Object 4:709 not found (message 70)

21:57:17 Server: Object 4:707 not found (message 94)

21:57:17 Server: Object 4:708 not found (message 94)

21:57:17 Server: Object 4:710 not found (message 94)

21:57:17 Server: Object 4:713 not found (message 94)

21:57:17 Server: Object 4:716 not found (message 94)

21:57:17 Server: Object 4:714 not found (message 94)

21:57:17 Server: Object 4:715 not found (message 94)

21:57:17 Server: Object 4:721 not found (message 94)

21:57:17 Server: Object 4:725 not found (message 70)

21:57:17 Server: Object 4:717 not found (message 94)

21:57:17 Server: Object 4:718 not found (message 94)

21:57:17 Server: Object 4:719 not found (message 94)

21:57:17 Server: Object 4:726 not found (message 94)

21:57:17 Server: Object 4:727 not found (message 70)

21:57:17 Server: Object 4:722 not found (message 94)

21:57:17 Server: Object 4:724 not found (message 94)

21:57:17 Server: Object 4:734 not found (message 94)

21:57:17 Server: Object 4:733 not found (message 70)

21:57:17 Server: Object 4:732 not found (message 70)

21:57:17 Server: Object 4:728 not found (message 94)

21:57:17 Server: Object 4:729 not found (message 94)

21:57:17 Server: Object 4:730 not found (message 94)

21:57:17 Server: Object 4:731 not found (message 94)

21:57:17 Server: Object 4:738 not found (message 94)

21:57:17 Server: Object 4:739 not found (message 70)

21:57:17 Server: Object 4:735 not found (message 94)

21:57:17 Server: Object 4:736 not found (message 94)

21:57:17 Server: Object 4:737 not found (message 94)

21:57:17 Server: Object 4:742 not found (message 94)

21:57:17 Server: Object 4:743 not found (message 70)

21:57:18 Server: Object 4:740 not found (message 94)

21:57:18 Server: Object 4:741 not found (message 94)

21:57:23 Server: Object 4:749 not found (message 94)

21:57:23 Server: Object 4:748 not found (message 70)

21:57:23 Server: Object 4:756 not found (message 94)

21:57:23 Server: Object 4:750 not found (message 94)

21:57:23 Server: Object 4:751 not found (message 94)

21:57:23 Server: Object 4:754 not found (message 94)

21:57:23 Server: Object 4:755 not found (message 94)

21:57:23 Server: Object 4:759 not found (message 94)

21:57:23 Server: Object 4:758 not found (message 70)

21:57:23 Server: Object 4:763 not found (message 70)

21:57:23 Server: Object 4:757 not found (message 94)

21:57:23 Server: Object 4:766 not found (message 70)

21:57:23 Server: Object 4:762 not found (message 70)

21:57:23 Server: Object 4:765 not found (message 94)

21:57:23 Server: Object 4:767 not found (message 70)

21:57:23 Server: Object 4:771 not found (message 94)

21:57:23 Server: Object 4:770 not found (message 70)

21:57:23 Server: Object 4:772 not found (message 70)

21:57:23 Server: Object 4:768 not found (message 70)

21:57:23 Server: Object 4:777 not found (message 94)

21:57:23 Server: Object 4:776 not found (message 94)

21:57:23 Server: Object 4:784 not found (message 70)

21:57:23 Server: Object 4:783 not found (message 70)

21:57:23 Server: Object 4:773 not found (message 94)

21:57:23 Server: Object 4:774 not found (message 94)

21:57:23 Server: Object 4:775 not found (message 94)

21:57:23 Server: Object 4:781 not found (message 70)

21:57:23 Server: Object 4:782 not found (message 70)

21:57:23 Server: Object 4:778 not found (message 94)

21:57:23 Server: Object 4:779 not found (message 94)

21:57:23 Server: Object 4:780 not found (message 94)

21:57:29 Server: Object 4:791 not found (message 94)

21:57:29 Server: Object 4:789 not found (message 94)

21:57:29 Server: Object 4:790 not found (message 94)

21:57:29 Server: Object 4:792 not found (message 94)

21:57:29 Server: Object 4:795 not found (message 94)

21:57:29 Server: Object 4:798 not found (message 94)

21:57:29 Server: Object 4:796 not found (message 94)

21:57:29 Server: Object 4:797 not found (message 94)

21:57:29 Server: Object 4:803 not found (message 94)

21:57:29 Server: Object 4:799 not found (message 94)

21:57:29 Server: Object 4:800 not found (message 94)

21:57:29 Server: Object 4:801 not found (message 94)

21:57:29 Server: Object 4:807 not found (message 94)

21:57:29 Server: Object 4:806 not found (message 70)

21:57:29 Server: Object 4:804 not found (message 94)

21:57:29 Server: Object 4:808 not found (message 94)

21:57:29 Server: Object 4:809 not found (message 94)

21:57:29 Server: Object 4:810 not found (message 70)

21:57:29 Server: Object 4:812 not found (message 94)

21:57:29 Server: Object 4:811 not found (message 94)

21:57:29 Server: Object 4:818 not found (message 94)

21:57:29 Server: Object 4:817 not found (message 70)

21:57:29 Server: Object 4:823 not found (message 70)

21:57:29 Server: Object 4:824 not found (message 94)

21:57:29 Server: Object 4:813 not found (message 94)

21:57:29 Server: Object 4:814 not found (message 94)

21:57:29 Server: Object 4:815 not found (message 94)

21:57:29 Server: Object 4:816 not found (message 94)

21:57:29 Server: Object 4:820 not found (message 70)

21:57:29 Server: Object 4:819 not found (message 94)

21:57:29 Server: Object 4:821 not found (message 94)

21:57:29 Server: Object 4:822 not found (message 94)

21:57:29 Server: Object 4:825 not found (message 70)

21:57:31 "LordBuffel (76561198110439339) LOCKED Safe with code: 6707 @062077 [6251.12,12760.1,0]"

21:57:36 Server: Object 4:810 not found (message 94)

21:57:41 "DZAI Monitor :: Server Uptime: 0:7:32. Active AI Groups: 6."

21:57:41 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."

21:57:41 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 5."

21:57:42 MuzzleFlashROT - unknown animation source ammoRandom

21:57:42 Server: Object 4:902 not found (message 70)

21:57:42 Server: Object 4:903 not found (message 94)

21:57:42 Server: Object 4:904 not found (message 94)

21:57:42 Server: Object 4:905 not found (message 94)

21:57:42 Server: Object 4:901 not found (message 70)

21:57:42 Server: Object 4:900 not found (message 70)

21:57:42 Server: Object 4:899 not found (message 94)

21:57:42 Server: Object 4:898 not found (message 94)

21:57:42 Server: Object 4:906 not found (message 70)

21:57:42 Server: Object 4:907 not found (message 94)

21:57:42 "infiSTAR.de fnc_AdminFirstReq: [3,B 1-1-C:1 (LordBuffel) REMOTE,true]"

21:57:42 "infiSTAR.de fnc_AdminReqProceed: [3,B 1-1-C:1 (LordBuffel) REMOTE,true]"

21:57:42 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   LordBuffel Invisibility Activated"

21:57:42 "<infiSTAR.de> ["AdminLog","0h 07min | LordBuffel Invisibility Activated"]"

21:57:43 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (LordBuffel) REMOTE,B 1-1-C:1 (LordBuffel) REMOTE,[6188.63,15039,0]]"

21:57:43 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 062077([6252.12,12758.5,0.00137901]) to 061054([6188.63,15039,0]) | Key: any"]"

21:57:43 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (LordBuffel) REMOTE,B 1-1-C:1 (LordBuffel) REMOTE,[6188.63,15039,0]]"

21:57:43 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 061054   WorldSpace: [6188.63,15039,0]"

21:57:43 "<infiSTAR.de> ["AdminLog","0h 07min | Admin LordBuffel(76561198110439339) teleported to   GPS: 061054   WorldSpace: [6188.63,15039,0]"]"

21:57:48 Server: Object 4:957 not found (message 70)

21:57:48 Server: Object 4:956 not found (message 70)

21:57:48 Server: Object 4:526 not found (message 91)

21:57:49 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-C:1 (LordBuffel) REMOTE,B 1-1-C:1 (LordBuffel) REMOTE,[8282.27,15462.1,0]]"

21:57:49 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 061054([6189.27,15040.5,0.00166321]) to 082050([8282.27,15462.1,0]) | Key: any"]"

21:57:49 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-C:1 (LordBuffel) REMOTE,B 1-1-C:1 (LordBuffel) REMOTE,[8282.27,15462.1,0]]"

21:57:49 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 082050   WorldSpace: [8282.27,15462.1,0]"

21:57:49 "<infiSTAR.de> ["AdminLog","0h 07min | Admin LordBuffel(76561198110439339) teleported to   GPS: 082050   WorldSpace: [8282.27,15462.1,0]"]"

21:57:51 "infiSTAR.de fnc_AdminFirstReq: [3,B 1-1-C:1 (LordBuffel) REMOTE,false]"

21:57:51 "infiSTAR.de fnc_AdminReqProceed: [3,B 1-1-C:1 (LordBuffel) REMOTE,false]"

21:57:51 "infiSTAR.de PVAH_WriteLog: B 1-1-C:1 (LordBuffel) REMOTE   LordBuffel Invisibility Disabled"

21:57:51 "<infiSTAR.de> ["AdminLog","0h 07min | LordBuffel Invisibility Disabled"]"

21:57:53 Server: Object 4:970 not found (message 94)

21:57:53 Server: Object 4:969 not found (message 70)

21:57:53 Server: Object 4:971 not found (message 70)

21:57:53 Server: Object 4:979 not found (message 94)

21:57:53 Server: Object 4:978 not found (message 94)

21:57:53 Server: Object 4:975 not found (message 94)

21:57:53 Server: Object 4:976 not found (message 94)

21:57:53 Server: Object 4:977 not found (message 94)

21:57:53 Server: Object 4:985 not found (message 70)

21:57:53 Server: Object 4:986 not found (message 70)

21:57:53 Server: Object 4:980 not found (message 94)

21:57:53 Server: Object 4:981 not found (message 94)

21:57:53 Server: Object 4:983 not found (message 94)

21:57:53 Server: Object 4:984 not found (message 94)

21:57:53 Server: Object 4:990 not found (message 70)

21:57:53 Server: Object 4:991 not found (message 94)

21:57:53 Server: Object 4:989 not found (message 94)

21:57:53 Server: Object 4:994 not found (message 70)

21:57:53 Server: Object 4:987 not found (message 94)

21:57:53 Server: Object 4:988 not found (message 94)

21:57:53 Server: Object 4:992 not found (message 70)

21:57:53 Server: Object 4:993 not found (message 70)

21:57:58 Server: Object 4:32 not found (message 132)

21:57:58 "Trader Menu: Dance with the Wolves (76561198122429523) purchased 9x RH_20Rnd_762x51_SD_hk417 into gear at trader city Lenzburg for 63,000 Coins"

21:57:59 Server: Object 4:1005 not found (message 94)

21:57:59 Server: Object 4:1004 not found (message 94)

21:57:59 Server: Object 4:1006 not found (message 94)

21:57:59 Server: Object 4:1010 not found (message 70)

21:57:59 Server: Object 4:1011 not found (message 94)

21:57:59 Server: Object 4:1015 not found (message 70)

21:57:59 Server: Object 4:1007 not found (message 94)

21:57:59 Server: Object 4:1008 not found (message 94)

21:57:59 Server: Object 4:1009 not found (message 94)

21:57:59 Server: Object 4:1014 not found (message 94)

21:57:59 Server: Object 4:1012 not found (message 94)

21:57:59 Server: Object 4:1013 not found (message 94)

21:57:59 Server: Object 4:1023 not found (message 94)

21:57:59 Server: Object 4:1022 not found (message 70)

21:57:59 Server: Object 4:1020 not found (message 94)

21:57:59 Server: Object 4:1026 not found (message 70)

21:57:59 Server: Object 4:1028 not found (message 70)

21:58:00 Server: Object 4:1027 not found (message 70)

21:58:00 Server: Object 4:1016 not found (message 94)

21:58:00 Server: Object 4:1019 not found (message 94)

21:58:00 Server: Object 4:1025 not found (message 94)

21:58:00 Server: Object 4:1024 not found (message 94)

21:58:00 Server: Object 4:1029 not found (message 94)

21:58:01 Server: Object 3:739 not found (message 70)

21:58:01 Server: Object 3:738 not found (message 94)

21:58:08 "SERVER FPS: 34  PLAYERS: 2"

21:58:11 Server: Object 4:1056 not found (message 94)

21:58:13 Server: Object 3:769 not found (message 70)

21:58:17 Server: Object 4:1076 not found (message 70)

21:58:17 Server: Object 4:1075 not found (message 94)

21:58:19 Server: Object 3:785 not found (message 70)

21:58:19 "Trader Menu: Dance with the Wolves (76561198122429523) purchased 6x ItemBloodbag into backpack at trader city Lenzburg for 240 Coins"

21:58:19 "Trader Menu: Dance with the Wolves (76561198122429523) purchased 4x ItemMorphine into backpack at trader city Lenzburg for 80 Coins"

21:58:19 "Trader Menu: Dance with the Wolves (76561198122429523) purchased 5x ItemPainkiller into backpack at trader city Lenzburg for 50 Coins"

21:58:53 Server: Object 4:1136 not found (message 70)

21:58:53 Server: Object 4:1135 not found (message 94)

21:58:53 Server: Object 4:1133 not found (message 94)

21:58:53 Server: Object 4:1134 not found (message 94)

21:58:54 Server: Object 4:1145 not found (message 70)

21:58:54 Server: Object 4:1147 not found (message 70)

21:58:54 Server: Object 4:1146 not found (message 70)

21:58:54 Server: Object 4:1142 not found (message 70)

21:58:54 Server: Object 4:1143 not found (message 94)

21:58:54 Server: Object 4:1144 not found (message 70)

21:58:54 Server: Object 4:1148 not found (message 94)

21:58:54 Server: Object 4:1150 not found (message 94)

21:58:54 Server: Object 4:1152 not found (message 70)

21:58:54 Server: Object 4:1153 not found (message 70)

21:58:54 Server: Object 4:1151 not found (message 70)

21:58:54 Server: Object 4:1149 not found (message 70)

21:58:54 Server: Object 4:1154 not found (message 98)

21:58:54 Server: Object 4:1155 not found (message 91)

21:58:54 Server: Object 4:1157 not found (message 91)

21:58:54 Server: Object 4:1156 not found (message 99)

21:58:59 Server: Object 4:1167 not found (message 94)

21:58:59 Server: Object 4:1171 not found (message 94)

21:58:59 Server: Object 4:1168 not found (message 94)

21:58:59 Server: Object 4:1169 not found (message 94)

21:58:59 Server: Object 4:1170 not found (message 94)

21:58:59 Server: Object 4:1172 not found (message 94)

21:58:59 Server: Object 4:1173 not found (message 94)

21:58:59 Server: Object 4:1174 not found (message 94)

21:58:59 Server: Object 4:1180 not found (message 70)

21:58:59 Server: Object 4:1175 not found (message 94)

21:58:59 Server: Object 4:1176 not found (message 94)

21:58:59 Server: Object 4:1177 not found (message 94)

21:58:59 Server: Object 4:1178 not found (message 94)

21:58:59 Server: Object 4:1179 not found (message 94)

21:58:59 Server: Object 4:1186 not found (message 94)

21:58:59 Server: Object 4:1181 not found (message 94)

21:58:59 Server: Object 4:1182 not found (message 94)

21:59:00 Server: Object 4:1183 not found (message 94)

21:59:00 Server: Object 4:1184 not found (message 94)

21:59:00 Server: Object 4:1185 not found (message 94)

21:59:00 Server: Object 4:1190 not found (message 70)

21:59:00 Server: Object 4:1187 not found (message 94)

21:59:00 Server: Object 4:1188 not found (message 94)

21:59:00 Server: Object 4:1189 not found (message 94)

21:59:00 Server: Object 4:1194 not found (message 94)

21:59:00 Server: Object 4:1191 not found (message 94)

21:59:00 Server: Object 4:1192 not found (message 94)

21:59:00 Server: Object 4:1193 not found (message 94)

21:59:05 Server: Object 4:1201 not found (message 70)

21:59:05 Server: Object 4:1211 not found (message 70)

21:59:05 Server: Object 4:1203 not found (message 94)

21:59:05 Server: Object 4:1210 not found (message 70)

21:59:05 Server: Object 4:1209 not found (message 70)

21:59:05 Server: Object 4:1208 not found (message 70)

21:59:05 Server: Object 4:1207 not found (message 70)

21:59:05 Server: Object 4:1206 not found (message 70)

21:59:05 Server: Object 4:1205 not found (message 70)

21:59:05 Server: Object 4:1200 not found (message 70)

21:59:05 Server: Object 4:1204 not found (message 70)

21:59:05 Server: Object 4:1202 not found (message 70)

21:59:05 Server: Object 4:1199 not found (message 70)

21:59:05 Server: Object 4:1213 not found (message 94)

21:59:05 Server: Object 4:1212 not found (message 94)

21:59:05 Server: Object 4:1217 not found (message 94)

21:59:05 Server: Object 4:1219 not found (message 94)

21:59:06 Server: Object 4:1222 not found (message 94)

21:59:06 Server: Object 4:1221 not found (message 70)

21:59:06 Server: Object 4:1220 not found (message 70)

21:59:06 Server: Object 4:1215 not found (message 70)

21:59:06 Server: Object 4:1218 not found (message 70)

21:59:06 Server: Object 4:1216 not found (message 94)

21:59:06 Server: Object 4:1214 not found (message 94)

21:59:06 Server: Object 4:1229 not found (message 94)

21:59:06 Server: Object 4:1235 not found (message 70)

21:59:06 Server: Object 4:1234 not found (message 70)

21:59:06 Server: Object 4:1233 not found (message 70)

21:59:06 Server: Object 4:1232 not found (message 70)

21:59:06 Server: Object 4:1231 not found (message 70)

21:59:06 Server: Object 4:1230 not found (message 70)

21:59:06 Server: Object 4:1225 not found (message 94)

21:59:06 Server: Object 4:1228 not found (message 70)

21:59:06 Server: Object 4:1227 not found (message 70)

21:59:06 Server: Object 4:1224 not found (message 94)

21:59:06 Server: Object 4:1237 not found (message 70)

21:59:06 Server: Object 4:1239 not found (message 70)

21:59:06 Server: Object 4:1238 not found (message 70)

21:59:06 Server: Object 4:1236 not found (message 70)

21:59:06 Server: Object 4:1240 not found (message 70)

21:59:10 Server: Object 4:1243 not found (message 99)

21:59:10 Server: Object 4:1241 not found (message 98)

21:59:10 Server: Object 4:1244 not found (message 91)

21:59:10 Server: Object 4:1242 not found (message 91)

21:59:11 Server: Object 4:1245 not found (message 99)

21:59:11 Server: Object 4:1246 not found (message 91)

21:59:12 Server: Object 4:1247 not found (message 98)

21:59:12 Server: Object 4:1248 not found (message 91)

21:59:17 Server: Object 4:1249 not found (message 70)

21:59:17 Server: Object 4:1253 not found (message 70)

21:59:17 Server: Object 4:1250 not found (message 70)

21:59:17 Server: Object 4:1251 not found (message 94)

21:59:17 Server: Object 4:1252 not found (message 94)

21:59:17 Server: Object 4:1254 not found (message 98)

21:59:17 Server: Object 4:1255 not found (message 91)

21:59:18 Server: Object 4:1256 not found (message 98)

21:59:18 Server: Object 4:1257 not found (message 91)

21:59:19 "WAI: [Mission:[MainHero] Scout Patrol]: Starting... [4271.51,13852.4,0]"

21:59:20 Strange convex component01 in rh_m14\rh_m1saim.p3d:geometry

21:59:20 Strange convex component07 in rh_m14\rh_m1saim.p3d:geometry

21:59:20 Strange convex component12 in rh_m14\rh_m1saim.p3d:geometry

21:59:20 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-A:1 (LordBuffel) REMOTE,B 1-1-A:1 (LordBuffel) REMOTE,[8302.1,15470.5,0]]"

21:59:20 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 066053([6663.17,15128.2,0.0013504]) to 083050([8302.1,15470.5,0]) | Key: any"]"

21:59:20 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-A:1 (LordBuffel) REMOTE,B 1-1-A:1 (LordBuffel) REMOTE,[8302.1,15470.5,0]]"

21:59:20 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 083050   WorldSpace: [8302.1,15470.5,0]"

21:59:20 "<infiSTAR.de> ["AdminLog","0h 08min | Admin LordBuffel(76561198110439339) teleported to   GPS: 083050   WorldSpace: [8302.1,15470.5,0]"]"

21:59:23 Server: Object 4:1261 not found (message 70)

21:59:23 Server: Object 4:1260 not found (message 70)

21:59:23 Server: Object 4:1262 not found (message 70)

21:59:23 Server: Object 4:1263 not found (message 94)

21:59:23 Server: Object 4:1265 not found (message 94)

21:59:23 Server: Object 4:1269 not found (message 70)

21:59:23 Server: Object 4:1266 not found (message 70)

21:59:23 Server: Object 4:1264 not found (message 70)

21:59:23 Server: Object 4:1270 not found (message 94)

21:59:24 Server: Object 4:1267 not found (message 94)

21:59:24 Server: Object 4:1271 not found (message 70)

21:59:24 Server: Object 4:1268 not found (message 70)

21:59:24 Server: Object 3:927 not found (message 132)

21:59:29 Server: Object 4:1275 not found (message 70)

21:59:29 Server: Object 4:1276 not found (message 94)

21:59:29 Server: Object 4:1277 not found (message 70)

21:59:29 Server: Object 4:1274 not found (message 94)

21:59:29 Server: Object 4:1279 not found (message 94)

21:59:29 Server: Object 4:1281 not found (message 94)

21:59:29 Server: Object 4:1280 not found (message 70)

21:59:29 Server: Object 4:1285 not found (message 70)

21:59:29 Server: Object 4:1284 not found (message 70)

21:59:30 Server: Object 4:1283 not found (message 70)

21:59:30 Server: Object 4:1282 not found (message 70)

21:59:30 Server: Object 4:1278 not found (message 70)

21:59:35 Server: Object 4:1290 not found (message 94)

21:59:35 Server: Object 4:1291 not found (message 70)

21:59:35 Server: Object 4:1294 not found (message 70)

21:59:35 Server: Object 4:1295 not found (message 94)

21:59:35 Server: Object 4:1299 not found (message 70)

21:59:35 Server: Object 4:1298 not found (message 70)

21:59:35 Server: Object 4:1297 not found (message 70)

21:59:36 Server: Object 4:1296 not found (message 70)

21:59:36 Server: Object 4:1293 not found (message 94)

21:59:36 Server: Object 4:1292 not found (message 94)

21:59:36 Server: Object 3:958 not found (message 132)

21:59:41 Server: Object 4:1304 not found (message 94)

21:59:41 Server: Object 4:1306 not found (message 94)

21:59:41 Server: Object 4:1305 not found (message 94)

21:59:41 Server: Object 4:1309 not found (message 94)

21:59:41 Server: Object 4:1308 not found (message 70)

21:59:41 Server: Object 4:1313 not found (message 70)

21:59:41 Server: Object 4:1312 not found (message 70)

21:59:41 Server: Object 4:1311 not found (message 94)

21:59:41 Server: Object 4:1310 not found (message 94)

21:59:47 Server: Object 4:1316 not found (message 70)

21:59:47 Server: Object 4:1318 not found (message 94)

21:59:47 Server: Object 4:1317 not found (message 94)

21:59:47 Server: Object 4:1319 not found (message 94)

21:59:48 Server: Object 3:988 not found (message 132)

21:59:53 Server: Object 4:1325 not found (message 70)

21:59:53 Server: Object 4:1324 not found (message 70)

21:59:53 Server: Object 3:1003 not found (message 132)

21:59:59 Server: Object 4:1330 not found (message 94)

21:59:59 Server: Object 4:1331 not found (message 70)

22:00:00 "WAI: [Mission:[MainBandit] Farmer]: Starting... [11797.1,9666.98,0]"

22:00:05 Server: Object 4:1336 not found (message 70)

22:00:05 Server: Object 4:1337 not found (message 94)

22:00:05 Server: Object 4:1338 not found (message 94)

22:00:05 Server: Object 4:1339 not found (message 94)

22:00:05 Server: Object 4:1342 not found (message 94)

22:00:05 Server: Object 4:1341 not found (message 70)

22:00:05 Server: Object 4:1345 not found (message 94)

22:00:05 Server: Object 4:1340 not found (message 94)

22:00:05 Server: Object 4:1344 not found (message 70)

22:00:05 Server: Object 4:1343 not found (message 94)

22:00:05 Server: Object 3:1031 not found (message 132)

22:00:07 Server: Object 3:1054 not found (message 94)

22:00:07 Server: Object 3:1055 not found (message 94)

22:00:09 "RUNNING EVENT: crash_spawner on [2020,3,9,14,0]"

22:00:11 Server: Object 4:1355 not found (message 94)

22:00:11 Server: Object 4:1356 not found (message 94)

22:00:17 Server: Object 4:1362 not found (message 94)

22:00:17 Server: Object 4:1363 not found (message 94)

22:00:23 Server: Object 4:1368 not found (message 94)

22:00:23 Server: Object 4:1369 not found (message 94)

22:00:25 Server: Object 3:1101 not found (message 94)

22:00:25 Server: Object 3:1104 not found (message 70)

22:00:25 Server: Object 3:1103 not found (message 94)

22:00:25 Server: Object 3:1102 not found (message 94)

22:00:29 Server: Object 4:1375 not found (message 94)

22:00:29 Server: Object 4:1374 not found (message 94)

22:00:30 "Trader Menu: LordBuffel (76561198110439339) purchased 4x RH_20Rnd_762x51_SD_hk417 into gear at trader city Lenzburg for 28,000 Coins"

22:00:31 Server: Object 3:1120 not found (message 70)

22:00:31 Server: Object 3:1119 not found (message 94)

22:00:31 Server: Object 3:1128 not found (message 70)

22:00:35 Server: Object 4:1382 not found (message 94)

22:00:35 Server: Object 4:1380 not found (message 70)

22:00:35 Server: Object 4:1383 not found (message 94)

22:00:35 Server: Object 4:1381 not found (message 94)

22:00:35 Server: Object 3:1114 not found (message 132)

22:00:37 Server: Object 4:1384 not found (message 94)

22:00:41 Server: Object 4:1389 not found (message 94)

22:00:41 Server: Object 4:1390 not found (message 70)

22:00:41 Server: Object 4:1391 not found (message 94)

22:00:41 Server: Object 4:1395 not found (message 70)

22:00:41 Server: Object 4:1397 not found (message 70)

22:00:41 Server: Object 4:1396 not found (message 94)

22:00:41 Server: Object 4:1398 not found (message 94)

22:00:43 Server: Object 3:1157 not found (message 94)

22:00:47 Server: Object 4:1406 not found (message 94)

22:00:47 Server: Object 4:1404 not found (message 94)

22:00:47 Server: Object 4:1405 not found (message 94)

22:00:47 Server: Object 4:1412 not found (message 94)

22:00:47 Server: Object 4:1410 not found (message 94)

22:00:47 Server: Object 4:1409 not found (message 94)

22:00:47 Server: Object 4:1413 not found (message 70)

22:00:47 Server: Object 4:1411 not found (message 94)

22:00:53 Server: Object 4:1420 not found (message 94)

22:00:53 Server: Object 4:1419 not found (message 94)

22:00:53 Server: Object 4:1425 not found (message 94)

22:00:53 Server: Object 4:1424 not found (message 94)

22:00:53 Server: Object 4:1426 not found (message 70)

22:00:53 Server: Object 4:1427 not found (message 70)

22:00:53 Server: Object 4:1428 not found (message 94)

22:00:55 Server: Object 3:1186 not found (message 94)

22:00:59 Server: Object 4:1433 not found (message 70)

22:00:59 Server: Object 4:1431 not found (message 70)

22:00:59 Server: Object 4:1434 not found (message 70)

22:00:59 Server: Object 4:1432 not found (message 94)

22:01:00 Server: Object 4:1435 not found (message 98)

22:01:00 Server: Object 4:1436 not found (message 91)

22:01:00 Server: Object 4:1437 not found (message 98)

22:01:00 Server: Object 4:1438 not found (message 91)

22:01:00 Server: Object 4:1447 not found (message 94)

22:01:00 Server: Object 4:1448 not found (message 70)

22:01:00 Server: Object 4:1446 not found (message 70)

22:01:00 Server: Object 4:1445 not found (message 70)

22:01:01 Server: Object 4:1449 not found (message 70)

22:01:01 Server: Object 3:1199 not found (message 94)

22:01:01 Server: Object 3:1200 not found (message 94)

22:01:05 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel TP infront of you OFF"

22:01:05 "<infiSTAR.de> ["AdminLog","0h 10min | LordBuffel TP infront of you OFF"]"

22:01:05 Server: Object 4:1453 not found (message 94)

22:01:05 Server: Object 4:1454 not found (message 94)

22:01:05 Server: Object 4:1455 not found (message 70)

22:01:05 Server: Object 4:1463 not found (message 94)

22:01:05 Server: Object 4:1462 not found (message 94)

22:01:05 Server: Object 4:1456 not found (message 70)

22:01:05 Server: Object 4:1457 not found (message 94)

22:01:05 Server: Object 4:1458 not found (message 70)

22:01:05 Server: Object 4:1461 not found (message 70)

22:01:05 Server: Object 4:1459 not found (message 70)

22:01:05 Server: Object 4:1460 not found (message 70)

22:01:06 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel G_o_d OFF"

22:01:06 "<infiSTAR.de> ["AdminLog","0h 10min | LordBuffel G_o_d OFF"]"

22:01:07 Server: Object 3:1214 not found (message 70)

22:01:07 Server: Object 3:1213 not found (message 94)

22:01:11 Server: Object 4:1472 not found (message 94)

22:01:11 Server: Object 4:1473 not found (message 70)

22:01:11 Server: Object 4:1479 not found (message 94)

22:01:11 Server: Object 4:1478 not found (message 70)

22:01:11 Server: Object 4:1476 not found (message 70)

22:01:12 Server: Object 4:1475 not found (message 70)

22:01:12 Server: Object 4:1474 not found (message 70)

22:01:12 Server: Object 4:1480 not found (message 94)

22:01:12 Server: Object 4:1481 not found (message 94)

22:01:12 Server: Object 4:1477 not found (message 70)

22:01:13 Server: Object 3:1228 not found (message 94)

22:01:13 Server: Object 3:1229 not found (message 94)

22:01:17 "infiSTAR.de fnc_AdminFirstReq: [0,B 1-1-A:1 (LordBuffel) REMOTE,"AH64D",[8266.58,15453.8,0]]"

22:01:17 "infiSTAR.de fnc_AdminReqProceed: [0,B 1-1-A:1 (LordBuffel) REMOTE,"AH64D",[8266.58,15453.8,0]]"

22:01:17 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel (76561198110439339) spawned AH64D @082050"

22:01:17 "<infiSTAR.de> ["AdminLog","0h 10min | LordBuffel (76561198110439339) spawned AH64D @082050"]"

22:01:17 Server: Object 4:1484 not found (message 94)

22:01:17 Server: Object 4:1486 not found (message 70)

22:01:17 Server: Object 4:1487 not found (message 94)

22:01:17 Server: Object 4:1485 not found (message 94)

22:01:17 Server: Object 4:1489 not found (message 94)

22:01:18 Server: Object 4:1492 not found (message 70)

22:01:18 Server: Object 4:1494 not found (message 94)

22:01:18 Server: Object 4:1491 not found (message 94)

22:01:18 Server: Object 4:1493 not found (message 70)

22:01:18 Server: Object 4:1495 not found (message 70)

22:01:18 Server: Object 4:1488 not found (message 70)

22:01:18 Server: Object 4:1490 not found (message 70)

22:01:19 Server: Object 3:1243 not found (message 94)

22:01:21 "infiSTAR.de fnc_AdminFirstReq: [-2,B 1-1-A:1 (LordBuffel) REMOTE,404a90c0# 991543: ah64d.p3d]"

22:01:21 "infiSTAR.de fnc_AdminReqProceed: [-2,B 1-1-A:1 (LordBuffel) REMOTE,404a90c0# 991543: ah64d.p3d]"

22:01:21 "DELETE DIRECT: SERVER deleted object with UID: 826661545380112"

22:01:21 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel (76561198110439339) deleted AH64D @082050 - characterID any - objectID: 0 - objectUID: 826661545380112"

22:01:21 "<infiSTAR.de> ["AdminLog","0h 10min | LordBuffel (76561198110439339) deleted AH64D @082050 - characterID any - objectID: 0 - objectUID: 826661545380112"]"

22:01:23 Server: Object 4:1501 not found (message 70)

22:01:23 Server: Object 4:1500 not found (message 70)

22:01:23 Server: Object 4:1499 not found (message 70)

22:01:23 Server: Object 4:1498 not found (message 70)

22:01:23 Server: Object 4:1502 not found (message 70)

22:01:23 Server: Object 4:1503 not found (message 94)

22:01:23 Server: Object 4:1509 not found (message 70)

22:01:23 Server: Object 4:1508 not found (message 70)

22:01:23 Server: Object 4:1507 not found (message 70)

22:01:24 Server: Object 4:1506 not found (message 70)

22:01:24 Server: Object 4:1505 not found (message 70)

22:01:24 Server: Object 4:1504 not found (message 70)

22:01:25 Server: Object 3:1257 not found (message 70)

22:01:25 Server: Object 3:1255 not found (message 94)

22:01:25 Server: Object 3:1256 not found (message 94)

22:01:29 Server: Object 4:1515 not found (message 94)

22:01:29 Server: Object 4:1514 not found (message 94)

22:01:29 Server: Object 4:1523 not found (message 70)

22:01:29 Server: Object 4:1519 not found (message 70)

22:01:29 Server: Object 4:1521 not found (message 94)

22:01:30 Server: Object 4:1516 not found (message 94)

22:01:30 Server: Object 4:1522 not found (message 94)

22:01:30 Server: Object 4:1518 not found (message 70)

22:01:30 Server: Object 4:1517 not found (message 70)

22:01:30 Server: Object 4:1520 not found (message 70)

22:01:36 Server: Object 4:1528 not found (message 94)

22:01:36 Server: Object 4:1529 not found (message 94)

22:01:36 Server: Object 4:1527 not found (message 94)

22:01:36 Server: Object 4:1530 not found (message 70)

22:01:36 Server: Object 4:1534 not found (message 94)

22:01:36 Server: Object 4:1533 not found (message 70)

22:01:36 Server: Object 4:1535 not found (message 94)

22:01:36 Server: Object 4:1532 not found (message 70)

22:01:36 Server: Object 4:1531 not found (message 94)

22:01:36 Server: Object 4:1537 not found (message 70)

22:01:36 Server: Object 4:1536 not found (message 70)

22:01:42 Server: Object 4:1542 not found (message 94)

22:01:42 Server: Object 4:1543 not found (message 70)

22:01:42 Server: Object 4:1541 not found (message 94)

22:01:42 Server: Object 4:1548 not found (message 70)

22:01:42 Server: Object 4:1550 not found (message 70)

22:01:42 Server: Object 4:1551 not found (message 94)

22:01:42 Server: Object 4:1549 not found (message 94)

22:01:48 Server: Object 4:1555 not found (message 94)

22:01:48 Server: Object 4:1556 not found (message 94)

22:01:48 Server: Object 4:1557 not found (message 70)

22:01:48 Server: Object 4:1563 not found (message 70)

22:01:48 Server: Object 4:1564 not found (message 94)

22:01:48 Server: Object 4:1565 not found (message 94)

22:01:48 Server: Object 4:1562 not found (message 70)

22:01:54 Server: Object 4:1570 not found (message 94)

22:01:54 Server: Object 4:1569 not found (message 70)

22:01:54 Server: Object 4:1571 not found (message 94)

22:01:54 Server: Object 4:1577 not found (message 94)

22:01:54 Server: Object 4:1578 not found (message 94)

22:01:54 Server: Object 4:1579 not found (message 94)

22:02:00 Server: Object 4:1583 not found (message 94)

22:02:00 Server: Object 4:1584 not found (message 94)

22:02:00 Server: Object 4:1585 not found (message 94)

22:02:00 Server: Object 4:1591 not found (message 70)

22:02:00 Server: Object 4:1590 not found (message 94)

22:02:00 Server: Object 4:1592 not found (message 94)

22:02:00 Server: Object 4:1593 not found (message 94)

22:02:02 "infiSTAR.de fnc_AdminFirstReq: [0,B 1-1-A:1 (LordBuffel) REMOTE,"CSJ_GyroP",[8266.83,15455.6,0]]"

22:02:02 "infiSTAR.de fnc_AdminReqProceed: [0,B 1-1-A:1 (LordBuffel) REMOTE,"CSJ_GyroP",[8266.83,15455.6,0]]"

22:02:02 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel (76561198110439339) spawned CSJ_GyroP @082050"

22:02:02 "<infiSTAR.de> ["AdminLog","0h 11min | LordBuffel (76561198110439339) spawned CSJ_GyroP @082050"]"

22:02:03 "infiSTAR.de fnc_AdminFirstReq: [0,B 1-1-A:1 (LordBuffel) REMOTE,"CSJ_GyroCover",[8266.83,15455.6,0]]"

22:02:03 "infiSTAR.de fnc_AdminReqProceed: [0,B 1-1-A:1 (LordBuffel) REMOTE,"CSJ_GyroCover",[8266.83,15455.6,0]]"

22:02:03 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel (76561198110439339) spawned CSJ_GyroCover @082050"

22:02:03 "<infiSTAR.de> ["AdminLog","0h 11min | LordBuffel (76561198110439339) spawned CSJ_GyroCover @082050"]"

22:02:05 Server: Object 4:1599 not found (message 94)

22:02:05 Server: Object 4:1597 not found (message 94)

22:02:05 Server: Object 4:1598 not found (message 70)

22:02:05 Server: Object 4:1605 not found (message 94)

22:02:05 Server: Object 4:1603 not found (message 94)

22:02:05 Server: Object 4:1601 not found (message 94)

22:02:05 Server: Object 4:1600 not found (message 70)

22:02:05 Server: Object 4:1607 not found (message 70)

22:02:05 Server: Object 4:1606 not found (message 70)

22:02:05 Server: Object 4:1604 not found (message 70)

22:02:05 Server: Object 4:1602 not found (message 70)

22:02:07 "infiSTAR.de fnc_AdminFirstReq: [-2,B 1-1-A:1 (LordBuffel) REMOTE,404a8100# 991787: csj_gyrop.p3d]"

22:02:07 "infiSTAR.de fnc_AdminReqProceed: [-2,B 1-1-A:1 (LordBuffel) REMOTE,404a8100# 991787: csj_gyrop.p3d]"

22:02:07 "DELETE DIRECT: SERVER deleted object with UID: 82668154556072"

22:02:07 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel (76561198110439339) deleted CSJ_GyroP @082050 - characterID any - objectID: 0 - objectUID: 82668154556072"

22:02:07 "<infiSTAR.de> ["AdminLog","0h 11min | LordBuffel (76561198110439339) deleted CSJ_GyroP @082050 - characterID any - objectID: 0 - objectUID: 82668154556072"]"

22:02:07 Server: Object 3:1365 not found (message 70)

22:02:11 Server: Object 4:1621 not found (message 94)

22:02:11 Server: Object 4:1623 not found (message 94)

22:02:11 Server: Object 4:1622 not found (message 94)

22:02:11 Server: Object 4:1624 not found (message 94)

22:02:12 Server: Object 4:1606 not found (message 94)

22:02:14 "infiSTAR.de fnc_AdminFirstReq: [-2,B 1-1-A:1 (LordBuffel) REMOTE,404a90c0# 991791: csj_gyrocover.p3d]"

22:02:14 "infiSTAR.de fnc_AdminReqProceed: [-2,B 1-1-A:1 (LordBuffel) REMOTE,404a90c0# 991791: csj_gyrocover.p3d]"

22:02:14 "DELETE DIRECT: SERVER deleted object with UID: 82668154556072"

22:02:14 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel (76561198110439339) deleted CSJ_GyroCover @082050 - characterID any - objectID: 0 - objectUID: 82668154556072"

22:02:14 "<infiSTAR.de> ["AdminLog","0h 11min | LordBuffel (76561198110439339) deleted CSJ_GyroCover @082050 - characterID any - objectID: 0 - objectUID: 82668154556072"]"

22:02:16 "CRASHSPAWNER: Spawning crash site (CrashSite_RU) at [15467.5,6974.45,0] with 6 items."

22:02:19 Server: Object 3:1393 not found (message 94)

22:02:22 "infiSTAR.de fnc_AdminFirstReq: [0,B 1-1-A:1 (LordBuffel) REMOTE,"GNT_C185U",[8275.14,15461.3,0]]"

22:02:22 "infiSTAR.de fnc_AdminReqProceed: [0,B 1-1-A:1 (LordBuffel) REMOTE,"GNT_C185U",[8275.14,15461.3,0]]"

22:02:22 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel (76561198110439339) spawned GNT_C185U @082050"

22:02:22 "<infiSTAR.de> ["AdminLog","0h 11min | LordBuffel (76561198110439339) spawned GNT_C185U @082050"]"

22:02:42 "DZAI Monitor :: Server Uptime: 0:12:32. Active AI Groups: 6."

22:02:42 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."

22:02:42 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 5."

22:03:39 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel Vehboost On"

22:03:39 "<infiSTAR.de> ["AdminLog","0h 13min | LordBuffel Vehboost On"]"

22:03:45 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel Vehboost Disabled"

22:03:45 "<infiSTAR.de> ["AdminLog","0h 13min | LordBuffel Vehboost Disabled"]"

22:04:01 "<infiSTAR.de> ["VEHICLE_DESTROYED","Locked Vehicle destroyed @172018 - ArmoredSUV_PMC, worldspace [74.9022,[17206.9,18641.2,0.195262]], CharId 0, objID 0, objUID 0, nearby []"]"

22:04:08 "SERVER FPS: 27  PLAYERS: 2"

22:04:22 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel Vehboost On"

22:04:22 "<infiSTAR.de> ["AdminLog","0h 13min | LordBuffel Vehboost On"]"

22:04:25 "infiSTAR.de PVAH_WriteLog: B 1-1-A:1 (LordBuffel) REMOTE   LordBuffel Vehboost Disabled"

22:04:25 "<infiSTAR.de> ["AdminLog","0h 13min | LordBuffel Vehboost Disabled"]"

22:05:00 "RUNNING EVENT: event_init on [2020,3,9,14,5]"

22:05:00 "Special Forces Event spawning at [16714,14034.8]"

22:05:46 "P1ayer PID#3(Dance with the Wolves) hit by PID#4(LordBuffel) with GNT_C185U from 0 meters in  for 0.0030453 damage"

22:05:55 Server: Object 3:1427 not found (message 70)

22:05:55 Server: Object 3:1428 not found (message 94)

22:05:59 Server: Object 4:1664 not found (message 70)

22:06:05 Server: Object 4:1671 not found (message 70)

22:06:05 Server: Object 4:1670 not found (message 70)

22:06:05 Server: Object 4:1669 not found (message 94)

22:06:07 Server: Object 3:1437 not found (message 94)

22:06:07 Server: Object 3:1438 not found (message 94)

22:06:07 Server: Object 3:1439 not found (message 94)

22:06:13 "P1ayer PID#3(Dance with the Wolves) hit by AI with RH_m1seot/B_762x51_noTracer <ammo left:17> from 81 meters in head_hit for 0.185171 damage"

22:06:37 Server: Object 3:1477 not found (message 70)

22:06:37 Server: Object 3:1476 not found (message 94)

22:06:37 Server: Object 3:1480 not found (message 94)

22:06:37 Server: Object 3:1478 not found (message 94)

22:06:37 Server: Object 3:1479 not found (message 94)

22:06:43 Server: Object 3:1486 not found (message 94)

22:06:49 Server: Object 3:1497 not found (message 94)

22:06:49 Server: Object 3:1498 not found (message 94)

22:06:55 Server: Object 3:1504 not found (message 94)

22:06:55 Server: Object 3:1505 not found (message 94)

22:06:55 Server: Object 3:1506 not found (message 94)

22:06:55 Server: Object 3:1507 not found (message 94)

22:06:59 Server: Object 4:1740 not found (message 94)

22:07:07 Server: Object 3:1525 not found (message 70)

22:07:07 Server: Object 3:1526 not found (message 70)

22:07:07 Server: Object 3:1523 not found (message 94)

22:07:07 Server: Object 3:1524 not found (message 94)

22:07:11 Server: Object 4:1759 not found (message 70)

22:07:13 Server: Object 3:1530 not found (message 94)

22:07:13 Server: Object 3:1529 not found (message 94)

22:07:13 Server: Object 3:1532 not found (message 94)

22:07:13 Server: Object 3:1531 not found (message 94)

22:07:13 Server: Object 3:1534 not found (message 70)

22:07:13 Server: Object 3:1535 not found (message 94)

22:07:13 Server: Object 3:1537 not found (message 70)

22:07:13 Server: Object 3:1533 not found (message 94)

22:07:13 Server: Object 3:1536 not found (message 94)

22:07:17 Server: Object 4:1764 not found (message 94)

22:07:17 Server: Object 4:1768 not found (message 94)

22:07:17 Server: Object 4:1767 not found (message 70)

22:07:17 Server: Object 4:1765 not found (message 94)

22:07:17 Server: Object 4:1766 not found (message 94)

22:07:19 Server: Object 3:1543 not found (message 94)

22:07:19 Server: Object 3:1542 not found (message 94)

22:07:19 Server: Object 3:1545 not found (message 70)

22:07:19 Server: Object 3:1544 not found (message 94)

22:07:19 Server: Object 3:1546 not found (message 94)

22:07:19 Server: Object 3:1547 not found (message 94)

22:07:19 Server: Object 3:1549 not found (message 70)

22:07:19 Server: Object 3:1548 not found (message 94)

22:07:25 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,14,7],"Fullmoon:",true,"Date given by HiveExt.dll:",[2020,3,9,14,7]]

22:07:25 Server: Object 3:1553 not found (message 94)

22:07:25 Server: Object 3:1552 not found (message 70)

22:07:25 Server: Object 3:1551 not found (message 94)

22:07:25 Server: Object 3:1556 not found (message 94)

22:07:25 Server: Object 3:1554 not found (message 94)

22:07:25 Server: Object 3:1555 not found (message 94)

22:07:25 Server: Object 3:1559 not found (message 70)

22:07:25 Server: Object 3:1557 not found (message 94)

22:07:25 Server: Object 3:1558 not found (message 94)

22:07:25 Server: Object 3:1560 not found (message 94)

22:07:29 Server: Object 4:1788 not found (message 70)

22:07:29 Server: Object 4:1787 not found (message 94)

22:07:29 Server: Object 4:1786 not found (message 70)

22:07:29 Server: Object 4:1785 not found (message 70)

22:07:29 Server: Object 4:1784 not found (message 70)

22:07:29 Server: Object 4:1792 not found (message 70)

22:07:31 Server: Object 3:1566 not found (message 70)

22:07:31 Server: Object 3:1567 not found (message 94)

22:07:31 Server: Object 3:1568 not found (message 94)

22:07:31 Server: Object 3:1569 not found (message 94)

22:07:31 Server: Object 3:1570 not found (message 70)

22:07:31 Server: Object 3:1571 not found (message 94)

22:07:31 Server: Object 3:1572 not found (message 94)

22:07:31 Server: Object 3:1573 not found (message 94)

22:07:35 Server: Object 4:1797 not found (message 94)

22:07:35 Server: Object 4:1796 not found (message 94)

22:07:35 Server: Object 4:1799 not found (message 70)

22:07:35 Server: Object 4:1800 not found (message 94)

22:07:35 Server: Object 4:1803 not found (message 70)

22:07:35 Server: Object 4:1802 not found (message 70)

22:07:35 Server: Object 4:1798 not found (message 94)

22:07:35 Server: Object 4:1801 not found (message 70)

22:07:37 Server: Object 3:1578 not found (message 70)

22:07:37 Server: Object 3:1577 not found (message 70)

22:07:37 Server: Object 3:1579 not found (message 94)

22:07:37 Server: Object 3:1580 not found (message 94)

22:07:37 Server: Object 3:1581 not found (message 94)

22:07:37 Server: Object 3:1582 not found (message 94)

22:07:37 Server: Object 3:1583 not found (message 70)

22:07:37 Server: Object 3:1584 not found (message 94)

22:07:41 Server: Object 4:1806 not found (message 70)

22:07:41 Server: Object 4:1810 not found (message 94)

22:07:41 Server: Object 4:1809 not found (message 70)

22:07:41 Server: Object 4:1807 not found (message 94)

22:07:41 Server: Object 4:1808 not found (message 94)

22:07:42 "DZAI Monitor :: Server Uptime: 0:17:32. Active AI Groups: 6."

22:07:42 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."

22:07:42 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 5."

22:07:43 Server: Object 3:1588 not found (message 70)

22:07:43 Server: Object 3:1586 not found (message 94)

22:07:43 Server: Object 3:1587 not found (message 94)

22:07:43 Server: Object 3:1589 not found (message 94)

22:07:43 Server: Object 3:1590 not found (message 94)

22:07:43 Server: Object 3:1591 not found (message 94)

22:07:43 Server: Object 3:1594 not found (message 70)

22:07:43 Server: Object 3:1592 not found (message 70)

22:07:43 Server: Object 3:1593 not found (message 94)

22:07:43 Server: Object 3:1595 not found (message 94)

22:07:47 Server: Object 4:1817 not found (message 94)

22:07:47 Server: Object 4:1815 not found (message 94)

22:07:47 Server: Object 4:1816 not found (message 94)

22:07:49 Server: Object 3:1603 not found (message 94)

22:07:53 Server: Object 4:1820 not found (message 70)

22:07:53 Server: Object 4:1823 not found (message 94)

22:07:53 Server: Object 4:1821 not found (message 94)

22:07:53 Server: Object 4:1822 not found (message 94)

22:07:55 Server: Object 3:1609 not found (message 94)

22:07:55 Server: Object 3:1610 not found (message 94)

22:07:55 Server: Object 3:1614 not found (message 70)

22:07:55 Server: Object 3:1611 not found (message 94)

22:07:55 Server: Object 3:1612 not found (message 94)

22:07:55 Server: Object 3:1613 not found (message 94)

22:07:55 Server: Object 3:1617 not found (message 94)

22:07:55 Server: Object 3:1615 not found (message 94)

22:07:55 Server: Object 3:1616 not found (message 94)

22:07:59 Server: Object 4:1832 not found (message 70)

22:08:01 Server: Object 3:1621 not found (message 70)

22:08:01 Server: Object 3:1620 not found (message 94)

22:08:01 Server: Object 3:1622 not found (message 94)

22:08:01 Server: Object 3:1623 not found (message 94)

22:08:01 Server: Object 3:1627 not found (message 94)

22:08:01 Server: Object 3:1624 not found (message 70)

22:08:01 Server: Object 3:1625 not found (message 94)

22:08:01 Server: Object 3:1626 not found (message 94)

22:08:01 Server: Object 3:1628 not found (message 94)

22:08:05 Server: Object 4:1838 not found (message 94)

22:08:05 Server: Object 4:1836 not found (message 94)

22:08:05 Server: Object 4:1837 not found (message 94)

22:08:07 Server: Object 3:1632 not found (message 94)

22:08:07 Server: Object 3:1633 not found (message 94)

22:08:07 Server: Object 3:1634 not found (message 94)

22:08:07 Server: Object 3:1635 not found (message 70)

22:08:07 Server: Object 3:1636 not found (message 94)

22:08:07 Server: Object 3:1637 not found (message 94)

22:08:07 Server: Object 3:1638 not found (message 94)

22:08:07 Server: Object 3:1639 not found (message 94)

22:08:11 Server: Object 4:1850 not found (message 70)

22:08:13 Server: Object 3:1643 not found (message 94)

22:08:13 Server: Object 3:1642 not found (message 94)

22:08:13 Server: Object 3:1644 not found (message 94)

22:08:13 Server: Object 3:1645 not found (message 94)

22:08:17 Server: Object 4:1859 not found (message 94)

22:08:17 Server: Object 4:1857 not found (message 94)

22:08:17 Server: Object 4:1858 not found (message 94)

22:08:19 Server: Object 3:1649 not found (message 94)

22:08:19 Server: Object 3:1650 not found (message 94)

22:08:19 Server: Object 3:1653 not found (message 94)

22:08:25 Server: Object 3:1656 not found (message 94)

22:08:25 Server: Object 3:1657 not found (message 94)

22:08:29 Server: Object 4:1874 not found (message 94)

22:08:29 Server: Object 4:1873 not found (message 70)

22:08:29 Server: Object 4:1872 not found (message 94)

22:08:31 Server: Object 3:1669 not found (message 94)

22:08:31 Server: Object 3:1668 not found (message 94)

22:08:31 Server: Object 3:1670 not found (message 94)

22:08:31 Server: Object 3:1671 not found (message 94)

22:08:35 Server: Object 4:1880 not found (message 94)

22:08:35 Server: Object 4:1884 not found (message 70)

22:08:35 Server: Object 4:1883 not found (message 94)

22:08:35 Server: Object 4:1881 not found (message 94)

22:08:35 Server: Object 4:1882 not found (message 94)

22:08:37 Server: Object 3:1679 not found (message 94)

22:08:37 Server: Object 3:1678 not found (message 94)

22:08:37 Server: Object 3:1677 not found (message 94)

22:08:37 Server: Object 3:1682 not found (message 94)

22:08:37 Server: Object 3:1683 not found (message 94)

22:08:43 Server: Object 3:1688 not found (message 70)

22:08:43 Server: Object 3:1687 not found (message 94)

22:08:43 Server: Object 3:1689 not found (message 94)

22:08:43 Server: Object 3:1690 not found (message 94)

22:08:49 Server: Object 3:1697 not found (message 94)

22:08:53 Server: Object 4:1915 not found (message 94)

22:08:53 Server: Object 4:1916 not found (message 94)

22:10:08 "SERVER FPS: 26  PLAYERS: 2"

22:12:43 "DZAI Monitor :: Server Uptime: 0:22:33. Active AI Groups: 6."

22:12:43 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."

22:12:43 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 5."

22:15:01 "RUNNING EVENT: supply_drop on [2020,3,9,14,15]"

22:16:08 "SERVER FPS: 26  PLAYERS: 2"

22:17:43 "DZAI Monitor :: Server Uptime: 0:27:33. Active AI Groups: 6."

22:17:43 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."

22:17:43 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 5."

22:19:28 "P1ayer PID#4(LordBuffel) hit by AI with SA58_CCO_DZ/B_762x39_Ball <ammo left:27> from 207 meters in head_hit for 2.03548 damage"

22:21:33 "WAI: [Mission: Bandit Slaughter House]: Timed out at [15613.6,14011.9,0]"

22:22:08 "SERVER FPS: 28  PLAYERS: 2"

22:22:16 "CRASHSPAWNER: Spawning crash site (CrashSite_RU) at [16088.1,2950.73,0] with 8 items."

22:22:25 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,14,22],"Fullmoon:",true,"Date given by HiveExt.dll:",[2020,3,9,14,22]]

22:22:30 "P1ayer PID#4(LordBuffel) hit by AI with vil_Groza_GL/Vil_B_9x39_PAB9 <ammo left:11> from 145 meters in head_hit for 0.0319227 damage"

22:22:45 "DZAI Cleanup: Cleaned up 1 dead units and 0 destroyed vehicles."

22:22:45 "DZAI Monitor :: Server Uptime: 0:32:35. Active AI Groups: 6."

22:22:45 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."

22:22:45 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 5."

22:23:11 "P1ayer PID#4(LordBuffel) hit by AI with vil_Groza_GL/Vil_B_9x39_PAB9 <ammo left:4> from 145 meters in head_hit for 5.48397 damage"

22:23:12 "Player UID#76561198110439339 CID#217 PID#4(LordBuffel) as FR_R_DZ died at Suhrenfeld Array [160015]"

22:23:12 "DeathMessage: LordBuffel was killed by AI with vil_Groza_GL from 145m"

22:23:23 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - LordBuffel(76561198110439339)"]"

22:23:23 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198110439339","LordBuffel"]"

22:23:41 "<infiSTAR.de> ["CONNECTLOG","CONNECT - LordBuffel(76561198110439339)"]"

22:23:41 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:23:41 "infiSTAR.de ******ADMIN-LOGIN******: LordBuffel(76561198110439339)"

22:23:41 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:23:41 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:218) Status: LOGGING IN"

22:23:45 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:218) Status: LOGIN PUBLISHING, Location Wilderness [102012]"

22:23:45 "INFO - Player: LordBuffel(UID:76561198110439339/CID:218) Status: CLIENT LOADED & PLAYING"

22:23:51 "INFO: Cannot Sync Character LordBuffel near respawn_west [10153,-4593,157.103]. This is normal when relogging or changing clothes."

22:24:06 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16021.1,18948.2,0]]"

22:24:06 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 112038([11283.2,16662.4,0.000534058]) to 160015([16021.1,18948.2,0]) | Key: any"]"

22:24:06 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16021.1,18948.2,0]]"

22:24:06 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 160015   WorldSpace: [16021.1,18948.2,0]"

22:24:06 "<infiSTAR.de> ["AdminLog","0h 33min | Admin LordBuffel(76561198110439339) teleported to   GPS: 160015   WorldSpace: [16021.1,18948.2,0]"]"

22:24:40 "WAI: [Mission: Bandit Scout Patrol]: Timed out at [4271.51,13852.4,0]"

22:24:57 "P1ayer PID#3(Dance with the Wolves) hit by AI with vil_M110/B_762x51_noTracer <ammo left:18> from 294 meters in head_hit for 0.904201 damage"

22:25:01 "Special Forces Event Ended"

22:25:02 "RUNNING EVENT: event_init on [2020,3,9,14,25]"

22:25:02 "Abandoned Safe Event Starting..."

22:25:02 "There are no abandoned safes on the map"

22:25:21 "P1ayer PID#3(Dance with the Wolves) hit by AI with RH_hk417sacog/B_762x51_noTracer <ammo left:14> from 325 meters in head_hit for 0.0984786 damage"

22:25:35 "P1ayer PID#4(LordBuffel) hit by AI with AKS_74_U/B_545x39_Ball <ammo left:14> from 152 meters in head_hit for 3.10531 damage"

22:25:58 "P1ayer PID#3(Dance with the Wolves) hit by AI with RH_hk417sacog/B_762x51_noTracer <ammo left:0> from 352 meters in head_hit for 0.126953 damage"

22:25:59 "Player UID#76561198122429523 CID#205 PID#3(Dance with the Wolves) as USMC_Soldier_MG_DZ died at Suhrenfeld Array [160014]"

22:25:59 "DeathMessage: Dance with the Wolves was killed by AI with RH_hk417sacog from 352m"

22:26:11 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - Dance with the Wolves(76561198122429523)"]"

22:26:11 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198122429523","Dance with the Wolves"]"

22:26:11 Client: Remote object 3:13 not found

22:26:33 "<infiSTAR.de> ["CONNECTLOG","CONNECT - Dance with the Wolves(76561198122429523)"]"

22:26:34 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (Dance with the Wolves) REMOTE,"76561198122429523"]"

22:26:34 "infiSTAR.de ******ADMIN-LOGIN******: Dance with the Wolves(76561198122429523)"

22:26:34 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (Dance with the Wolves) REMOTE,"76561198122429523"]"

22:26:34 "INFO - Player: PID#3(Dance with the Wolves)(UID:76561198122429523/CID:219) Status: LOGGING IN"

22:26:36 "INFO - Player: PID#3(Dance with the Wolves)(UID:76561198122429523/CID:219) Status: LOGIN PUBLISHING, Location Seewen [061039]"

22:26:37 "INFO - Player: Dance with the Wolves(UID:76561198122429523/CID:219) Status: CLIENT LOADED & PLAYING"

22:26:54 "INFO: Cannot Sync Character Dance with the Wolves near respawn_west [10153,-4593,0.00144196]. This is normal when relogging or changing clothes."

22:26:59 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Dance with the Wolves TP infront of you ON"

22:26:59 "<infiSTAR.de> ["AdminLog","0h 36min | Dance with the Wolves TP infront of you ON"]"

22:27:06 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:1 (Dance with the Wolves) REMOTE,B 1-1-B:1 (Dance with the Wolves) REMOTE,[15945.7,19310.8,0]]"

22:27:06 "<infiSTAR.de> ["ADMINTP","Admin Dance with the Wolves(76561198122429523) Teleport: 182163([18268.4,4112.58,0.0030365]) to 159011([15945.7,19310.8,0]) | Key: any"]"

22:27:06 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:1 (Dance with the Wolves) REMOTE,B 1-1-B:1 (Dance with the Wolves) REMOTE,[15945.7,19310.8,0]]"

22:27:06 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Admin Dance with the Wolves(76561198122429523) teleported to   GPS: 159011   WorldSpace: [15945.7,19310.8,0]"

22:27:06 "<infiSTAR.de> ["AdminLog","0h 36min | Admin Dance with the Wolves(76561198122429523) teleported to   GPS: 159011   WorldSpace: [15945.7,19310.8,0]"]"

22:27:11 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Dance with the Wolves TP infront of you OFF"

22:27:11 "<infiSTAR.de> ["AdminLog","0h 36min | Dance with the Wolves TP infront of you OFF"]"

22:27:27 "WAI: [Mission: Hero Farmer]: Timed out at [11797.1,9666.98,0]"

22:27:45 "DZAI Monitor :: Server Uptime: 0:37:35. Active AI Groups: 6."

22:27:45 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 1 groups queued."

22:27:45 "DZAI Monitor :: Dynamic Spawns: 1. Random Spawns: 0. Air Patrols: 1. Land Patrols: 4."

22:27:58 Server: Object info 4:2012 not found during Changing Owner

22:27:58 Server: Object info 4:2011 not found during Changing Owner

22:28:02 "P1ayer PID#4(LordBuffel) hit by AI with L85A2_CCO_DZ/B_556x45_Ball <ammo left:25> from 33 meters in head_hit for 0.0368292 damage"

22:28:08 "P1ayer PID#4(LordBuffel) hit by AI with L85A2_CCO_DZ/B_556x45_Ball <ammo left:18> from 34 meters in head_hit for 0.042098 damage"

22:28:08 "SERVER FPS: 37  PLAYERS: 2"

22:28:09 "Player UID#76561198110439339 CID#218 PID#4(LordBuffel) as FR_R_DZ died at Suhrenfeld Array [160015]"

22:28:09 "DeathMessage: LordBuffel was killed by AI with L85A2_CCO_DZ from 34m"

22:28:21 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - LordBuffel(76561198110439339)"]"

22:28:21 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198110439339","LordBuffel"]"

22:28:30 "<infiSTAR.de> ["CONNECTLOG","CONNECT - LordBuffel(76561198110439339)"]"

22:28:30 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:28:30 "infiSTAR.de ******ADMIN-LOGIN******: LordBuffel(76561198110439339)"

22:28:30 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:28:30 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:220) Status: LOGGING IN"

22:28:31 "WAI: [Mission:[MainHero] Captured MV22]: Starting... [1709.89,11186.8,0]"

22:28:32 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:220) Status: LOGIN PUBLISHING, Location Seewen [060040]"

22:28:33 "INFO - Player: LordBuffel(UID:76561198110439339/CID:220) Status: CLIENT LOADED & PLAYING"

22:28:35 "WAI: [Mission: Hero President's in Town]: Timed out at [6218.76,15111.8,0]"

22:28:45 "DZAI Cleanup: Cleaned up 1 expired temporary blacklist areas."

22:29:20 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel G_o_d ON"

22:29:20 "<infiSTAR.de> ["AdminLog","0h 38min | LordBuffel G_o_d ON"]"

22:29:24 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16052.4,18963.9,0]]"

22:29:24 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 164049([16457.2,15490.9,1365.62]) to 160015([16052.4,18963.9,0]) | Key: any"]"

22:29:24 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16052.4,18963.9,0]]"

22:29:24 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 160015   WorldSpace: [16052.4,18963.9,0]"

22:29:24 "<infiSTAR.de> ["AdminLog","0h 38min | Admin LordBuffel(76561198110439339) teleported to   GPS: 160015   WorldSpace: [16052.4,18963.9,0]"]"

22:30:03 "RUNNING EVENT: crash_spawner on [2020,3,9,14,30]"

22:30:26 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel G_o_d OFF"

22:30:26 "<infiSTAR.de> ["AdminLog","0h 39min | LordBuffel G_o_d OFF"]"

22:31:22 "WAI: [Mission:[MainHero] Ural Attack]: Starting... [7897.96,7312.33,0]"

22:31:30 "P1ayer PID#4(LordBuffel) hit by AI with RH_hk417sacog/B_762x51_noTracer <ammo left:12> from 51 meters in head_hit for 0.282293 damage"

22:31:39 "P1ayer PID#4(LordBuffel) hit by AI with RH_hk417sacog/B_762x51_noTracer <ammo left:0> from 49 meters in head_hit for 5.58411 damage"

22:31:39 "Player UID#76561198110439339 CID#220 PID#4(LordBuffel) as FR_R_DZ died at Suhrenfeld Array [160017]"

22:31:39 "DeathMessage: LordBuffel was killed by AI with RH_hk417sacog from 49m"

22:31:48 Server: Object 3:1776 not found (message 94)

22:31:48 Server: Object 3:1775 not found (message 94)

22:31:48 Server: Object 3:1777 not found (message 94)

22:31:51 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - LordBuffel(76561198110439339)"]"

22:31:51 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198110439339","LordBuffel"]"

22:31:54 Server: Object 3:1782 not found (message 70)

22:31:54 Server: Object 3:1781 not found (message 94)

22:31:54 Server: Object 3:1784 not found (message 94)

22:31:58 "<infiSTAR.de> ["CONNECTLOG","CONNECT - LordBuffel(76561198110439339)"]"

22:31:58 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:31:58 "infiSTAR.de ******ADMIN-LOGIN******: LordBuffel(76561198110439339)"

22:31:58 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:31:58 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:221) Status: LOGGING IN"

22:32:00 Server: Object 3:1790 not found (message 94)

22:32:00 Server: Object 3:1791 not found (message 94)

22:32:00 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:221) Status: LOGIN PUBLISHING, Location Nordstern [096018]"

22:32:00 "INFO - Player: LordBuffel(UID:76561198110439339/CID:221) Status: CLIENT LOADED & PLAYING"

22:32:06 Server: Object 3:1796 not found (message 94)

22:32:06 Server: Object 3:1797 not found (message 94)

22:32:06 Strange convex component01 in rh_m14\rh_m14acog.p3d:geometry

22:32:06 Strange convex component07 in rh_m14\rh_m14acog.p3d:geometry

22:32:06 Strange convex component12 in rh_m14\rh_m14acog.p3d:geometry

22:32:07 "INFO: Cannot Sync Character LordBuffel near respawn_west [10153,-4592.22,167.245]. This is normal when relogging or changing clothes."

22:32:10 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel G_o_d ON"

22:32:10 "<infiSTAR.de> ["AdminLog","0h 41min | LordBuffel G_o_d ON"]"

22:32:12 Server: Object 3:1809 not found (message 70)

22:32:12 Server: Object 3:1808 not found (message 94)

22:32:12 Server: Object 3:1807 not found (message 94)

22:32:18 Server: Object 3:1813 not found (message 94)

22:32:18 Server: Object 3:1812 not found (message 94)

22:32:18 Server: Object 3:1814 not found (message 94)

22:32:18 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16096.4,18771.1,0]]"

22:32:18 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 136099([13616.8,10502.4,0.00121307]) to 160017([16096.4,18771.1,0]) | Key: any"]"

22:32:18 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16096.4,18771.1,0]]"

22:32:18 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 160017   WorldSpace: [16096.4,18771.1,0]"

22:32:18 "<infiSTAR.de> ["AdminLog","0h 41min | Admin LordBuffel(76561198110439339) teleported to   GPS: 160017   WorldSpace: [16096.4,18771.1,0]"]"

22:32:24 Server: Object 3:1821 not found (message 94)

22:32:24 Server: Object 3:1822 not found (message 94)

22:32:24 Strange convex component05 in vilas_wwp\vilska_m60e3.p3d:geometry

22:32:30 Server: Object 3:1835 not found (message 94)

22:32:47 "DZAI Cleanup: Cleaned up 2 dead units and 0 destroyed vehicles."

22:32:47 "DZAI Monitor :: Server Uptime: 0:42:37. Active AI Groups: 5."

22:32:47 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 1 groups queued."

22:32:47 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 4."

22:33:07 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @160017 - M2StaticMG, worldspace [0.099426,[16095.4,18752.2,7.10311]], CharId 0, objID 0, objUID 0, nearby ["Dance with the Wolves (76561198122429523)","LordBuffel (76561198110439339)"]"]"

22:33:07 "WAI: [Mission:[MainBandit] Scout Patrol]: Starting... [2766.71,6422.13,0]"

22:33:33 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel G_o_d OFF"

22:33:33 "<infiSTAR.de> ["AdminLog","0h 43min | LordBuffel G_o_d OFF"]"

22:34:09 "SERVER FPS: 32  PLAYERS: 2"

22:35:12 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @164021 - M2StaticMG, worldspace [0,[16423.1,18378.1,6.88736]], CharId 0, objID 0, objUID 0, nearby []"]"

22:35:37 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @166022 - M2StaticMG, worldspace [0,[16643.1,18207.4,15.5034]], CharId 0, objID 0, objUID 0, nearby []"]"

22:35:57 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @166022 - M2StaticMG, worldspace [0,[16614.7,18231.3,15.161]], CharId 0, objID 0, objUID 0, nearby []"]"

22:36:02 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @166022 - M2StaticMG, worldspace [0,[16621.3,18181.2,15.5161]], CharId 0, objID 0, objUID 0, nearby []"]"

22:36:28 "WAI: [Mission:[MainBandit] Patrol]: Starting... [4602.19,12298.9,-28.5848]"

22:36:36 Strange convex component01 in rh_m14\rh_sc2sp.p3d:geometry

22:36:36 Strange convex component07 in rh_m14\rh_sc2sp.p3d:geometry

22:36:36 Strange convex component08 in rh_m14\rh_sc2sp.p3d:geometry

22:36:36 Strange convex component12 in rh_m14\rh_sc2sp.p3d:geometry

22:36:48 "P1ayer PID#3(Dance with the Wolves) hit by AI with UH60M_EP1 from 191 meters in head_hit for 0.0278166 damage"

22:36:50 "Player UID#76561198122429523 CID#219 PID#3(Dance with the Wolves) as GUE_Soldier_2_DZ died at Suhrenfeld Array [160017]"

22:36:50 "DeathMessage: Dance with the Wolves was killed by AI with UH60M_EP1 from 140m"

22:37:02 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - Dance with the Wolves(76561198122429523)"]"

22:37:02 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198122429523","Dance with the Wolves"]"

22:37:02 Warning: Cleanup player - person 3:1901 not found

22:37:18 "<infiSTAR.de> ["CONNECTLOG","CONNECT - Dance with the Wolves(76561198122429523)"]"

22:37:19 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (Dance with the Wolves) REMOTE,"76561198122429523"]"

22:37:19 "infiSTAR.de ******ADMIN-LOGIN******: Dance with the Wolves(76561198122429523)"

22:37:19 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (Dance with the Wolves) REMOTE,"76561198122429523"]"

22:37:19 "INFO - Player: PID#3(Dance with the Wolves)(UID:76561198122429523/CID:222) Status: LOGGING IN"

22:37:22 "INFO - Player: PID#3(Dance with the Wolves)(UID:76561198122429523/CID:222) Status: LOGIN PUBLISHING, Location Wilderness [107010]"

22:37:22 "INFO - Player: Dance with the Wolves(UID:76561198122429523/CID:222) Status: CLIENT LOADED & PLAYING"

22:37:25 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,14,37],"Fullmoon:",true,"Date given by HiveExt.dll:",[2020,3,9,14,37]]

22:37:32 "INFO: Cannot Sync Character Dance with the Wolves near respawn_west [10153,-4593,0.00144196]. This is normal when relogging or changing clothes."

22:37:40 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Dance with the Wolves Moving to LordBuffel"

22:37:40 "<infiSTAR.de> ["AdminLog","0h 47min | Dance with the Wolves Moving to LordBuffel"]"

22:37:47 "DZAI Monitor :: Server Uptime: 0:47:37. Active AI Groups: 5."

22:37:47 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 1 groups queued."

22:37:47 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 1. Land Patrols: 4."

22:38:51 "<infiSTAR.de> ["VEHICLE_DESTROYED","Locked Vehicle destroyed @161018 - UH60M_EP1, worldspace [352.123,[16109.6,18649.2,39.4717]], CharId 0, objID , objUID , nearby ["LordBuffel (76561198110439339)","Dance with the Wolves (76561198122429523)"]"]"

22:39:11 Strange convex component01 in rh_m14\rh_m1stsp.p3d:geometry

22:39:11 Strange convex component07 in rh_m14\rh_m1stsp.p3d:geometry

22:39:11 Strange convex component08 in rh_m14\rh_m1stsp.p3d:geometry

22:39:11 Strange convex component12 in rh_m14\rh_m1stsp.p3d:geometry

22:39:29 trigger - unknown animation source revolved

22:39:35 Strange convex component01 in rh_m14\rh_m1staim.p3d:geometry

22:39:35 Strange convex component07 in rh_m14\rh_m1staim.p3d:geometry

22:39:35 Strange convex component12 in rh_m14\rh_m1staim.p3d:geometry

22:39:41 Server: Object 4:2320 not found (message 94)

22:40:04 "RUNNING EVENT: event_init on [2020,3,9,14,40]"

22:40:04 "Labyrinth Event Spawning At [5365.51,8016.92]"

22:40:05 Strange convex component01 in rh_m14\rh_m14eot.p3d:geometry

22:40:05 Strange convex component07 in rh_m14\rh_m14eot.p3d:geometry

22:40:05 Strange convex component12 in rh_m14\rh_m14eot.p3d:geometry

22:40:09 "SERVER FPS: 33  PLAYERS: 2"

22:40:32 Server: Object 3:1977 not found (message 94)

22:40:44 Strange convex component01 in rh_m14\rh_m1sshd.p3d:geometry

22:40:44 Strange convex component07 in rh_m14\rh_m1sshd.p3d:geometry

22:40:44 Strange convex component08 in rh_m14\rh_m1sshd.p3d:geometry

22:40:44 Strange convex component12 in rh_m14\rh_m1sshd.p3d:geometry

22:41:04 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel adminammo_recoil ON"

22:41:04 "<infiSTAR.de> ["AdminLog","0h 50min | LordBuffel adminammo_recoil ON"]"

22:41:05 Strange convex component01 in rh_m14\rh_m1steot.p3d:geometry

22:41:05 Strange convex component07 in rh_m14\rh_m1steot.p3d:geometry

22:41:05 Strange convex component12 in rh_m14\rh_m1steot.p3d:geometry

22:41:20 Server: Object 3:2000 not found (message 94)

22:41:20 Server: Object 3:2003 not found (message 94)

22:41:20 Server: Object 3:2001 not found (message 94)

22:41:20 Server: Object 3:2002 not found (message 94)

22:41:26 Server: Object 3:2007 not found (message 94)

22:41:26 Server: Object 3:2010 not found (message 94)

22:41:26 Server: Object 3:2008 not found (message 94)

22:41:26 Server: Object 3:2009 not found (message 94)

22:41:29 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @164021 - M2StaticMG, worldspace [0,[16481.1,18331.4,6.88736]], CharId 0, objID 0, objUID 0, nearby []"]"

22:41:29 "P1ayer PID#4(LordBuffel) hit by AI with RH_hk417sgl/B_762x51_noTracer <ammo left:18> from 289 meters in head_hit for 0 damage"

22:41:29 Strange convex component01 in rh_m14\rh_m14aim.p3d:geometry

22:41:29 Strange convex component07 in rh_m14\rh_m14aim.p3d:geometry

22:41:29 Strange convex component12 in rh_m14\rh_m14aim.p3d:geometry

22:41:44 Server: Object 3:2025 not found (message 94)

22:41:47 Server: Object 4:2448 not found (message 94)

22:41:50 Server: Object 3:2029 not found (message 94)

22:41:50 Server: Object 3:2030 not found (message 94)

22:41:56 Server: Object 3:2035 not found (message 94)

22:42:11 Strange convex component01 in rh_m14\rh_m14.p3d:geometry

22:42:11 Strange convex component07 in rh_m14\rh_m14.p3d:geometry

22:42:11 Strange convex component08 in rh_m14\rh_m14.p3d:geometry

22:42:11 Strange convex component12 in rh_m14\rh_m14.p3d:geometry

22:42:14 Server: Object 3:2050 not found (message 94)

22:42:17 String STR_TGW_VIL_AK74_GP25 not found

22:42:17 String STR_TGW_VIL_AK74_GP25 not found

22:42:20 Server: Object 3:2055 not found (message 94)

22:42:23 Server: Object 4:2478 not found (message 94)

22:42:26 Server: Object 3:2060 not found (message 94)

22:42:32 Server: Object 3:2067 not found (message 94)

22:42:35 Server: Object 4:2486 not found (message 70)

22:42:35 Server: Object 4:2487 not found (message 94)

22:42:35 Server: Object 4:2488 not found (message 94)

22:42:38 Server: Object 3:2071 not found (message 94)

22:42:38 Server: Object 3:2072 not found (message 94)

22:42:44 Server: Object 3:2077 not found (message 94)

22:42:50 "DZAI Cleanup: Cleaned up 5 dead units and 1 destroyed vehicles."

22:42:50 "DZAI Monitor :: Server Uptime: 0:52:40. Active AI Groups: 5."

22:42:50 "DZAI Monitor :: Static Spawns: 1. Respawn Queue: 1 groups queued."

22:42:50 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 0. Land Patrols: 4."

22:42:53 Server: Object 4:2502 not found (message 94)

22:42:53 Server: Object 4:2503 not found (message 94)

22:42:56 Server: Object 3:2087 not found (message 94)

22:43:04 O 1-2-K:3: moving in direct condition failed, dist 2.53862

22:43:05 Server: Object 4:2513 not found (message 94)

22:43:26 Server: Object 3:2111 not found (message 94)

22:43:26 Server: Object 3:2112 not found (message 94)

22:43:53 trigger - unknown animation source revolved

22:44:03 Server: Object 3:2139 not found (message 70)

22:44:03 Server: Object 3:2140 not found (message 70)

22:44:03 Server: Object 3:2138 not found (message 94)

22:44:04 "P1ayer PID#4(LordBuffel) hit by AI with USSR_cheytacM200/USSR_408ch_base <ammo left:3> from 321 meters in head_hit for 6.72107 damage"

22:44:04 "Player UID#76561198110439339 CID#221 PID#4(LordBuffel) as FR_R_DZ died at Suhrenfeld Array [161018]"

22:44:04 "DeathMessage: LordBuffel was killed by AI with USSR_cheytacM200 from 321m"

22:44:12 O 1-1-E:1: moving in direct condition failed, dist 2.89148

22:44:15 Server: Object 3:2207 not found (message 94)

22:44:15 Server: Object 3:2206 not found (message 70)

22:44:15 Server: Object 3:2209 not found (message 70)

22:44:15 Server: Object 3:2208 not found (message 70)

22:44:15 Server: Object 3:2205 not found (message 70)

22:44:16 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - LordBuffel(76561198110439339)"]"

22:44:16 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198110439339","LordBuffel"]"

22:44:21 Server: Object 3:2235 not found (message 70)

22:44:21 Server: Object 3:2260 not found (message 94)

22:44:21 Server: Object 3:2263 not found (message 70)

22:44:21 Server: Object 3:2259 not found (message 70)

22:44:21 Server: Object 3:2262 not found (message 70)

22:44:21 Server: Object 3:2261 not found (message 70)

22:44:21 Server: Object 3:2266 not found (message 94)

22:44:21 Server: Object 3:2265 not found (message 94)

22:44:21 Server: Object 3:2264 not found (message 94)

22:44:21 Server: Object 3:2277 not found (message 94)

22:44:21 Server: Object 3:2275 not found (message 70)

22:44:21 Server: Object 3:2273 not found (message 70)

22:44:21 Server: Object 3:2272 not found (message 70)

22:44:21 Server: Object 3:2267 not found (message 70)

22:44:21 Server: Object 3:2278 not found (message 70)

22:44:21 Server: Object 3:2279 not found (message 94)

22:44:21 Server: Object 3:2280 not found (message 70)

22:44:21 Server: Object 3:2281 not found (message 94)

22:44:21 Server: Object 3:2287 not found (message 94)

22:44:21 Server: Object 3:2284 not found (message 70)

22:44:21 Server: Object 3:2285 not found (message 94)

22:44:21 Server: Object 3:2295 not found (message 94)

22:44:21 Server: Object 3:2293 not found (message 94)

22:44:21 Server: Object 3:2291 not found (message 70)

22:44:21 Server: Object 3:2292 not found (message 70)

22:44:21 Server: Object 3:2290 not found (message 70)

22:44:21 Server: Object 3:2294 not found (message 70)

22:44:21 Server: Object 3:2289 not found (message 70)

22:44:21 Server: Object 3:2282 not found (message 94)

22:44:21 Server: Object 3:2283 not found (message 94)

22:44:21 Server: Object 3:2286 not found (message 70)

22:44:21 Server: Object 3:2288 not found (message 70)

22:44:21 Server: Object 3:2298 not found (message 94)

22:44:21 Server: Object 3:2299 not found (message 70)

22:44:21 Server: Object 3:2303 not found (message 70)

22:44:21 Server: Object 3:2302 not found (message 70)

22:44:21 Server: Object 3:2301 not found (message 70)

22:44:21 Server: Object 3:2300 not found (message 70)

22:44:21 Server: Object 3:2296 not found (message 70)

22:44:21 Server: Object 3:2304 not found (message 70)

22:44:21 Server: Object 3:2297 not found (message 70)

22:44:21 Server: Object 3:2307 not found (message 70)

22:44:21 Server: Object 3:2308 not found (message 94)

22:44:21 Server: Object 3:2309 not found (message 70)

22:44:21 Server: Object 3:2305 not found (message 70)

22:44:21 Server: Object 3:2306 not found (message 70)

22:44:33 "<infiSTAR.de> ["CONNECTLOG","CONNECT - LordBuffel(76561198110439339)"]"

22:44:33 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:44:33 "infiSTAR.de ******ADMIN-LOGIN******: LordBuffel(76561198110439339)"

22:44:33 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:44:34 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:223) Status: LOGGING IN"

22:44:35 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:223) Status: LOGIN PUBLISHING, Location Nordstern [104025]"

22:44:35 "INFO - Player: LordBuffel(UID:76561198110439339/CID:223) Status: CLIENT LOADED & PLAYING"

22:44:40 "INFO: Cannot Sync Character LordBuffel near respawn_west [10153,-4593,170.997]. This is normal when relogging or changing clothes."

22:44:42 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel G_o_d ON"

22:44:42 "<infiSTAR.de> ["AdminLog","0h 54min | LordBuffel G_o_d ON"]"

22:44:42 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel TP infront of you ON"

22:44:42 "<infiSTAR.de> ["AdminLog","0h 54min | LordBuffel TP infront of you ON"]"

22:44:46 "CRASHSPAWNER: Spawning crash site (CrashSite_EU) at [5584.98,12257.8,0] with 6 items."

22:44:46 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16165.3,18672.1,0]]"

22:44:46 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 104133([10400.2,7126.25,0.0013504]) to 161018([16165.3,18672.1,0]) | Key: any"]"

22:44:46 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16165.3,18672.1,0]]"

22:44:46 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 161018   WorldSpace: [16165.3,18672.1,0]"

22:44:46 "<infiSTAR.de> ["AdminLog","0h 54min | Admin LordBuffel(76561198110439339) teleported to   GPS: 161018   WorldSpace: [16165.3,18672.1,0]"]"

22:45:15 "P1ayer PID#3(Dance with the Wolves) hit by AI with L110A1_Holo_DZ/B_556x45_Ball <ammo left:197> from 81 meters in head_hit for 0.220641 damage"

22:45:17 trigger - unknown animation source revolved

22:45:46 Server: Object 4:2645 not found (message 94)

22:46:03 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel adminammo_recoil ON"

22:46:03 "<infiSTAR.de> ["AdminLog","0h 55min | LordBuffel adminammo_recoil ON"]"

22:46:04 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel TP infront of you OFF"

22:46:04 "<infiSTAR.de> ["AdminLog","0h 55min | LordBuffel TP infront of you OFF"]"

22:46:05 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel G_o_d OFF"

22:46:05 "<infiSTAR.de> ["AdminLog","0h 55min | LordBuffel G_o_d OFF"]"

22:46:09 "SERVER FPS: 31  PLAYERS: 2"

22:46:50 "DZAI Cleanup: Cleaned up 1 expired temporary blacklist areas."

22:47:50 "DZAI Monitor :: Server Uptime: 0:57:40. Active AI Groups: 5."

22:47:50 "DZAI Monitor :: Static Spawns: 1. Respawn Queue: 1 groups queued."

22:47:50 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 0. Land Patrols: 4."

22:48:05 "RUNNING EVENT: abandoned_vaults on [2020,3,9,14,48]"

22:48:05 "Abandoned Safe Event Starting..."

22:48:05 "There are no abandoned safes on the map"

22:48:35 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @165022 - M2StaticMG, worldspace [0,[16542.4,18224.2,15.512]], CharId 0, objID 0, objUID 0, nearby ["LordBuffel (76561198110439339)"]"]"

22:49:17 Server: Object 4:2784 not found (message 94)

22:49:29 "P1ayer PID#4(LordBuffel) hit by AI with FHQ_XM2010_NV_SD_DESERT/FHQ_rem_300Win_BallNT_SD <ammo left:1> from 73 meters in head_hit for 0.128741 damage"

22:49:31 "P1ayer PID#4(LordBuffel) hit by AI with FHQ_XM2010_NV_SD_DESERT/FHQ_rem_300Win_BallNT_SD <ammo left:1> from 72 meters in head_hit for 6.24611 damage"

22:49:32 "Player UID#76561198110439339 CID#223 PID#4(LordBuffel) as FR_R_DZ died at Suhrenfeld Array [165021]"

22:49:32 "DeathMessage: LordBuffel was killed by AI with FHQ_XM2010_NV_SD_DESERT from 72m"

22:49:44 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - LordBuffel(76561198110439339)"]"

22:49:44 "INFO: OnPlayerDisconnect exiting. Player is near respawn_west. This is normal after death. ["76561198110439339","LordBuffel"]"

22:49:53 "<infiSTAR.de> ["CONNECTLOG","CONNECT - LordBuffel(76561198110439339)"]"

22:49:53 "infiSTAR.de fnc_AdminFirstReq: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:49:53 "infiSTAR.de ******ADMIN-LOGIN******: LordBuffel(76561198110439339)"

22:49:53 "infiSTAR.de fnc_AdminReqProceed: [1234,B 1-1-C:1 (LordBuffel) REMOTE,"76561198110439339"]"

22:49:53 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:224) Status: LOGGING IN"

22:49:56 "INFO - Player: PID#4(LordBuffel)(UID:76561198110439339/CID:224) Status: LOGIN PUBLISHING, Location Huttwil [039087]"

22:49:56 "INFO - Player: LordBuffel(UID:76561198110439339/CID:224) Status: CLIENT LOADED & PLAYING"

22:50:01 "INFO: Cannot Sync Character LordBuffel near respawn_west [10153,-4593,90.6742]. This is normal when relogging or changing clothes."

22:50:05 "RUNNING EVENT: event_init on [2020,3,9,14,50]"

22:50:05 "Rubble Town Event Spawning At [6778.54,11804.8]"

22:50:08 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel TP infront of you ON"

22:50:08 "<infiSTAR.de> ["AdminLog","0h 59min | LordBuffel TP infront of you ON"]"

22:50:08 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel G_o_d ON"

22:50:08 "<infiSTAR.de> ["AdminLog","0h 59min | LordBuffel G_o_d ON"]"

22:50:14 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16526,18346.7,0]]"

22:50:14 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 100162([10061.8,4187.52,0.00146484]) to 165021([16526,18346.7,0]) | Key: any"]"

22:50:14 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16526,18346.7,0]]"

22:50:14 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 165021   WorldSpace: [16526,18346.7,0]"

22:50:14 "<infiSTAR.de> ["AdminLog","0h 59min | Admin LordBuffel(76561198110439339) teleported to   GPS: 165021   WorldSpace: [16526,18346.7,0]"]"

22:50:18 Server: Object 4:2871 not found (message 94)

22:50:18 Server: Object 4:2870 not found (message 94)

22:50:19 Server: Object 4:2884 not found (message 94)

22:51:00 "<infiSTAR.de> ["VEHICLE_DESTROYED","Vehicle destroyed @165022 - M2StaticMG, worldspace [0,[16517.7,18194.4,15.5162]], CharId 0, objID 0, objUID 0, nearby ["Dance with the Wolves (76561198122429523)","LordBuffel (76561198110439339)"]"]"

22:51:13 "P1ayer PID#3(Dance with the Wolves) hit by AI with M16A4_GL_FL_DZ/B_556x45_Ball <ammo left:28> from 57 meters in head_hit for 0.474966 damage"

22:51:57 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel adminammo_recoil ON"

22:51:57 "<infiSTAR.de> ["AdminLog","1h 01min | LordBuffel adminammo_recoil ON"]"

22:52:09 "SERVER FPS: 25  PLAYERS: 2"

22:52:12 Server: Object 4:2938 not found (message 94)

22:52:18 Server: Object 4:2986 not found (message 94)

22:52:18 Server: Object 4:2985 not found (message 70)

22:52:18 Server: Object 4:3001 not found (message 70)

22:52:18 Server: Object 4:2997 not found (message 94)

22:52:18 Server: Object 4:2998 not found (message 94)

22:52:18 Server: Object 4:2999 not found (message 94)

22:52:18 Server: Object 4:3000 not found (message 94)

22:52:19 Server: Object 4:3010 not found (message 70)

22:52:19 Server: Object 4:3008 not found (message 94)

22:52:19 Server: Object 4:3009 not found (message 94)

22:52:19 Server: Object 4:3011 not found (message 94)

22:52:19 Server: Object 4:3012 not found (message 94)

22:52:19 Server: Object 4:3013 not found (message 94)

22:52:25 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,14,52],"Fullmoon:",true,"Date given by HiveExt.dll:",[2020,3,9,14,52]]

22:52:54 "DZAI Cleanup: Cleaned up 2 dead units and 0 destroyed vehicles."

22:52:54 "DZAI Monitor :: Server Uptime: 1:2:44. Active AI Groups: 5."

22:52:54 "DZAI Monitor :: Static Spawns: 1. Respawn Queue: 1 groups queued."

22:52:54 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 0. Land Patrols: 4."

22:53:25 Server: Object 4:3086 not found (message 94)

22:53:25 Server: Object 4:3085 not found (message 94)

22:53:25 Server: Object 4:3092 not found (message 70)

22:53:25 Server: Object 4:3093 not found (message 94)

22:53:25 Server: Object 4:3091 not found (message 94)

22:53:25 Server: Object 4:3090 not found (message 70)

22:53:25 Server: Object 4:3098 not found (message 70)

22:53:25 Server: Object 4:3099 not found (message 94)

22:53:25 Server: Object 4:3097 not found (message 94)

22:53:25 Server: Object 4:3089 not found (message 94)

22:53:25 Server: Object 4:3095 not found (message 70)

22:53:25 Server: Object 4:3096 not found (message 94)

22:53:25 Server: Object 4:3094 not found (message 94)

22:53:25 Server: Object 4:3104 not found (message 70)

22:53:25 Server: Object 4:3105 not found (message 94)

22:53:25 Server: Object 4:3103 not found (message 94)

22:53:25 Server: Object 4:3111 not found (message 70)

22:53:25 Server: Object 4:3110 not found (message 94)

22:53:25 Server: Object 4:3102 not found (message 70)

22:53:25 Server: Object 4:3109 not found (message 70)

22:53:25 Server: Object 4:3108 not found (message 70)

22:53:25 Server: Object 4:3100 not found (message 94)

22:53:25 Server: Object 4:3101 not found (message 94)

22:53:25 Server: Object 4:3106 not found (message 70)

22:53:25 Server: Object 4:3107 not found (message 70)

22:53:25 Server: Object 4:3114 not found (message 70)

22:53:25 Server: Object 4:3115 not found (message 94)

22:53:25 Server: Object 4:3116 not found (message 70)

22:53:25 Server: Object 4:3120 not found (message 70)

22:53:25 Server: Object 4:3119 not found (message 70)

22:53:25 Server: Object 4:3117 not found (message 70)

22:53:30 Server: Object 4:3133 not found (message 94)

22:53:30 Server: Object 4:3134 not found (message 94)

22:53:30 Server: Object 4:3135 not found (message 94)

22:53:30 Server: Object 4:3136 not found (message 94)

22:53:30 Server: Object 4:3146 not found (message 94)

22:53:30 Server: Object 4:3147 not found (message 94)

22:53:30 Server: Object 4:3148 not found (message 94)

22:53:30 Server: Object 4:3149 not found (message 94)

22:53:30 Server: Object 4:3159 not found (message 94)

22:53:30 Server: Object 4:3158 not found (message 94)

22:53:30 Server: Object 4:3160 not found (message 94)

22:53:30 Server: Object 4:3161 not found (message 94)

22:53:30 Server: Object 4:3166 not found (message 94)

22:53:30 Server: Object 4:3165 not found (message 94)

22:53:30 Server: Object 4:3169 not found (message 94)

22:53:30 Server: Object 4:3168 not found (message 94)

22:53:36 Server: Object 4:3185 not found (message 70)

22:53:47 "WAI: [Mission: Bandit Captured MV22]: Timed out at [1709.89,11186.8,0]"

22:54:05 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   LordBuffel used Remove Nets"

22:54:05 "<infiSTAR.de> ["AdminLog","1h 03min | LordBuffel used Remove Nets"]"

22:54:53 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16534.9,17781.1,0]]"

22:54:53 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 168024([16803.7,18032.5,0.00135803]) to 165026([16534.9,17781.1,0]) | Key: any"]"

22:54:53 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16534.9,17781.1,0]]"

22:54:53 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 165026   WorldSpace: [16534.9,17781.1,0]"

22:54:53 "<infiSTAR.de> ["AdminLog","1h 04min | Admin LordBuffel(76561198110439339) teleported to   GPS: 165026   WorldSpace: [16534.9,17781.1,0]"]"

22:55:11 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16955.3,18101.8,0]]"

22:55:11 "<infiSTAR.de> ["ADMINTP","Admin LordBuffel(76561198110439339) Teleport: 165026([16534.9,17781.1,0.00160408]) to 169023([16955.3,18101.8,0]) | Key: any"]"

22:55:11 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:2 (LordBuffel) REMOTE,B 1-1-B:2 (LordBuffel) REMOTE,[16955.3,18101.8,0]]"

22:55:11 "infiSTAR.de PVAH_WriteLog: B 1-1-B:2 (LordBuffel) REMOTE   Admin LordBuffel(76561198110439339) teleported to   GPS: 169023   WorldSpace: [16955.3,18101.8,0]"

22:55:11 "<infiSTAR.de> ["AdminLog","1h 04min | Admin LordBuffel(76561198110439339) teleported to   GPS: 169023   WorldSpace: [16955.3,18101.8,0]"]"

22:55:42 Server: Object 4:3237 not found (message 70)

22:55:42 Server: Object 4:3236 not found (message 94)

22:55:42 Server: Object 4:3238 not found (message 94)

22:55:42 Server: Object 4:3239 not found (message 94)

22:55:42 Server: Object 4:3246 not found (message 70)

22:55:42 Server: Object 4:3245 not found (message 94)

22:55:42 Server: Object 4:3250 not found (message 94)

22:55:42 Server: Object 4:3247 not found (message 94)

22:55:42 Server: Object 4:3248 not found (message 94)

22:55:42 Server: Object 4:3249 not found (message 94)

22:55:42 Server: Object 4:3251 not found (message 94)

22:55:42 Server: Object 4:3257 not found (message 70)

22:55:42 Server: Object 4:3256 not found (message 94)

22:55:42 Server: Object 4:3261 not found (message 94)

22:55:42 Server: Object 4:3255 not found (message 94)

22:55:42 Server: Object 4:3258 not found (message 70)

22:55:42 Server: Object 4:3259 not found (message 94)

22:55:42 Server: Object 4:3260 not found (message 94)

22:55:42 Server: Object 4:3266 not found (message 94)

22:55:42 Server: Object 4:3265 not found (message 70)

22:55:48 Server: Object 4:3277 not found (message 94)

22:55:48 Server: Object 4:3278 not found (message 94)

22:55:48 Server: Object 4:3279 not found (message 94)

22:55:48 Server: Object 4:3280 not found (message 94)

22:55:48 Server: Object 4:3281 not found (message 94)

22:55:48 Server: Object 4:3282 not found (message 94)

22:55:48 Server: Object 4:3287 not found (message 94)

22:55:48 Server: Object 4:3286 not found (message 94)

22:55:48 Server: Object 4:3283 not found (message 94)

22:55:48 Server: Object 4:3284 not found (message 94)

22:55:48 Server: Object 4:3285 not found (message 94)

22:55:48 Server: Object 4:3290 not found (message 70)

22:55:48 Server: Object 4:3291 not found (message 70)

22:55:48 Server: Object 4:3288 not found (message 94)

22:55:48 Server: Object 4:3289 not found (message 94)

22:55:48 Server: Object 4:3294 not found (message 94)

22:55:48 Server: Object 4:3292 not found (message 94)

22:55:48 Server: Object 4:3293 not found (message 94)

22:55:48 Server: Object 4:3304 not found (message 70)

22:55:48 Server: Object 4:3303 not found (message 70)

22:56:00 Server: Object 4:3363 not found (message 70)

22:56:00 Server: Object 4:3362 not found (message 70)

22:56:00 Server: Object 4:3361 not found (message 94)

22:56:00 Server: Object 4:3381 not found (message 70)

22:56:00 Server: Object 4:3380 not found (message 94)

22:56:00 Server: Object 4:3379 not found (message 94)

22:56:52 "WAI: [Mission:[MainHero] Hero Outpost]: Starting... [5786.7,5659.5,0]"

22:57:02 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - LordBuffel(76561198110439339)"]"

22:57:02 "INFO - Player: LordBuffel(UID:76561198110439339/CID:224) Status: LOGGED OUT, Location Wilderness [173055]"

22:57:02 Client: Remote object 4:2830 not found

22:57:03 Warning: Cleanup player - person 4:2829 not found

22:57:54 "DZAI Monitor :: Server Uptime: 1:7:44. Active AI Groups: 6."

22:57:54 "DZAI Monitor :: Static Spawns: 1. Respawn Queue: 0 groups queued."

22:57:54 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 0. Land Patrols: 5."

22:58:05 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Dance with the Wolves G_o_d ON"

22:58:05 "<infiSTAR.de> ["AdminLog","1h 07min | Dance with the Wolves G_o_d ON"]"

22:58:08 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Dance with the Wolves TP infront of you ON"

22:58:08 "<infiSTAR.de> ["AdminLog","1h 07min | Dance with the Wolves TP infront of you ON"]"

22:58:09 "SERVER FPS: 37  PLAYERS: 1"

22:58:15 Server: Object 3:2412 not found (message 70)

22:58:15 trigger - unknown animation source revolved

22:59:19 "infiSTAR.de fnc_AdminFirstReq: [1,B 1-1-B:1 (Dance with the Wolves) REMOTE,B 1-1-B:1 (Dance with the Wolves) REMOTE,[18415.5,18178.8,0]]"

22:59:19 "<infiSTAR.de> ["ADMINTP","Admin Dance with the Wolves(76561198122429523) Teleport: 165022([16529.2,18274.1,0.00143814]) to 184023([18415.5,18178.8,0]) | Key: any"]"

22:59:19 "infiSTAR.de fnc_AdminReqProceed: [1,B 1-1-B:1 (Dance with the Wolves) REMOTE,B 1-1-B:1 (Dance with the Wolves) REMOTE,[18415.5,18178.8,0]]"

22:59:19 "infiSTAR.de PVAH_WriteLog: B 1-1-B:1 (Dance with the Wolves) REMOTE   Admin Dance with the Wolves(76561198122429523) teleported to   GPS: 184023   WorldSpace: [18415.5,18178.8,0]"

22:59:19 "<infiSTAR.de> ["AdminLog","1h 08min | Admin Dance with the Wolves(76561198122429523) teleported to   GPS: 184023   WorldSpace: [18415.5,18178.8,0]"]"

22:59:28 O 1-1-G:1: moving in direct condition failed, dist 2.90079

22:59:39 "<infiSTAR.de> ["CONNECTLOG","DISCONNECT - Dance with the Wolves(76561198122429523)"]"

22:59:39 "INFO - Player: Dance with the Wolves(UID:76561198122429523/CID:222) Status: LOGGED OUT, Location Wilderness [184023]"

22:59:39 Client: Remote object 3:1922 not found

22:59:39 Client: Remote object 3:10 not found

22:59:39 Client: Remote object 3:11 not found

22:59:42 Warning: Cleanup player - person 3:1921 not found

23:00:06 "RUNNING EVENT: crash_spawner on [2020,3,9,15,0]"

 

 

=====================================================================

== D:\TCAFiles\Users\fransd\21162\arma2oaserver.exe

== arma2oaserver.exe  -ip=185.251.226.142 -port=2302 "-config=SC\config.cfg" "-cfg=SC\basic.cfg" "-profiles=SC" -name=SC "-mod=@DayzOverwatch;@DayZ_Epoch;@DayZ_Epoch_Server;"

=====================================================================

Exe timestamp: 2020/02/12 04:10:12

Current time:  2020/03/09 23:05:41

 

its a lot I know if you find anything else that’s very wrong let me know :D

 

thanks a lot and if your willing to fix it all I can pay Did so mutch myself that I realy want this to be working 100%

Link to comment
Share on other sites

I'm using the blacklist and it seems to be working but I wanted more than one area blacklisted.

Here is what I have:

if (toLower worldName == "lingor") exitWith {wai_blacklist = [
    [[3870.12,1852.81],[0.00193405]],
    [[4691.11,1008.48],[0.00130463]];};

This is for the south airport on Lingor.

I just want to add another for north airport.

How do I add a second area.

Do I need to just make another block like that with new coords?

Thank you.

Edit: Getting this error in my server rpt:

16:00:41 Error in expression <er") select 1),(_this select 0),0,0.4,0,wai_blacklist];
} else {
_safepos = [get>
16:00:41   Error position: <wai_blacklist];
} else {
_safepos = [get>
16:00:41   Error Undefined variable in expression: wai_blacklist
16:00:41 File z\addons\dayz_server\WAI\compile\find_position.sqf, line 4
16:00:41 Error in expression <d = false;

 

Link to comment
Share on other sites

Quote

if (toLower worldName == "lingor") exitWith {wai_blacklist = [
    [[3870.12,1852.81],[0.00193405]],
    [[4691.11,1008.48],[0.00130463]];};

Align brackets and you'll find a missing "]"

You wrote this:

Quote

if (toLower worldName == "lingor") exitWith {
    wai_blacklist = [
        [[3870.12,1852.81],[0.00193405]],
        [[4691.11,1008.48],[0.00130463]
    ];
};

it must be

Quote

if (toLower worldName == "lingor") exitWith {
    wai_blacklist = [
        [[3870.12,1852.81],[0.00193405]],
        [[4691.11,1008.48],[0.00130463]]
    ];
};

 

Link to comment
Share on other sites

4 hours ago, Schalldampfer said:

Align brackets and you'll find a missing "]"

You wrote this:

it must be

 

Thank you Schalldampfer

I didn't realize I missed that.

 

Can I make an array to have multiple blacklist locations?

Or just repeat that block of code with different coords?

 

Thanks again.

Link to comment
Share on other sites

This is still not working.

if (toLower worldName == "lingor") exitWith {
    wai_blacklist = [
        [[3870.12,1852.81],[0.00193405]],
        [[4691.11,1008.48],[0.00130463]]
    ];
}; 

I think I'll just make custom locations.

Thanks for the help though.

Link to comment
Share on other sites

Thank you for the reply, really do appreciate it. I changed the setting to -1 but the ai still disappear about 2 min after shooting them. Also I noticed that the scenery does not despawn and will stay around for the server session. I had that also set for 1800 sec.

Link to comment
Share on other sites

  • 2 weeks later...

Next, I have made a script to let AIs to fire flare at night.

1. Create this file, dayz_server/WAI/compile/flare_fire.sqf

Spoiler

private ["_weapon","_magazine","_flareMuz","_flareMag","_mags","_interval","_grp","_unit","_pos","_invT"];

//settings
_weapon = "AK74_GL_DZ"; // Classname of weapon with GP25/M203
_flareMuz = "GP25Muzzle"; // Muzzle name of GP25/M203
_flareMag = ["FlareWhite_GP25","FlareGreen_GP25","FlareRed_GP25","FlareYellow_GP25"] call BIS_fnc_selectRandom; // Classname of flare magazine
_magazine = _weapon call find_suitable_ammunition; // Classname of normal magazine
_mags = 3; // No. of Normal magazines
_interval = 150; //Interval of firing in seconds

//_this = group;
_grp = _this;
_unit = leader _this;
if (wai_debug_mode) then {diag_log format["WAI: Preparing Flare of %1",name _unit];};

//add GP25 weapon & flare
_unit removeMagazines ((primaryWeapon _unit) call find_suitable_ammunition);
_unit removeWeapon (primaryWeapon _unit);
_unit addWeapon _weapon;
for "_i" from 1 to _mags do {
    _unit addMagazine _magazine;
};
_unit addMagazine _flareMag;

//check night and GP25
while {alive _unit} do {
    if (sunOrMoon != 1) then {
        //find target in range
        _targ = _unit;
        {
            if (alive _x && ((_grp knowsAbout _x) > 1.5 || !terrainIntersectASL [aimPos _unit,aimPos _x]) && (_unit distance _targ) < 1300) then {_targ = _x};
        } forEach playableUnits;
        //if found
        if (_targ != _unit) then {
            if (wai_debug_mode) then {diag_log format["WAI: Firing Flare on %1",name _targ];};
            //aim target pos
            _pos = getPos _targ;
            _invT = "HeliHEmpty" createVehicle _pos;
            _invT setPos [(_pos select 0)+(random 20),(_pos select 1)+(random 20),(_unit distance _targ)/10.0];
            sleep 0.5;
            _unit doTarget _invT;
            sleep 0.5;
            //fire
            _unit selectWeapon _flareMuz;
            _unit fire [_flareMuz, _flareMuz, _flareMag];
            deleteVehicle _invT;
            //refill
            _unit addMagazine _flareMag;
        };
    };

    //wait
    sleep _interval;
};

This script will add an AK74/GP25 to the leader of the group, which is the argument of this function.
He'll fire a flare round toward a player close to him at night.

2. add this in dayz_server/WAI/init.sqf

Quote

WAI_flare_fire = compile preprocessFileLineNumbers "\z\addons\dayz_server\WAI\compile\flare_fire.sqf";

3. Now activate this script in spawn_group.sqf, to make AI to fire flare rounds.
Add this code

Quote

_unitGroup spawn WAI_flare_fire;

just before 

Quote

_unitGroup // this variable is returned for the patrol mission and assassinate missions

in dayz_server/WAI/compile/spawn_group.sqf

To limit the AI levels and gear type, I put this code instead.

Quote

if ((_skill in ["extreme","hard","random"]) && (_gun in [0,1,"random"])) then {_unitGroup spawn WAI_flare_fire;};

 

Reference:https://forums.bohemia.net/forums/topic/106785-ai-shoots-flares-script-version-13/

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
×
×
  • Create New...