Jump to content
Sign in to follow this  
RizlaUK

Help Setting Correct Start Order of Init.sqf

Recommended Posts

Hi,

I've added quite a few scripts and stuff to my servers' init.sqf and find that if i put things below others in the order, they don't work. I'm not sure if this is due to an error in there or because certain things need to be executed before others. Can somebody with the required skills offer some guidance on the correct order or identify the cause of my pains please?

 

/*
@filename: init.sqf
Author:

    Quiksilver

Last modified:

    12/05/2014

Description:

    Things that may run on both server and client.
    Deprecated initialization file, still using until the below is correctly partitioned between server and client.
______________________________________________________*/

call compileFinal preprocessFileLineNumbers "Script_XENO_Taru_Pod\XENO_Taru_Pod_Mod.sqf";    //Taru Lift Mods

//-------------------------------------------------------------------CIVILIANS---------------------------------------------------------
call compile preprocessFileLineNumbers "scripts\Engima\Civilians\Common\Common.sqf";
call compile preprocessFileLineNumbers "scripts\Engima\Civilians\Common\Debug.sqf";

// The following constants may be used to tweak behaviour

ENGIMA_CIVILIANS_SIDE = civilian;      // If you for some reason want the units to spawn into another side.
ENGIMA_CIVILIANS_MINSKILL = 0.4;       // If you spawn something other than civilians, you may want to set another skill level of the spawned units.
ENGIMA_CIVILIANS_MAXSKILL = 0.6;       // If you spawn something other than civilians, you may want to set another skill level of the spawned units.

ENGIMA_CIVILIANS_MAXWAITINGTIME = 300; // Maximum standing still time in seconds
ENGIMA_CIVILIANS_RUNNINGCHANCE = 0.05; // Chance of running instead of walking

// Civilian personalities
ENGIMA_CIVILIANS_BEHAVIOURS = [
    ["CITIZEN", 100] // Default citizen with ordinary behaviour. Spawns in a house and walks to another house, and so on...
];

// Do not edit anything beneath this line!

ENGIMA_CIVILIANS_INSTANCE_NO = 0;

if (isServer) then {
    call compile preprocessFileLineNumbers "scripts\Engima\Civilians\Server\ServerFunctions.sqf";
    call compile preprocessFileLineNumbers "scripts\Engima\Civilians\ConfigAndStart.sqf";
};
//-------------------------------------------------------------------CIVILIANS---------------------------------------------------------
//-------------------------------------------------------------------VEHICLES----------------------------------------------------------
call compile preprocessFileLineNumbers "scripts\Engima\Traffic\Common\Common.sqf";
call compile preprocessFileLineNumbers "scripts\Engima\Traffic\Common\Debug.sqf";

ENGIMA_TRAFFIC_instanceIndex = -1;
ENGIMA_TRAFFIC_areaMarkerNames = [];
ENGIMA_TRAFFIC_roadSegments = [];
ENGIMA_TRAFFIC_edgeTopLeftRoads = [];
ENGIMA_TRAFFIC_edgeTopRightRoads = [];
ENGIMA_TRAFFIC_edgeBottomRightRoads = [];
ENGIMA_TRAFFIC_edgeBottomLeftRoads = [];
ENGIMA_TRAFFIC_edgeRoadsUseful = [];

if (isServer) then {
    call compile preprocessFileLineNumbers "scripts\Engima\Traffic\Server\Functions.sqf";
    call compile preprocessFileLineNumbers "scripts\Engima\Traffic\ConfigAndStart.sqf";
};
//-------------------------------------------------------------------VEHICLES----------------------------------------------------------

if (!isDedicated) then {        // Parachute Script
    waitUntil {!isNull player};
    player addeventhandler ["Respawn", {
    (_this select 0) addaction [("<t color="#ED2744"">") + ("PARACHUTE") + "</t>", "scripts\Paradrop.sqf", "", 7, false, true,"", "(((position _target) select 2) > 20) && (_target == (vehicle _target))];
    }];
    player addaction [("<t color="#ED2744"">") + ("PARACHUTE") + "</t>", "scripts\Paradrop.sqf", "", 7, false, true,"", "(((position _target) select 2) > 20) && (_target == (vehicle _target))];

};

["Initialize"] call BIS_fnc_dynamicGroups;

[true, [true, true, true, true],[0, true, true],[]] execVM "vip_lit\vip_lit_init.sqf";        //Imersion Tweaks
call compile preprocessFile "scripts\UI\HUD.sqf";                                           // Player HUD
[] spawn ICE_HUD;                                                                            // ^^^^^^^^^^
call compile preprocessFile "scripts\=BTC=_revive\=BTC=_revive_init.sqf";                    // revive
[] execVM "VCOMAI\init.sqf";                                                                //VCOM AI
[] execVM "VCOM_Driving\init.sqf";                                                            //VCOM Driving
call compile preprocessFile "scripts\Checkambush.sqf";                                        //Random IED Ambush
[] spawn {call compile preprocessFileLineNumbers "EPD\Ied_Init.sqf";};                         // Random IED generator

for [ {_i = 0}, {_i < count(paramsArray)}, {_i = _i + 1} ] do {
    call compile format
    [
        "PARAMS_%1 = %2",
        (configName ((missionConfigFile >> "Params") select _i)),
        (paramsArray select _i)
    ];
};

player setCustomAimCoef 0.35;    // Sets sway on respawn
player enablestamina false;

player addeventhandler ["respawn", {player setCustomAimCoef 0.35;}];
player addeventhandler ["respawn", {player enablestamina false;}];

[["O_Heli_Light_02_F","I_Heli_light_03_F","B_Heli_Light_01_armed_F","B_Plane_CAS_01_F","B_MBT_01_cannon_F","I_MBT_03_cannon_F","B_APC_Tracked_01_AA_F","B_MBT_01_TUSK_F","B_APC_Wheeled_01_cannon_F"],["76561198066718992","76561198081501441","76561198061937380","76561197993579543","76561197988820819","76561198246678548", "76561197981170743","76561197992196979","76561198047544954","76561197984422193","76561198013513784","76561198020317436","76561198111679627","76561198052964787","76561198073127655","76561198033874806","76561198240663398","76561198175831337","76561198069969131"],"Cannon Fodder Members Only!",true,false,true] execVM "scripts\restrictVehicles.sqf";

CHVD_allowNoGrass = TRUE;                             // Set 'false' if you want to disable "None" option for terrain (default: true)
CHVD_maxView = 12000;                                 // Set maximum view distance (default: 12000)
CHVD_maxObj = 12000;                                 // Set maximimum object view distance (default: 12000)

// ====================================================================================
// eulerfoiler - HC Round-Robin Load Balancing
// This automatically carries over units and data from Zeus or main spawn. DAC spawn works as well.
// This is currently in use. DAC HC is not in use, it should be turned off.

//execVM "HC\headlessclient\passToHCs.sqf";

 

Thanks a lot.

 

Rizla

Share this post


Link to post
Share on other sites

I think a start is to organize by locality. 

 

Determine what should run on server, what on clients, and what should run on server+clients.

 

You can do this in init.sqf or use initplayerlocal.sqf and initserver.sqf.

 

I can't see any obvious script errors.

 

 

Here's a template to use for partitioning (although I'd recomment initserver.sqf and initplayerlocal.sqf)

// compile params on server+clients
for [ {_i = 0}, {_i < count(paramsArray)}, {_i = _i + 1} ] do {
    call compile format
    [
        "PARAMS_%1 = %2",
        (configName ((missionConfigFile >> "Params") select _i)),
        (paramsArray select _i)
    ];
};
if (isServer) then {
       // put all the code to run on server here
 
     ["Initialize"] call BIS_fnc_dynamicGroups;     //https://community.bistudio.com/wiki/Dynamic_Groups
} else {
     // put all the code to run on clients here
 
     call compile preprocessFile "scripts\UI\HUD.sqf";                                           // Player HUD
     [] spawn ICE_HUD;                                                                            // ^^^^^^^^^^
     ["InitializePlayer", [player]] call BIS_fnc_dynamicGroups;      //https://community.bistudio.com/wiki/Dynamic_Groups
};
// put stuff that should run on both here
 
call compile preprocessFile "scripts\=BTC=_revive\=BTC=_revive_init.sqf";                        // revive (run server+clients)

It could take some time for you to properly organize it like that, but will be much easier for you to manage afterwards.

 

Also enable -showScriptErrors in the A3 launcher.

Share this post


Link to post
Share on other sites

I think a start is to organize by locality. 

 

Determine what should run on server, what on clients, and what should run on server+clients.

 

You can do this in init.sqf or use initplayerlocal.sqf and initserver.sqf.

 

OK, How do these look now? Is there anything else i can do to improve things?

 

Init.sqf

//===================================================================================== Groups Script =============================================================================================================================

["Initialize"] call BIS_fnc_dynamicGroups;

//===================================================================================== Automatic Doors Script ====================================================================================================================

_null = [] execVM "scripts\autodoors.sqf";    

//===================================================================================== Taru Lift Script ==========================================================================================================================

call compileFinal preprocessFileLineNumbers "Script_XENO_Taru_Pod\XENO_Taru_Pod_Mod.sqf";    

//===================================================================================== Revive Script =============================================================================================================================

call compile preprocessFile "scripts\=BTC=_revive\=BTC=_revive_init.sqf";                   

//===================================================================================== Restrictions & Safezone Script ============================================================================================================

_null = [] execVM "scripts\restrictions.sqf";                                     

[["O_Heli_Light_02_F","I_Heli_light_03_F","B_Heli_Light_01_armed_F","B_Plane_CAS_01_F","B_MBT_01_cannon_F","I_MBT_03_cannon_F","B_APC_Tracked_01_AA_F","B_MBT_01_TUSK_F","B_APC_Wheeled_01_cannon_F"],["76561198066718992","76561198081501441","76561198061937380","76561197993579543","76561197988820819","76561198246678548", "76561197981170743","76561197992196979","76561198047544954","76561197984422193","76561198013513784","76561198020317436","76561198111679627","76561198052964787","76561198073127655","76561198033874806","76561198240663398","76561198175831337","76561198069969131"],"Cannon Fodder Members Only!",true,false,true] execVM "scripts\restrictVehicles.sqf";

//===================================================================================== Voipers Script ============================================================================================================================

[true, [true, true, true, true],[0, true, true],[]] execVM "vip_lit\vip_lit_init.sqf";                                                               

//===================================================================================== Respawn Script ============================================================================================================================

player setCustomAimCoef 0.35;    // Sets sway on respawn

player enablestamina false;

player addeventhandler ["respawn", {player setCustomAimCoef 0.35;}];

player addeventhandler ["respawn", {player enablestamina false;}];

//===================================================================================== Billboard Image Randomiser ================================================================================================================

{

    switch (str selectRandom [1,2,3,4,5,6,7,8]) do {

        case "1": {_x setObjectTexture [0,"media\images\billboard1.paa"]};

        case "2": {_x setObjectTexture [0,"media\images\billboard2.paa"]};

        case "3": {_x setObjectTexture [0,"media\images\billboard3.paa"]};

        case "4": {_x setObjectTexture [0,"media\images\billboard4.paa"]};

        case "5": {_x setObjectTexture [0,"media\images\billboard5.paa"]};

        case "6": {_x setObjectTexture [0,"media\images\billboard6.paa"]};

        case "7": {_x setObjectTexture [0,"media\images\billboard7.paa"]};

        case "8": {_x setObjectTexture [0,"media\images\billboard8.paa"]};

    };

} forEach [bill_1, Bill_2, Bill_3, Bill_5];

//===================================================================================== Not used Scripts ==========================================================================================================================

//[] spawn {call compile preprocessFileLineNumbers "EPD\Ied_Init.sqf";};                     // Random IED generator

//call compile preprocessFile "scripts\Checkambush.sqf";                                    // Random IED Ambush (Not working)

//execVM "HC\headlessclient\passToHCs.sqf";                                                 // Not in use

//_null = [] execVM 'scripts\group_manager.sqf';  

 

initPlayerLocal.sqf

//===================================================================================== Dynamic Groups Script =====================================================================================================================

["InitializePlayer", [player]] call BIS_fnc_dynamicGroups;

enableSaving [FALSE,FALSE];

enableSentences FALSE;

player enableFatigue FALSE;

player setCustomAimCoef 0.35;

player enablestamina false;

player addeventhandler ["respawn", {

    player setCustomAimCoef 0.35;player enablestamina false;

}];

//===================================================================================== Parachute Script ==========================================================================================================================

if (!isDedicated) then {        

    waitUntil {!isNull player};

    player addeventhandler ["Respawn", {

    (_this select 0) addaction [("<t color="#ED2744"">") + ("PARACHUTE") + "</t>", "scripts\Paradrop.sqf", "", 7, false, true,"", "(((position _target) select 2) > 20) && (_target == (vehicle _target))];

    }];

    player addaction [("<t color="#ED2744"">") + ("PARACHUTE") + "</t>", "scripts\Paradrop.sqf", "", 7, false, true,"", "(((position _target) select 2) > 20) && (_target == (vehicle _target))];

};                                

//===================================================================================== Player HUD Script =========================================================================================================================

call compile preprocessFile "scripts\UI\HUD.sqf";

[] spawn ICE_HUD;                                                                    

//===================================================================================== Vehicle HUD Script ========================================================================================================================

_null = [] execvm "scripts\vehicle\crew\crew.sqf";                                                                           

//===================================================================================== Zeus Script ===============================================================================================================================

{_x addCuratorEditableObjects [[player],FALSE];} count allCurators;

//===================================================================================== Pilot Check Script ========================================================================================================================

_null = [] execVM "scripts\pilotCheck.sqf";                                     

//===================================================================================== Diary Script ==============================================================================================================================

_null = [] execVM "scripts\misc\diary.sqf";                                        

//===================================================================================== Virtual Arsenal Script ====================================================================================================================

_null = [] execVM "scripts\VAclient.sqf";                                        

//===================================================================================== Soldier Tracker Script ====================================================================================================================

_null = [] execVM "scripts\QS_icons.sqf";                                        

//===================================================================================== Earplugs Script ===========================================================================================================================

_null = [] execVM "scripts\NRE_earplugs.sqf";                                    

//===================================================================================== Fastrope Script ===========================================================================================================================

#include "scripts\vehicle\fastrope\SHK_Fastrope.sqf";     

//===================================================================================== Respawn Pilot Script ======================================================================================================================                        

[] call QS_fnc_respawnPilot;

//===================================================================================== Score Event Handler =======================================================================================================================

"addToScore" addPublicVariableEventHandler

{

    ((_this select 1) select 0) addScore ((_this select 1) select 1);

};

//===================================================================================== Artillery Computer Script =================================================================================================================

enableEngineArtillery false;

if (player isKindOf "B_support_Mort_f") then {

    enableEngineArtillery true;

};

//===================================================================================== Environment Script ========================================================================================================================

CHVD_allowNoGrass = TRUE;                             // Set 'false' if you want to disable "None" option for terrain (default: true)

CHVD_maxView = 12000;                                 // Set maximum view distance (default: 12000)

CHVD_maxObj = 12000;                                 // Set maximimum object view distance (default: 12000)

//===================================================================================== Not used Scripts ==========================================================================================================================

//_null = [] execVM "scripts\jump.sqf";                                            // jump action

//if (PARAMS_HeliRope != 0) then {call compile preprocessFileLineNumbers "scripts\vehicle\fastrope\zlt_fastrope.sqf";};

 

initServer.sqf

//===================================================================================== VCOM Script ===============================================================================================================================

[] execVM "VCOMAI\init.sqf";                                                               

[] execVM "VCOM_Driving\init.sqf";                                                                

//===================================================================================== Vehicles Script ===========================================================================================================================

call compile preprocessFileLineNumbers "scripts\Engima\Traffic\Common\Common.sqf";

call compile preprocessFileLineNumbers "scripts\Engima\Traffic\Common\Debug.sqf";

ENGIMA_TRAFFIC_instanceIndex = -1;

ENGIMA_TRAFFIC_areaMarkerNames = [];

ENGIMA_TRAFFIC_roadSegments = [];

ENGIMA_TRAFFIC_edgeTopLeftRoads = [];

ENGIMA_TRAFFIC_edgeTopRightRoads = [];

ENGIMA_TRAFFIC_edgeBottomRightRoads = [];

ENGIMA_TRAFFIC_edgeBottomLeftRoads = [];

ENGIMA_TRAFFIC_edgeRoadsUseful = [];

if (isServer) then {

    call compile preprocessFileLineNumbers "scripts\Engima\Traffic\Server\Functions.sqf";

    call compile preprocessFileLineNumbers "scripts\Engima\Traffic\ConfigAndStart.sqf";

};

//===================================================================================== Mission Parameters ========================================================================================================================

for [ {_i = 0}, {_i < count(paramsArray)}, {_i = _i + 1} ] do {

    call compile format

    [

        "PARAMS_%1 = %2",

        (configName ((missionConfigFile >> "Params") select _i)),

        (paramsArray select _i)

    ];

};

//===================================================================================== Wind Parameters ===========================================================================================================================

setWind [-1, -1, true];

//===================================================================================== Main Mission Script =======================================================================================================================

if (PARAMS_AO == 1) then { _null = [] execVM "mission\main\missionControl.sqf";};                        

//===================================================================================== Side Mission Script =======================================================================================================================

if (PARAMS_SideObjectives == 1) then { _null = [] execVM "mission\side\missionControl.sqf";};            

//===================================================================================== Enemy Occupation System Script ============================================================================================================    

_null = [] execVM "scripts\eos\OpenMe.sqf";                                                                

//===================================================================================== Airbase Defence Script ====================================================================================================================

_null = [] execVM "scripts\misc\airbaseDefense.sqf";                                                    

//===================================================================================== Clean up Script ===========================================================================================================================

_null = [] execVM "scripts\misc\cleanup.sqf";                                                            

//===================================================================================== Prepare Island Script =====================================================================================================================

_null = [] execVM "scripts\misc\islandConfig.sqf";                                                        

//===================================================================================== Zeus Unit Updater Script ==================================================================================================================

_null = [] execVM "scripts\misc\zeusupdater.sqf";                                                        

//===================================================================================== Easter Eggs Script ========================================================================================================================

if (PARAMS_EasterEggs == 1) then {_null = [] execVM "scripts\easterEggs.sqf";};    

                        

adminCurators = allCurators;

enableEnvironment FALSE;

BACO_ammoSuppAvail = true; publicVariable "BACO_ammoSuppAvail";

//===================================================================================== Not used Scripts ==========================================================================================================================

 

Regards

 

Rizla

Share this post


Link to post
Share on other sites

you call compile preprocess all your files, if you have an infinite loop in any of your scripts it will prevent the function from returning and halt init.sqf at that location. This is most likely the problem. Have you isolated the location? Luckily there is an extremely simple way to test this, just add hint's or systemChat's after every call that says "Script X has run/completed". Any spawn or execVM can be (mostly) safely ignored, although there are rare cases where they could have an effect.

 

Isolate the location down to the exact line that init.sqf stops and that's where your problem is.

Share this post


Link to post
Share on other sites

according to dreadedentitys post u could spawn scripts with infinite loops instead of calling em because they r running parallel then. I prefer to spawn scripts too if its not needed that they run in a specific order. another advantage of spawning is that the script is not running in a scheduled environment.

if u want to learn basics about armas init order u could look here

https://community.bistudio.com/wiki/Initialization_Order

Share this post


Link to post
Share on other sites

another advantage of spawning is that the script is not running in a scheduled environment.

Negative, the script is running in a scheduled environment. Also applies to execVM which is essentially the same as:

spawn compile preprocessfile "myScript.sqf"

Share this post


Link to post
Share on other sites

Can you give me the code example of what I need to do the hint trick please?

Share this post


Link to post
Share on other sites

do you have -showScriptErrors enabled in your A3 launch parameters?

Yes - I enabled it after your recommendation.

Share this post


Link to post
Share on other sites

Add some lines of code to the top and bottom of each file, to identify where the issue is. Would look like this:

 

systemChat '***** init.sqf ***** Start *****';
diag_log '***** init.sqf ***** Start *****';
 
/* code */
 
systemChat '***** init.sqf ***** End *****';
diag_log '***** init.sqf ***** End *****';

Share this post


Link to post
Share on other sites

Can you give me the code example of what I need to do the hint trick please?

hint "until here its running";

or

systemchat "it runs until here";

Share this post


Link to post
Share on other sites

Thanks for the help guys. I'm reading and trying as hard as i can, but i've not got much scripting knowledge. If i post the .rpt log could you give some advise on how i can attack the problems within please? I've deleted a lot of the ones that repeat endlessly.

.rpt

=====================================================================
== d:\localuser\g593392\arma3server.exe
== "d:\localuser\g593392\arma3server.exe" -ip=213.163.69.144 -port=2302 -config=server.cfg -world=empty -autoinit -profiles=arma3 -filepatching

Original output filename: Arma3Retail_Server
Exe timestamp: 2016/03/02 14:35:06
Current time:  2016/03/16 19:59:25

Type: Public
Build: Stable
Version: 1.56.134787

Allocator: d:\localuser\g593392\dll\tbb4malloc_bi.dll
=====================================================================

19:59:25 SteamAPI initialization failed. Steam features wont's be accessible!
19:59:25 Initializing stats manager.
19:59:25 Stats config disabled.
19:59:25 sessionID: 8415cd3e3841d097476783982291655bbb16743f
19:59:31 Unsupported language English in stringtable
19:59:31 Unsupported language English in stringtable
19:59:31 Unsupported language English in stringtable
19:59:31 Unsupported language English in stringtable
19:59:32 Updating base class ->Base, by a3\dubbing_radio_f\config.bin/CfgHQIdentities/PAPA_BEAR/
19:59:32 Updating base class ->Base, by a3\dubbing_radio_f\config.bin/CfgHQIdentities/AirBase/
19:59:32 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/
19:59:32 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/
19:59:32 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/
19:59:32 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/
19:59:32 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/
19:59:32 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/
19:59:32 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/
19:59:32 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/
19:59:32 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/
19:59:32 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/
19:59:32 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/
19:59:32 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/
19:59:32 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/
19:59:32 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/
19:59:32 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/
19:59:32 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/
19:59:32 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/
19:59:32 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/
19:59:32 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/
19:59:32 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/
19:59:32 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/
19:59:32 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/
19:59:32 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/
19:59:32 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/
19:59:32 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/
19:59:32 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/
19:59:32 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/
19:59:32 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/
19:59:32 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/
19:59:32 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/
19:59:32 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/
19:59:32 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/
19:59:32 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/
19:59:32 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/
19:59:32 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/
19:59:32 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/
19:59:32 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/
19:59:32 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/
19:59:32 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/
19:59:32 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/
19:59:32 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/
19:59:32 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/
19:59:32 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/
19:59:32 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/
19:59:32 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/
19:59:32 Updating base class RscControlsGroup->RscControlsGroupNoHScrollbars, by a3\ui_f\config.bin/RscDisplayMain/controls/ModIcons/
19:59:32 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/
19:59:32 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/
19:59:32 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/
19:59:32 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/
19:59:32 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/
19:59:32 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/
19:59:32 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/
19:59:32 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/
19:59:32 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/controls/ButtonCancel/
19:59:32 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
19:59:32 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/
19:59:32 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/
19:59:32 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/
19:59:32 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/
19:59:32 Cannot update non class from class a3\ui_f\config.bin/RscCallSupport/Items/
19:59:32 Cannot update non class from class a3\ui_f\config.bin/RscRadio/Items/
19:59:32 Updating base class ->SubmunitionCore, by a3\weapons_f\config.bin/CfgAmmo/SubmunitionBase/
19:59:32 Updating base class ->MissileCore, by a3\weapons_f\config.bin/CfgAmmo/MissileBase/
19:59:32 Updating base class ->RocketCore, by a3\weapons_f\config.bin/CfgAmmo/RocketBase/
19:59:32 Updating base class ->GrenadeCore, by a3\weapons_f\config.bin/CfgAmmo/GrenadeBase/
19:59:32 Updating base class ->Grenade, by a3\weapons_f\config.bin/CfgAmmo/GrenadeHand/
19:59:32 Updating base class ->manual, by a3\weapons_f\config.bin/cfgWeapons/LMG_RCWS/close/
19:59:32 Updating base class ->LMG_RCWS, by a3\weapons_f\config.bin/cfgWeapons/LMG_M200/
19:59:32 Updating base class MGun->LMG_RCWS, by a3\weapons_f\config.bin/cfgWeapons/HMG_127/
19:59:32 Updating base class ->MGun, by a3\weapons_f\config.bin/cfgWeapons/GMG_F/
19:59:32 Updating base class ->player, by a3\weapons_f\config.bin/cfgWeapons/autocannon_Base_F/close/
19:59:32 Updating base class ->close, by a3\weapons_f\config.bin/cfgWeapons/autocannon_Base_F/short/
19:59:32 Updating base class ->short, by a3\weapons_f\config.bin/cfgWeapons/autocannon_Base_F/medium/
19:59:32 Updating base class ->medium, by a3\weapons_f\config.bin/cfgWeapons/autocannon_Base_F/far/
19:59:32 Updating base class ->Default, by a3\weapons_f\config.bin/cfgWeapons/GrenadeLauncher/
19:59:32 Updating base class ->Rifle, by a3\weapons_f\config.bin/cfgWeapons/Rifle_Base_F/
19:59:32 Updating base class ->Rifle_Base_F, by a3\weapons_f\config.bin/cfgWeapons/Rifle_Long_Base_F/
19:59:32 Updating base class ->Pistol, by a3\weapons_f\config.bin/cfgWeapons/Pistol_Base_F/
19:59:32 Updating base class ->MineCore, by a3\weapons_f\explosives\config.bin/cfgAmmo/MineBase/
19:59:32 Updating base class ->BoundingMineCore, by a3\weapons_f\explosives\config.bin/cfgAmmo/BoundingMineBase/
19:59:32 Updating base class ->DirectionalBombCore, by a3\weapons_f\explosives\config.bin/cfgAmmo/DirectionalBombBase/
19:59:32 Updating base class ->PipeBombCore, by a3\weapons_f\explosives\config.bin/cfgAmmo/PipeBombBase/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/
19:59:32 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/
19:59:32 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/
19:59:32 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/
19:59:32 Updating base class ->SlotInfo, by a3\weapons_f_mark\config.bin/UnderBarrelSlot/
19:59:32 Updating base class Rifle_Base_F->Rifle_Long_Base_F, by a3\weapons_f_mark\longrangerifles\dmr_03\config.bin/CfgWeapons/DMR_03_base_F/
19:59:32 Updating base class Rifle_Base_F->Rifle_Long_Base_F, by a3\weapons_f_mark\longrangerifles\dmr_05\config.bin/CfgWeapons/DMR_05_base_F/
19:59:32 Updating base class Rifle_Base_F->Rifle_Long_Base_F, by a3\weapons_f_mark\longrangerifles\dmr_06\config.bin/cfgWeapons/DMR_06_base_F/
19:59:32 Updating base class Rifle_Base_F->Rifle_Long_Base_F, by a3\weapons_f_mark\machineguns\mmg_01\config.bin/CfgWeapons/MMG_01_base_F/
19:59:32 Updating base class Rifle_Base_F->Rifle_Long_Base_F, by a3\weapons_f_mark\machineguns\mmg_02\config.bin/CfgWeapons/MMG_02_base_F/
19:59:33 ragdollHitDmgLimit (0.000000) is lower than minimum (0.010000) and it was set to min.
19:59:33 Initializing Steam Manager
19:59:33 Steam Manager initialized.
19:59:33
19:59:33 ==== Loaded addons ====
19:59:33
19:59:33 dta\bin.pbo - unknown
19:59:33 dta\core.pbo - 84186
19:59:33 dta\languagecore_f.pbo - 93952
19:59:33 d:\localuser\g593392\mark\addons\anims_f_mark.pbo - 87643
19:59:33 d:\localuser\g593392\mark\addons\characters_f_mark.pbo - 92219
19:59:33 d:\localuser\g593392\mark\addons\data_f_mark.pbo - 91796
19:59:33 d:\localuser\g593392\mark\addons\dubbing_f_mark.pbo - 81923
19:59:33 d:\localuser\g593392\mark\addons\dubbing_f_mp_mark.pbo - 81923
19:59:33 d:\localuser\g593392\mark\addons\functions_f_mark.pbo - 92129
19:59:33 d:\localuser\g593392\mark\addons\functions_f_mp_mark.pbo - 92347
19:59:33 d:\localuser\g593392\mark\addons\languagemissions_f_mark.pbo - 93293
19:59:33 d:\localuser\g593392\mark\addons\languagemissions_f_mp_mark.pbo - 93293
19:59:33 d:\localuser\g593392\mark\addons\language_f_mark.pbo - 93293
19:59:33 d:\localuser\g593392\mark\addons\language_f_mp_mark.pbo - 93293
19:59:33 d:\localuser\g593392\mark\addons\missions_f_mark.pbo - 92020
19:59:33 d:\localuser\g593392\mark\addons\missions_f_mark_data.pbo - 88838
19:59:33 d:\localuser\g593392\mark\addons\missions_f_mark_video.pbo - 81429
19:59:33 d:\localuser\g593392\mark\addons\missions_f_mp_mark.pbo - 91962
19:59:33 d:\localuser\g593392\mark\addons\missions_f_mp_mark_data.pbo - 90131
19:59:33 d:\localuser\g593392\mark\addons\modules_f_mark.pbo - 91796
19:59:33 d:\localuser\g593392\mark\addons\modules_f_mp_mark.pbo - 92210
19:59:33 d:\localuser\g593392\mark\addons\music_f_mark.pbo - 81958
19:59:33 d:\localuser\g593392\mark\addons\music_f_mark_music.pbo - 81930
19:59:33 d:\localuser\g593392\mark\addons\sounds_f_mark.pbo - 93397
19:59:33 d:\localuser\g593392\mark\addons\static_f_mark.pbo - 92219
19:59:33 d:\localuser\g593392\mark\addons\structures_f_mark.pbo - 92417
19:59:33 d:\localuser\g593392\mark\addons\supplies_f_mark.pbo - 91796
19:59:33 d:\localuser\g593392\mark\addons\ui_f_mark.pbo - 84397
19:59:33 d:\localuser\g593392\mark\addons\ui_f_mp_mark.pbo - 92052
19:59:33 d:\localuser\g593392\mark\addons\weapons_f_mark.pbo - 92549
19:59:33 d:\localuser\g593392\heli\addons\air_f_heli.pbo - 93382
19:59:33 d:\localuser\g593392\heli\addons\anims_f_heli.pbo - 92014
19:59:33 d:\localuser\g593392\heli\addons\boat_f_heli.pbo - 91796
19:59:33 d:\localuser\g593392\heli\addons\cargoposes_f_heli.pbo - 91484
19:59:33 d:\localuser\g593392\heli\addons\data_f_heli.pbo - 91796
19:59:33 d:\localuser\g593392\heli\addons\dubbing_f_heli.pbo - 75138
19:59:33 d:\localuser\g593392\heli\addons\functions_f_heli.pbo - 91673
19:59:33 d:\localuser\g593392\heli\addons\languagemissions_f_heli.pbo - 93293
19:59:33 d:\localuser\g593392\heli\addons\language_f_heli.pbo - 93293
19:59:33 d:\localuser\g593392\heli\addons\missions_f_heli.pbo - 91795
19:59:33 d:\localuser\g593392\heli\addons\missions_f_heli_data.pbo - 75977
19:59:33 d:\localuser\g593392\heli\addons\missions_f_heli_video.pbo - 75065
19:59:33 d:\localuser\g593392\heli\addons\modules_f_heli.pbo - 91795
19:59:33 d:\localuser\g593392\heli\addons\music_f_heli.pbo - 87643
19:59:33 d:\localuser\g593392\heli\addons\music_f_heli_music.pbo - 87643
19:59:33 d:\localuser\g593392\heli\addons\soft_f_heli.pbo - 91798
19:59:33 d:\localuser\g593392\heli\addons\sounds_f_heli.pbo - 79398
19:59:33 d:\localuser\g593392\heli\addons\structures_f_heli.pbo - 92499
19:59:33 d:\localuser\g593392\heli\addons\supplies_f_heli.pbo - 92499
19:59:33 d:\localuser\g593392\heli\addons\ui_f_heli.pbo - 76986
19:59:33 d:\localuser\g593392\kart\addons\anims_f_kart.pbo - 80475
19:59:33 d:\localuser\g593392\kart\addons\characters_f_kart.pbo - 92295
19:59:33 d:\localuser\g593392\kart\addons\data_f_kart.pbo - 91796
19:59:33 d:\localuser\g593392\kart\addons\languagemissions_f_kart.pbo - 93242
19:59:33 d:\localuser\g593392\kart\addons\language_f_kart.pbo - 93293
19:59:33 d:\localuser\g593392\kart\addons\missions_f_kart.pbo - 89758
19:59:33 d:\localuser\g593392\kart\addons\missions_f_kart_data.pbo - 75687
19:59:33 d:\localuser\g593392\kart\addons\modules_f_kart.pbo - 92406
19:59:33 d:\localuser\g593392\kart\addons\modules_f_kart_data.pbo - 91796
19:59:33 d:\localuser\g593392\kart\addons\soft_f_kart.pbo - 92219
19:59:33 d:\localuser\g593392\kart\addons\sounds_f_kart.pbo - 79398
19:59:33 d:\localuser\g593392\kart\addons\structures_f_kart.pbo - 92417
19:59:33 d:\localuser\g593392\kart\addons\ui_f_kart.pbo - 73106
19:59:33 d:\localuser\g593392\kart\addons\weapons_f_kart.pbo - 92332
19:59:33 d:\localuser\g593392\curator\addons\data_f_curator.pbo - 92825
19:59:33 d:\localuser\g593392\curator\addons\functions_f_curator.pbo - 92869
19:59:33 d:\localuser\g593392\curator\addons\language_f_curator.pbo - 93293
19:59:33 d:\localuser\g593392\curator\addons\missions_f_curator.pbo - 91795
19:59:33 d:\localuser\g593392\curator\addons\modules_f_curator.pbo - 92935
19:59:33 d:\localuser\g593392\curator\addons\ui_f_curator.pbo - 90981
19:59:33 addons\3den.pbo - 93478
19:59:33 addons\3den_language.pbo - 93293
19:59:33 addons\a3.pbo - unknown
19:59:33 addons\air_f.pbo - 92215
19:59:33 addons\air_f_beta.pbo - 92216
19:59:33 addons\air_f_epb.pbo - 92217
19:59:33 addons\air_f_epc.pbo - 92217
19:59:33 addons\air_f_gamma.pbo - 92217
19:59:33 addons\animals_f.pbo - 93217
19:59:33 addons\animals_f_beta.pbo - 91796
19:59:33 addons\anims_f.pbo - 92711
19:59:33 addons\anims_f_bootcamp.pbo - 88948
19:59:33 addons\anims_f_data.pbo - 92643
19:59:33 addons\anims_f_epa.pbo - 89360
19:59:33 addons\anims_f_epc.pbo - 79126
19:59:33 addons\anims_f_exp_a.pbo - 92435
19:59:33 addons\armor_f.pbo - 91796
19:59:33 addons\armor_f_beta.pbo - 92295
19:59:33 addons\armor_f_epb.pbo - 92218
19:59:33 addons\armor_f_epc.pbo - 91793
19:59:33 addons\armor_f_gamma.pbo - 92218
19:59:33 addons\baseconfig_f.pbo - 73106
19:59:33 addons\boat_f.pbo - 92387
19:59:33 addons\boat_f_beta.pbo - 92219
19:59:33 addons\boat_f_epc.pbo - 92219
19:59:33 addons\boat_f_gamma.pbo - 92649
19:59:33 addons\cargoposes_f.pbo - 93278
19:59:33 addons\characters_f.pbo - 92499
19:59:33 addons\characters_f_beta.pbo - 91796
19:59:33 addons\characters_f_bootcamp.pbo - 91796
19:59:33 addons\characters_f_epa.pbo - 91796
19:59:33 addons\characters_f_epb.pbo - 91796
19:59:33 addons\characters_f_epc.pbo - 91796
19:59:33 addons\characters_f_gamma.pbo - 91796
19:59:33 addons\data_f.pbo - 92794
19:59:33 addons\data_f_bootcamp.pbo - 91796
19:59:33 addons\data_f_exp_a.pbo - 92638
19:59:33 addons\data_f_exp_b.pbo - 92546
19:59:33 addons\drones_f.pbo - 92219
19:59:33 addons\dubbing_f.pbo - 73106
19:59:33 addons\dubbing_f_beta.pbo - 73106
19:59:33 addons\dubbing_f_bootcamp.pbo - 87093
19:59:33 addons\dubbing_f_epa.pbo - 73106
19:59:33 addons\dubbing_f_epb.pbo - 76110
19:59:33 addons\dubbing_f_epc.pbo - 87001
19:59:33 addons\dubbing_f_gamma.pbo - 73106
19:59:33 addons\dubbing_radio_f.pbo - 89312
19:59:33 addons\dubbing_radio_f_data_eng.pbo - 92967
19:59:33 addons\dubbing_radio_f_data_engb.pbo - 89130
19:59:33 addons\dubbing_radio_f_data_gre.pbo - 89130
19:59:33 addons\dubbing_radio_f_data_per.pbo - 89130
19:59:33 addons\dubbing_radio_f_data_vr.pbo - 89130
19:59:33 addons\editor_f.pbo - 82563
19:59:33 addons\functions_f.pbo - 93806
19:59:33 addons\functions_f_bootcamp.pbo - 92936
19:59:33 addons\functions_f_epa.pbo - 91671
19:59:33 addons\functions_f_epc.pbo - 91673
19:59:33 addons\functions_f_exp_a.pbo - 92211
19:59:33 addons\languagemissions_f.pbo - 93293
19:59:33 addons\languagemissions_f_beta.pbo - 93293
19:59:33 addons\languagemissions_f_bootcamp.pbo - 93293
19:59:33 addons\languagemissions_f_epa.pbo - 93293
19:59:33 addons\languagemissions_f_epb.pbo - 93293
19:59:33 addons\languagemissions_f_epc.pbo - 93293
19:59:33 addons\languagemissions_f_exp_a.pbo - 93293
19:59:33 addons\languagemissions_f_gamma.pbo - 93293
19:59:33 addons\language_f.pbo - 93293
19:59:33 addons\language_f_beta.pbo - 93293
19:59:33 addons\language_f_bootcamp.pbo - 93293
19:59:33 addons\language_f_epa.pbo - 93293
19:59:33 addons\language_f_epb.pbo - 93293
19:59:33 addons\language_f_epc.pbo - 93293
19:59:33 addons\language_f_exp_a.pbo - 93293
19:59:33 addons\language_f_exp_b.pbo - 93293
19:59:33 addons\language_f_gamma.pbo - 93293
19:59:33 addons\map_altis.pbo - 92834
19:59:33 addons\map_altis_data.pbo - 92834
19:59:33 addons\map_altis_data_layers.pbo - 92834
19:59:33 addons\map_altis_data_layers_00_00.pbo - 92834
19:59:33 addons\map_altis_data_layers_00_01.pbo - 92834
19:59:33 addons\map_altis_data_layers_01_00.pbo - 92834
19:59:33 addons\map_altis_data_layers_01_01.pbo - 92834
19:59:33 addons\map_altis_scenes_f.pbo - 73106
19:59:33 addons\map_data.pbo - 91860
19:59:33 addons\map_stratis.pbo - 91796
19:59:33 addons\map_stratis_data.pbo - 90788
19:59:33 addons\map_stratis_data_layers.pbo - 90788
19:59:33 addons\map_stratis_scenes_f.pbo - 73106
19:59:33 addons\map_vr.pbo - 91796
19:59:33 addons\map_vr_scenes_f.pbo - 90788
19:59:33 addons\misc_f.pbo - 92499
19:59:33 addons\missions_f.pbo - 92743
19:59:33 addons\missions_f_beta.pbo - 92020
19:59:33 addons\missions_f_beta_data.pbo - 85005
19:59:33 addons\missions_f_beta_video.pbo - 73106
19:59:33 addons\missions_f_bootcamp.pbo - 91921
19:59:33 addons\missions_f_bootcamp_data.pbo - 72362
19:59:33 addons\missions_f_bootcamp_video.pbo - 75065
19:59:33 addons\missions_f_data.pbo - 92728
19:59:33 addons\missions_f_epa.pbo - 92525
19:59:33 addons\missions_f_epa_data.pbo - 73106
19:59:33 addons\missions_f_epa_video.pbo - 73106
19:59:33 addons\missions_f_epb.pbo - 92744
19:59:33 addons\missions_f_epb_data.pbo - 92728
19:59:33 addons\missions_f_epb_video.pbo - 73106
19:59:33 addons\missions_f_epc.pbo - 92211
19:59:33 addons\missions_f_epc_data.pbo - 84724
19:59:33 addons\missions_f_epc_video.pbo - 84725
19:59:33 addons\missions_f_exp_a.pbo - 91740
19:59:33 addons\missions_f_exp_a_data.pbo - 90131
19:59:33 addons\missions_f_gamma.pbo - 92020
19:59:33 addons\missions_f_gamma_data.pbo - 86243
19:59:33 addons\missions_f_gamma_video.pbo - 73106
19:59:33 addons\missions_f_video.pbo - 73106
19:59:33 addons\modules_f.pbo - 93384
19:59:33 addons\modules_f_beta.pbo - 92744
19:59:33 addons\modules_f_beta_data.pbo - 92729
19:59:33 addons\modules_f_bootcamp.pbo - 91795
19:59:33 addons\modules_f_data.pbo - 91796
19:59:33 addons\modules_f_epb.pbo - 91796
19:59:33 addons\modules_f_exp_a.pbo - 88829
19:59:33 addons\music_f.pbo - 73106
19:59:33 addons\music_f_bootcamp.pbo - 73106
19:59:33 addons\music_f_bootcamp_music.pbo - 73106
19:59:33 addons\music_f_epa.pbo - 73106
19:59:33 addons\music_f_epa_music.pbo - 73106
19:59:33 addons\music_f_epb.pbo - 73106
19:59:33 addons\music_f_epb_music.pbo - 73106
19:59:33 addons\music_f_epc.pbo - 87643
19:59:33 addons\music_f_epc_music.pbo - 73106
19:59:33 addons\music_f_music.pbo - 73106
19:59:33 addons\plants_f.pbo - 92798
19:59:33 addons\props_f_exp_a.pbo - 92219
19:59:33 addons\roads_f.pbo - 92417
19:59:33 addons\rocks_f.pbo - 91643
19:59:33 addons\signs_f.pbo - 92360
19:59:33 addons\soft_f.pbo - 92417
19:59:33 addons\soft_f_beta.pbo - 92219
19:59:33 addons\soft_f_bootcamp.pbo - 91798
19:59:33 addons\soft_f_epc.pbo - 92219
19:59:33 addons\soft_f_gamma.pbo - 92417
19:59:33 addons\sounds_f.pbo - 92963
19:59:33 addons\sounds_f_arsenal.pbo - 92964
19:59:33 addons\sounds_f_bootcamp.pbo - 91796
19:59:33 addons\sounds_f_characters.pbo - 90106
19:59:33 addons\sounds_f_environment.pbo - 88851
19:59:33 addons\sounds_f_epb.pbo - 88761
19:59:33 addons\sounds_f_epc.pbo - 86933
19:59:33 addons\sounds_f_exp_a.pbo - 88829
19:59:33 addons\sounds_f_sfx.pbo - 88881
19:59:33 addons\sounds_f_vehicles.pbo - 92131
19:59:33 addons\sounds_f_weapons.pbo - 84865
19:59:33 addons\static_f.pbo - 92794
19:59:33 addons\static_f_beta.pbo - 91798
19:59:33 addons\static_f_gamma.pbo - 91798
19:59:33 addons\structures_f.pbo - 92711
19:59:33 addons\structures_f_bootcamp.pbo - 92499
19:59:33 addons\structures_f_data.pbo - 91796
19:59:33 addons\structures_f_epa.pbo - 92499
19:59:33 addons\structures_f_epb.pbo - 92499
19:59:33 addons\structures_f_epc.pbo - 92417
19:59:33 addons\structures_f_exp_a.pbo - 91796
19:59:33 addons\structures_f_households.pbo - 92499
19:59:33 addons\structures_f_ind.pbo - 92499
19:59:33 addons\structures_f_mil.pbo - 93795
19:59:33 addons\structures_f_wrecks.pbo - 92360
19:59:33 addons\uifonts_f.pbo - 93100
19:59:33 addons\uifonts_f_data.pbo - 93149
19:59:33 addons\ui_f.pbo - 93138
19:59:33 addons\ui_f_bootcamp.pbo - 76325
19:59:33 addons\ui_f_data.pbo - 93060
19:59:33 addons\ui_f_exp_a.pbo - 92483
19:59:33 addons\weapons_f.pbo - 92834
19:59:33 addons\weapons_f_beta.pbo - 92208
19:59:33 addons\weapons_f_bootcamp.pbo - 91796
19:59:33 addons\weapons_f_epa.pbo - 91798
19:59:33 addons\weapons_f_epb.pbo - 91798
19:59:33 addons\weapons_f_epc.pbo - 91798
19:59:33 addons\weapons_f_gamma.pbo - 91798
19:59:33
19:59:33 =======================
19:59:33
19:59:33 ============================================================================================= List of mods ===============================================================================================
19:59:33 modsReadOnly = false
19:59:33 safeModsActivated = false
19:59:33 customMods = false
19:59:33 hash = 'B9F620171588DEEE57073A5A758881C29C157CC0'
19:59:33 hashShort = '1502e4a0'
19:59:33                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath
19:59:33 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
19:59:33                                  Arma 3 DLC Bundle |            dlcbundle |       true |            NOT FOUND |                                          |           |
19:59:33                                    Arma 3 Marksmen |                 mark |       true |             GAME DIR | ee2a34f8c08de27c3a3fae38611c439713520a93 |  b59d9aca | d:\localuser\g593392\mark
19:59:33                                 Arma 3 Helicopters |                 heli |       true |             GAME DIR | 2d6274ea02a85a5be45a58076928acdfa2829f0f |  475a9cb9 | d:\localuser\g593392\heli
19:59:33                                       Arma 3 Karts |                 kart |       true |             GAME DIR | 5551a1af2cb81f522af90065a6d663089851c32b |  618aafea | d:\localuser\g593392\kart
19:59:33                                        Arma 3 Zeus |              curator |       true |             GAME DIR | c33f513e3eca4e82f790da3986a4264f57719bc5 |  ba819c35 | d:\localuser\g593392\curator
19:59:33                                             Arma 3 |                   A3 |       true |            NOT FOUND |                                          |           |
19:59:33 ==========================================================================================================================================================================================================
19:59:33 InitSound ...
19:59:33 InitSound - complete
19:59:33 PhysX3 SDK Init started ...
19:59:33 PhysX3 SDK Init ended.
19:59:34 Attempt to override final function - rscminimap_script
19:59:34 Attempt to override final function - rscdisplayloading_script
19:59:34 Attempt to override final function - rscdisplayloading_script
19:59:34 Attempt to override final function - rscdisplayloading_script
19:59:34 Attempt to override final function - rscdiary_script
19:59:34 Attempt to override final function - rscdisplaysinglemission_script
19:59:34 Attempt to override final function - rscdiary_script
19:59:34 Attempt to override final function - rscdisplayremotemissions_script
19:59:34 Attempt to override final function - rscdisplayloading_script
19:59:34 Attempt to override final function - rscdiary_script
19:59:34 Attempt to override final function - rscdiary_script
19:59:34 Attempt to override final function - rscdisplaystrategicmap_script
19:59:34 Attempt to override final function - rscdisplaycommon_script
19:59:34 Attempt to override final function - rscdisplaygarage_script
19:59:34 Attempt to override final function - rscdisplayloading_script
19:59:35 Attempt to override final function - rscdisplaycurator_script
19:59:35 Attempt to override final function - rscdisplayattributes_script
19:59:35 Attempt to override final function - rscdisplayattributes_script
19:59:35 Attempt to override final function - rscdisplayattributes_script
19:59:35 Attempt to override final function - display3deneditattributes_script
19:59:35 Attempt to override final function - display3deneditattributes_script
19:59:35 Attempt to override final function - rscdisplayhostsettings_script
19:59:35 Attempt to override final function - rscdisplaycommon_script
19:59:35 Attempt to override final function - rscdisplaydebriefing_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - rscunitinfo_script
19:59:35 Attempt to override final function - slidertime_script
19:59:35 Attempt to override final function - slidertime_script
19:59:35 Attempt to override final function - slidertime_script
19:59:36 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
19:59:36 Version: 2
19:59:36 GlobalFlags: 0
19:59:36 DLCFlags: 7
19:59:36 DLCHashes:
19:59:36 1636478954
19:59:36 -1247962422
19:59:36 1197120697
19:59:36 Mods(0):
19:59:36 Difficulty: 0
19:59:36 AILevel: 0
19:59:36 FlightModel: 0
19:59:36 ThirdPersonCamera: 0
19:59:36 WeaponCrosshair: 0
19:59:36 Signatures:
19:59:36 encodedStream length: 26
19:59:36 encodedStream: ?a???ZG
19:59:36 parts size:1)
19:59:36 part(26): ?a???ZG
19:59:36 Unsupported language English in stringtable
19:59:36 Unsupported language English in stringtable
19:59:36 Mission cannonfod3.Altis: Number of roles (51) is different from 'description.ext::Header::maxPlayer' (41)
19:59:37 Starting mission:
19:59:37  Mission file: cannonfod3 (__cur_mp)
19:59:37  Mission world: Altis
19:59:37  Mission directory: mpmissions\__cur_mp.Altis\
19:59:49 Attempt to override final function - bis_functions_list
19:59:49 Attempt to override final function - bis_functions_listpreinit
19:59:49 Attempt to override final function - bis_functions_listpostinit
19:59:49 Attempt to override final function - bis_functions_listrecompile
19:59:49 "SYSTEM/BIS_fnc_log: [bIS_fnc_preload] ----- Initializing scripts in cannonfod3 -----"
19:59:49 "SYSTEM/BIS_fnc_log: [recompile] recompile BIS_fnc_missionTasksLocal"
19:59:49 Attempt to override final function - bis_fnc_missiontaskslocal
19:59:49 "SYSTEM/BIS_fnc_log: [recompile] recompile BIS_fnc_missionConversationsLocal"
19:59:49 Attempt to override final function - bis_fnc_missionconversationslocal
19:59:49 "SYSTEM/BIS_fnc_log: [recompile] recompile BIS_fnc_missionFlow"
19:59:49 Attempt to override final function - bis_fnc_missionflow
19:59:49 "SYSTEM/BIS_fnc_log: [preInit] BIS_fnc_diagKey (0 ms)"
19:59:49 "SYSTEM/BIS_fnc_log: [preInit] BIS_fnc_feedbackMain (0 ms)"
19:59:49 "SYSTEM/BIS_fnc_log: [preInit] BIS_fnc_missionHandlers (0 ms)"
19:59:49 "SYSTEM/BIS_fnc_log: [preInit] BIS_fnc_getServerVariable (1.00136 ms)"
19:59:49 "SYSTEM/BIS_fnc_log: [preInit] BIS_fnc_initPixelUI (0 ms)"
19:59:49 "SYSTEM/BIS_fnc_log: [preInit] VAS_fnc_mainInit (0 ms)"
19:59:49   found in (386,397).
19:59:49   found in (385,397).
19:59:49   found in (385,396).
19:59:49   found in (386,396).
19:59:49   found in (300,524).
19:59:49   found in (300,524).
19:59:49   found in (300,524).
19:59:49   found in (779,660).
19:59:49   found in (779,660).
19:59:49   found in (779,659).
19:59:49   found in (779,660).
19:59:49   found in (779,660).
19:59:49   found in (779,659).
19:59:49   found in (300,524).
19:59:49   found in (665,381).
19:59:49   found in (665,381).
19:59:49   found in (665,381).
19:59:49   found in (665,381).
19:59:49   found in (665,381).
19:59:49   found in (665,381).
19:59:49   found in (779,660).
19:59:49   found in (797,753).
19:59:49   found in (471,737).
19:59:49   found in (624,340).
19:59:49   found in (696,487).
19:59:49   found in (0,12).
19:59:49   found in (0,12).
19:59:49   found in (135,640).
19:59:49   found in (236,723).
19:59:49   found in (665,381).
19:59:49   found in (300,523).
19:59:49   found in (300,524).
19:59:49   found in (300,524).
19:59:49   found in (0,12).
19:59:49   found in (0,11).
19:59:49   found in (0,11).
19:59:49   found in (0,12).
19:59:49   found in (0,12).
19:59:49   found in (0,12).
19:59:50   found in (0,11).
19:59:50   found in (0,11).
19:59:50   found in (0,11).
19:59:50   found in (483,544).
19:59:50 class HitPoints::HitFuel not found in B_Boat_Armed_01_minigun_F
19:59:50   found in (511,527).
19:59:50   found in (511,525).
19:59:50 class HitPoints::HitFuel not found in B_SDV_01_F
19:59:50   found in (511,525).
19:59:50   found in (489,560).
19:59:50   found in (489,560).
19:59:50   found in (489,560).
19:59:50   found in (489,560).
19:59:50   found in (489,560).
19:59:50   found in (489,560).
19:59:50   found in (489,560).
19:59:50   found in (489,560).
19:59:50 class HitPoints::HitFuel not found in C_Boat_Civil_01_rescue_F
19:59:50   found in (513,527).
19:59:50   found in (486,556).
19:59:50   found in (486,556).
19:59:50   found in (489,559).
19:59:50   found in (489,559).
19:59:50   found in (489,559).
19:59:50   found in (489,559).
19:59:50   found in (484,558).
19:59:50   found in (474,528).
19:59:50   found in (707,237).
19:59:50   found in (708,237).
19:59:50   found in (707,237).
19:59:50   found in (707,237).
19:59:50   found in (707,237).
19:59:50   found in (707,237).
19:59:50   found in (707,237).
19:59:50   found in (393,471).
19:59:50   found in (394,471).
19:59:50   found in (394,471).
19:59:50   found in (394,471).
19:59:50   found in (394,471).
19:59:50   found in (394,471).
19:59:50   found in (394,471).
19:59:50   found in (167,481).
19:59:50   found in (167,481).
19:59:50   found in (167,480).
19:59:50   found in (167,481).
19:59:50   found in (167,481).
19:59:50   found in (167,481).
19:59:50   found in (167,481).
19:59:50   found in (421,660).
19:59:50   found in (421,660).
19:59:50   found in (421,660).
19:59:50   found in (421,660).
19:59:50   found in (421,660).
19:59:50   found in (421,660).
19:59:50   found in (421,660).
19:59:50   found in (482,561).
19:59:50   found in (483,560).
19:59:50 class HitPoints::HitFuel not found in B_APC_Tracked_01_rcws_F
19:59:50   found in (484,561).
19:59:51 class HitPoints::HitFuel not found in B_APC_Tracked_01_CRV_F
19:59:51   found in (483,560).
19:59:51   found in (484,557).
19:59:51 class HitPoints::HitFuel not found in B_MBT_01_TUSK_F
19:59:51   found in (483,561).
19:59:51   found in (484,561).
19:59:51   found in (485,557).
19:59:51   found in (485,557).
19:59:51   found in (485,558).
19:59:51   found in (485,558).
19:59:51   found in (485,558).
19:59:51   found in (485,558).
19:59:51   found in (485,558).
19:59:51   found in (485,558).
19:59:51   found in (485,559).
19:59:51   found in (486,563).
19:59:51   found in (485,560).
19:59:51   found in (486,563).
19:59:51   found in (486,562).
19:59:51   found in (486,563).
19:59:51   found in (486,562).
19:59:51   found in (485,563).
19:59:51   found in (486,557).
19:59:51   found in (486,558).
19:59:51   found in (486,559).
19:59:51   found in (486,561).
19:59:51   found in (486,563).
19:59:51   found in (486,563).
19:59:51   found in (486,563).
19:59:51   found in (487,557).
19:59:51   found in (487,557).
19:59:51   found in (487,557).
19:59:51   found in (487,559).
19:59:51   found in (487,557).
19:59:51   found in (487,557).
19:59:51   found in (488,558).
19:59:51   found in (487,557).
19:59:51   found in (488,558).
19:59:51   found in (486,559).
19:59:51   found in (488,558).
19:59:51   found in (488,558).
19:59:51   found in (488,557).
19:59:51   found in (489,558).
19:59:51   found in (488,558).
19:59:51   found in (489,558).
19:59:51   found in (488,558).
19:59:51   found in (489,560).
19:59:51   found in (489,560).
19:59:51   found in (489,559).
19:59:51   found in (489,564).
19:59:51 class HitPoints::HitFuel not found in B_MBT_01_arty_F
19:59:51   found in (491,562).
19:59:51   found in (490,564).
19:59:51   found in (490,564).
19:59:51   found in (490,564).
19:59:52   found in (478,544).
19:59:52   found in (480,543).
19:59:52   found in (485,539).
19:59:52   found in (487,560).
19:59:52   found in (487,560).
19:59:52   found in (482,559).
19:59:52   found in (488,560).
19:59:52   found in (487,561).
19:59:52   found in (487,560).
19:59:52   found in (487,560).
19:59:52   found in (487,560).
19:59:52   found in (485,559).
19:59:52   found in (485,559).
19:59:52   found in (485,559).
19:59:52   found in (485,558).
19:59:52   found in (485,558).
19:59:52   found in (485,559).
19:59:52 class HitPoints::HitFuel not found in Land_Camping_Light_F
19:59:52   found in (485,557).
19:59:52   found in (489,559).
19:59:52   found in (469,547).
19:59:52   found in (469,548).
19:59:52   found in (469,548).
19:59:52   found in (469,548).
19:59:52   found in (469,548).
19:59:52   found in (469,548).
19:59:52 Error: Wheel reference not initialized
19:59:52   found in (470,547).
19:59:52 Error: Wheel reference not initialized
19:59:52   found in (470,547).
19:59:52   found in (470,547).
19:59:52   found in (470,547).
19:59:52 Strange convex component60 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52 Strange convex component61 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52 Strange convex component62 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52 Strange convex component63 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52 Strange convex component64 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52 Strange convex component65 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52 Strange convex component66 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52 Strange convex component67 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_narrow_f.p3d:geometryView
19:59:52   found in (470,548).
19:59:52   found in (470,548).
19:59:52   found in (470,548).
19:59:52 Error: Wheel reference not initialized
19:59:52   found in (470,547).

19:59:53   found in (484,563).
19:59:53   found in (482,544).
19:59:53 class HitPoints::HitFuel not found in I_MBT_03_cannon_F
19:59:53   found in (485,562).

19:59:56   found in (492,560).
19:59:56 class HitPoints::HitFuel not found in Land_Pod_Heli_Transport_04_medevac_F
19:59:56   found in (504,573).

19:59:56   found in (486,559).
19:59:56 class HitPoints::HitFuel not found in Land_Pod_Heli_Transport_04_bench_F
19:59:56   found in (504,573).
19:59:56 class HitPoints::HitFuel not found in Land_Pod_Heli_Transport_04_covered_F
19:59:56   found in (504,574).
19:59:56 class HitPoints::HitFuel not found in Land_Pod_Heli_Transport_04_ammo_F
19:59:56   found in (505,574).

19:59:57   found in (511,528).
19:59:57 MovesType CfgGesturesMale load time 78 ms
19:59:57 Animation a3\cargoposes_f_heli\anim\passenger_inside_5aim_obstructed.rtm not found or empty
19:59:57 Animation a3\cargoposes_f_heli\anim\passenger_inside_5aim_fromobstructed.rtm not found or empty
19:59:57 Animation a3\cargoposes_f_heli\anim\passenger_inside_5aim_toobstructed.rtm not found or empty
19:59:57 Animation a3\cargoposes_f_heli\anim\passenger_inside_5aimpistol_obstructed.rtm not found or empty
19:59:57 Animation a3\cargoposes_f_heli\anim\passenger_inside_5aimpistol_fromobstructed.rtm not found or empty
19:59:57 Animation a3\cargoposes_f_heli\anim\passenger_inside_5aimpistol_toobstructed.rtm not found or empty
20:00:01 MovesType CfgMovesMaleSdr load time 4670 ms
20:00:01   found in (480,540).
20:00:01   found in (480,540).
20:00:01   found in (474,542).
20:00:01   found in (474,542).
20:00:02   found in (489,560).
20:00:02   found in (479,540).
20:00:02   found in (479,540).
20:00:02   found in (479,540).
20:00:02   found in (479,540).
20:00:02   found in (488,558).
20:00:02   found in (488,558).
20:00:02 soldier[b_soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:02   found in (491,563).
20:00:02 soldier[b_soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:02   found in (482,561).
20:00:02 soldier[b_soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:02   found in (484,563).
20:00:02   found in (482,543).
20:00:02   found in (484,556).
20:00:02   found in (484,556).
20:00:02   found in (484,556).
20:00:02   found in (484,556).
20:00:02   found in (484,556).
20:00:02 DEBUG: AT START OF SCRIPT
20:00:02 Connected to Steam servers
20:00:02 Error: Object(2 : 204) not found

20:00:02 Error: Object(2 : 1202) not found
20:00:02 c:\w\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
20:00:02  Mission id: 53b0c248fea2fdac967b5f6438ab35dbc8d025dd
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1443 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1443 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1443 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1443 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1443 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1442 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1236 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1441 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:04 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleGrenade (1440 ms)"
20:00:13 "SYSTEM/log: ERROR: [bIS_fnc_activateAddons] The function can be activated only during the mission init."
20:00:13 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire
20:00:13 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire
20:00:14 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
20:00:14 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
20:00:14 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
20:00:15 "SYSTEM/log: ERROR: [bIS_fnc_activateAddons] The function can be activated only during the mission init."
20:00:20 "SYSTEM/log: ERROR: [bIS_fnc_activateAddons] The function can be activated only during the mission init."
20:00:20 "SYSTEM/log: ERROR: [bIS_fnc_activateAddons] The function can be activated only during the mission init."
20:00:20 "Cfg Processed: CfgWeapons | Time to complete: 15.652"
20:00:20 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleCurator (15380 ms)"
20:00:20 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleCurator (15380 ms)"
20:00:20 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleCurator (15380 ms)"
20:00:20 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleCurator (15380 ms)"
20:00:21 "SYSTEM/log: ERROR: [bIS_fnc_activateAddons] The function can be activated only during the mission init."
20:00:21 "Cfg Processed: CfgMagazines | Time to complete: 1.201"
20:00:21 "Cfg Processed: CfgVehicles | Time to complete: 0.410999"
20:00:21 "Cfg Processed: CfgGlasses | Time to complete: 0.0109978"
20:00:21 "SYSTEM/BIS_fnc_log: [module] BIS_fnc_moduleCuratorAddEditableObjects (72.998 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [script] initServer.sqf"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] BIS_fnc_missionFlow (0.999451 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] BIS_fnc_initParams (6.00052 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] BIS_fnc_initRespawn (0 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] BIS_fnc_sharedObjectives (0 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] BIS_fnc_3dMarkers (0 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] BIS_fnc_reviveInit (0 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] CHVD_fnc_init (0 ms)"
20:00:21 "SYSTEM/BIS_fnc_log: [postInit] FETT_fnc_eventHandlers (0 ms)"
20:00:21 DEBUG: AT START OF SCRIPT
20:00:21 DEBUG: AT END OF SCRIPT
20:00:21 Performance warning: SimpleSerialization::Write 'iedDictionary' is using type of ',SCRIPT' which is not optimized by simple serialization, falling back to generic serialization, use generic type or ask for optimizations for these types

20:00:22 Performance warning: SimpleSerialization::Read 'iedDictionary' is using type of ,'SCRIPT' which is not optimized by simple serialization, falling back to generic serialization, use generic type or ask for optimizations for these types
20:00:22 Error in expression < entities "RoadCone_L_F" - [medicTruck, medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:00:22   Error position: <medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:00:22   Error Undefined variable in expression: medictruck_1_1
20:00:22 File mpmissions\__cur_mp.Altis\scripts\misc\zeusupdater.sqf, line 11
20:00:22 "SYSTEM/BIS_fnc_log: [bIS_fnc_preload] ----- Scripts initialized at 32833 ms -----"
20:00:22 Error in expression <                 
1,                    
1                    
];

server setvariable ["INFskill",_Infskill>
20:00:22   Error position: <server setvariable ["INFskill",_Infskill>
20:00:22   Error Undefined variable in expression: server
20:00:22 File mpmissions\__cur_mp.Altis\scripts\eos\AI_Skill.sqf, line 70
20:00:23 class HitPoints::HitFuel not found in I_APC_tracked_03_cannon_F
20:00:23 class HitPoints::HitFuel not found in B_APC_Tracked_01_AA_F
20:00:23 class HitPoints::HitFuel not found in B_MBT_01_cannon_F
20:00:25 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error Undefined variable in expression: currentao
20:00:25 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:25 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error Undefined variable in expression: currentao
20:00:25 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:25 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error Undefined variable in expression: currentao
20:00:25 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:25 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:25   Error Undefined variable in expression: currentao
20:00:25 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:26 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error Undefined variable in expression: currentao
20:00:26 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:26 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error Undefined variable in expression: currentao
20:00:26 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:26 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error Undefined variable in expression: currentao
20:00:26 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:26 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error Undefined variable in expression: currentao
20:00:26 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:26 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error Undefined variable in expression: currentao
20:00:26 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:26 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error Undefined variable in expression: currentao
20:00:26 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:26 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:26   Error Undefined variable in expression: currentao
20:00:26 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:27 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:27   Error Undefined variable in expression: currentao
20:00:27 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:28 Error in expression < {
if ((_flatPos distance (getMarkerPos currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error position: <currentAO)) > 500) then {
_accepted = tr>
20:00:28   Error Undefined variable in expression: currentao
20:00:28 File mpmissions\__cur_mp.Altis\mission\side\missions\priorityAA.sqf, line 46
20:00:29 class HitPoints::HitFuel not found in O_APC_Tracked_02_AA_F
20:00:29 Ref to nonnetwork object 6f03a040# 1815701: o_soldier_01.p3d
20:00:29 Ref to nonnetwork object 6eff6040# 1815706: o_soldier_01.p3d
20:00:29 Ref to nonnetwork object 6f038080# 1815710: o_soldier_01.p3d
20:00:30 Ref to nonnetwork object 6ee24080# 1815720: o_soldier_01.p3d
20:00:30 Ref to nonnetwork object 6edfc080# 1815724: o_soldier_01.p3d
20:00:30 Ref to nonnetwork object 6ede4080# 1815728: o_soldier_01.p3d
20:00:30 soldier[O_Soldier_SL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:30 soldier[O_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:30 soldier[O_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:30 soldier[O_Soldier_TL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:30 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_Soldier_SL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_Soldier_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_Soldier_AT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_Soldier_AT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_recon_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_recon_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:31 soldier[O_recon_JTAC_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:32 Ref to nonnetwork object 706f6040# 1815819: o_soldier_01.p3d
20:00:32 soldier[O_Soldier_SL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:32 Ref to nonnetwork object 70686040# 1815826: o_soldier_01.p3d
20:00:32 soldier[O_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:32 soldier[O_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:32 soldier[O_Soldier_TL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:32 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:32 soldier[O_Soldier_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:33 soldier[O_Soldier_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:35 soldier[O_Soldier_TL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:35 soldier[O_Soldier_AT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:35 soldier[O_Soldier_AT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:35 soldier[O_Soldier_AT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:35 soldier[O_Soldier_AT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:35 class HitPoints::HitFuel not found in O_Mortar_01_F
20:00:35 Ref to nonnetwork object 70aa4080# 1815909: o_soldier_01.p3d
20:00:38 class HitPoints::HitFuel not found in O_MBT_02_cannon_F
20:00:39 Ref to nonnetwork object 72354080# 1815968: o_soldier_01.p3d
20:00:42 soldier[O_SoldierU_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:44 soldier[O_soldierU_TL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:44 soldier[O_soldierU_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:44 soldier[O_soldierU_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:44 soldier[O_SoldierU_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:44 soldier[O_soldierU_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:44 soldier[O_soldierU_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:46 soldier[O_soldierU_TL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:46 soldier[O_soldierU_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:46 soldier[O_soldierU_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:46 soldier[O_SoldierU_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:46 soldier[O_soldierU_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:46 soldier[O_soldierU_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:49 soldier[O_SoldierU_SL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:49 soldier[O_soldierU_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:49 soldier[O_soldierU_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:49 soldier[O_soldierU_TL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:49 soldier[O_soldierU_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:49 soldier[O_soldierU_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:00:50 Ref to nonnetwork object 7385e040# 1816139: o_soldier_01.p3d
20:00:50 Ref to nonnetwork object 7383e040# 1816143: o_soldier_01.p3d
20:00:50 Ref to nonnetwork object 7383c080# 1816147: o_soldier_01.p3d
20:00:50 Ref to nonnetwork object 7365e040# 1816153: o_soldier_01.p3d
20:00:50 Ref to nonnetwork object 735e8080# 1816157: o_soldier_01.p3d
20:00:50 Ref to nonnetwork object 735ca040# 1816161: o_soldier_01.p3d
20:00:51 class HitPoints::HitFuel not found in O_APC_Tracked_02_cannon_F
20:00:51 Ref to nonnetwork object 733d6040# 1816167: o_soldier_01.p3d
20:00:51 Ref to nonnetwork object 733d4080# 1816171: o_soldier_01.p3d
20:00:51 Ref to nonnetwork object 733a2040# 1816175: o_soldier_01.p3d
20:00:51 Ref to nonnetwork object 732ee040# 1816180: o_soldier_01.p3d
20:00:51 Ref to nonnetwork object 732ec080# 1816185: o_soldier_01.p3d
20:00:51 Ref to nonnetwork object 732a0080# 1816189: o_soldier_01.p3d
20:00:52 Ref to nonnetwork object 7305e040# 1816216: o_soldier_01.p3d
20:00:52 Ref to nonnetwork object 73002040# 1816222: o_soldier_01.p3d
20:00:52 Ref to nonnetwork object 72fd2040# 1816226: o_soldier_01.p3d
20:00:52 Ref to nonnetwork object 72f20080# 1816233: o_soldier_01.p3d
20:00:53 Ref to nonnetwork object 7301a040# 1816238: o_soldier_01.p3d
20:00:53 Ref to nonnetwork object 748d2040# 1816242: o_soldier_01.p3d
20:00:53 Ref to nonnetwork object 74884080# 1816248: o_soldier_01.p3d
20:00:53 Ref to nonnetwork object 747bc080# 1816252: o_soldier_01.p3d
20:00:53 Ref to nonnetwork object 747a2040# 1816256: o_soldier_01.p3d
20:01:05 soldier[O_G_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:05 soldier[O_G_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:05 soldier[O_soldier_UAV_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:05 soldier[O_soldier_UAV_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:05 soldier[O_G_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:05 soldier[O_G_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:05 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:06 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:07 soldier[O_Soldier_TL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:07 soldier[O_Soldier_SL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:07 soldier[O_G_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:07 soldier[O_G_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:07 soldier[O_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:07 soldier[O_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:10 soldier[O_G_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:10 soldier[O_G_Soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:10 Unaccessible
20:01:10 soldier[b_soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:10 soldier[b_soldier_LAT_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:10   found in (486,559).
20:01:10 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:10  - no leader
20:01:10 Subgroup B Bravo 4-1:<No leader> (0x78f99d00) - network ID 2:2785
20:01:10  - no leader
20:01:10 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:10  - no leader

20:01:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:11  - no leader
20:01:11 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:11  - no leader
20:01:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:11  - no leader
20:01:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:11  - no leader
20:01:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:11  - no leader
20:01:11 soldier[O_Soldier_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:12 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:12 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:12  - no leader
20:01:12 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:12 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:12 soldier[O_Soldier_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:12 soldier[O_Soldier_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:12 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:12  - no leader
20:01:12 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:01:12 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:12  - no leader
20:01:13 soldier[O_Soldier_AR_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:13 soldier[O_Soldier_GL_F]:Some of magazines weren't stored in soldier Vest or Uniform?
20:01:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:13  - no leader
20:01:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:13  - no leader
20:01:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:13  - no leader

20:01:14 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:14  - no leader
20:01:15 No speaker given for Ethan Jones
20:01:15 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:01:15  - no leader

20:02:12 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:02:12  - no leader
20:02:12 No speaker given for Ali Sesse-Seko
20:02:12 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:03:17 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:03:17  - no leader
20:03:18 No speaker given for Charlie Johnson
20:03:18 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:03:22 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:03:22  - no leader
20:03:22 Error in expression < entities "RoadCone_L_F" - [medicTruck, medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:03:22   Error position: <medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:03:22   Error Undefined variable in expression: medictruck_1_1
20:03:22 File mpmissions\__cur_mp.Altis\scripts\misc\zeusupdater.sqf, line 11
20:03:22 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:03:22  - no leader

20:04:21 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:04:21  - no leader
20:04:21 No speaker given for Harrison Walsh
20:04:21 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:04:26 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:04:26  - no leader
20:04:27 No speaker given for Batou Gowon
20:04:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:04:35 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:04:35  - no leader
20:04:35 Road not found
20:04:36 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:05:09 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:09  - no leader
20:05:09 Road not found
20:05:10 Road not found
20:05:10 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:10  - no leader
20:05:10 Road not found
20:05:11 Road not found
20:05:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:11  - no leader
20:05:12 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:05:17 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:17  - no leader
20:05:17 Road not found
20:05:17 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:17  - no leader

20:05:17 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:17  - no leader
20:05:17 Road not found
20:05:17 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:17  - no leader

20:05:18 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:18  - no leader
20:05:18 Road not found
20:05:19 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:19  - no leader
20:05:19 Road not found
20:05:19 Road not found
20:05:20 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:05:52 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:52  - no leader
20:05:52 Road not found
20:05:52 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:05:52  - no leader

20:06:16 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:16  - no leader
20:06:16 Protocol bin\config.bin/RadioProtocolPER/: Missing word veh_helicopter
20:06:16 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:16  - no leader
20:06:16 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:16  - no leader

20:06:22 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:22  - no leader
20:06:22 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:22  - no leader
20:06:22 Error in expression < entities "RoadCone_L_F" - [medicTruck, medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:06:22   Error position: <medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:06:22   Error Undefined variable in expression: medictruck_1_1
20:06:22 File mpmissions\__cur_mp.Altis\scripts\misc\zeusupdater.sqf, line 11
20:06:22 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:22  - no leader
20:06:22 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:22  - no leader

20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader
20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader
20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader
20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader
20:06:27 Client: Object 3:4 (type Type_91) not found.
20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader
20:06:27 Client: Object 3:4 (type Type_90) not found.
20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader
20:06:27 Client: Object 3:4 (type Type_417) not found.
20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader
20:06:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:27  - no leader

20:06:33 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:33  - no leader
20:06:33 Client: Object 3:3 (type Type_91) not found.
20:06:33 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:33  - no leader
20:06:33 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:33  - no leader
20:06:33 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:33  - no leader
20:06:33 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:33  - no leader
20:06:33 Client: Object 3:3 (type Type_91) not found.
20:06:33 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:06:33  - no leader
20:06:33 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:07:49 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:07:49  - no leader
20:07:49 No speaker given for Gula Okoye
20:07:49 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:07:49  - no leader
20:07:50 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:07:50  - no leader

20:08:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:11  - no leader
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 1c not found
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 2c not found
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 3c not found
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 4c not found
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 5c not found
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 6c not found
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 7c not found
20:08:11 Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 8c not found
20:08:11 Wrong geometry convex component mapping  for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Convex component number 3. not found
20:08:11 No speaker given for Petros Nicolau
20:08:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:11  - no leader

20:08:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:27  - no leader
20:08:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:27  - no leader
20:08:27 Error in expression <ck_switch = false;
};
};
};
if (!isNull heliFuelTruck) then {
heliFuelTruck setF>
20:08:27   Error position: <heliFuelTruck) then {
heliFuelTruck setF>
20:08:27   Error Undefined variable in expression: helifueltruck
20:08:27 File mpmissions\__cur_mp.Altis\scripts\misc\cleanup.sqf, line 29
20:08:27 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:27  - no leader

20:08:42 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:42  - no leader
20:08:42 Ragdoll - loading of ragdoll source "Soldier" started.
20:08:42 Ragdoll - loading of ragdoll source "Soldier" finished successfully.
20:08:42 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:42  - no leader
20:08:42 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:42  - no leader
20:08:42 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:42  - no leader

20:08:47 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:47  - no leader
20:08:48 No speaker given for Jahi Okoye
20:08:48 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:48  - no leader

20:08:58 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:58  - no leader
20:08:59 No speaker given for Pan Tin-Tao
20:08:59 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:59  - no leader
20:08:59 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:08:59  - no leader

20:09:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:09:23  - no leader
20:09:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:09:23  - no leader
20:09:23 Error in expression < entities "RoadCone_L_F" - [medicTruck, medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:09:23   Error position: <medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:09:23   Error Undefined variable in expression: medictruck_1_1
20:09:23 File mpmissions\__cur_mp.Altis\scripts\misc\zeusupdater.sqf, line 11
20:09:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:09:23  - no leader

20:09:58 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:09:58  - no leader
20:09:58 No speaker given for Dong Sun
20:09:58 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:09:58  - no leader
20:09:58 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:10:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:23  - no leader
20:10:23 No speaker given for Gao Tung
20:10:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:10:56 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:56  - no leader
20:10:56 Client: Object 3:17 (type Type_91) not found.
20:10:56 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:56  - no leader
20:10:56 Client: Object 3:17 (type Type_90) not found.
20:10:56 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:56  - no leader
20:10:56 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:56  - no leader
20:10:56 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:56  - no leader
20:10:56 Client: Object 3:17 (type Type_417) not found.
20:10:56 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:56  - no leader

20:10:59 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:59  - no leader
20:10:59 Server: Object 3:21 not found (message Type_119)
20:10:59 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:59  - no leader
20:10:59 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:59  - no leader

20:10:59 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:59  - no leader
20:10:59 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:10:59  - no leader
20:11:00 Server: Object 3:24 not found (message Type_119)
20:11:00 Server: Object 3:23 not found (message Type_417)
20:11:00 Server: Object 3:25 not found (message Type_91)
20:11:00 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:00  - no leader
20:11:00 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:00  - no leader

20:11:10 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:10  - no leader
20:11:11 No speaker given for Luo Jeong
20:11:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:11  - no leader
20:11:11 Group B Bravo 4-1 (0x79108180) - network ID 2:2777

20:11:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:13  - no leader
20:11:13 Server: Object 3:13 not found (message Type_119)
20:11:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:13  - no leader
20:11:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:13  - no leader
20:11:13 Error: Object(3 : 15) not found
20:11:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:13  - no leader
20:11:13 Client: Object 3:15 (type Type_119) not found.
20:11:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:13  - no leader
20:11:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:13  - no leader
20:11:13 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:13  - no leader
20:11:14 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:14  - no leader
20:11:14 Server: Object 3:14 not found (message Type_119)
20:11:14 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:14  - no leader
20:11:14 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:14  - no leader

20:11:20 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:20  - no leader
20:11:20 No speaker given for Guo Ng
20:11:20 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:20  - no leader

20:11:25 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:25  - no leader
20:11:25 No speaker given for Gillian Walker
20:11:25 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:11:25  - no leader

20:12:04 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:12:04  - no leader
20:12:04 Server: Object 2:2334 not found (message Type_323)
20:12:04 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:12:04  - no leader
20:12:05 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:12:05  - no leader

20:12:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:12:23  - no leader
20:12:23 Error in expression < entities "RoadCone_L_F" - [medicTruck, medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:12:23   Error position: <medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:12:23   Error Undefined variable in expression: medictruck_1_1
20:12:23 File mpmissions\__cur_mp.Altis\scripts\misc\zeusupdater.sqf, line 11
20:12:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:12:23  - no leader

20:15:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:15:23  - no leader
20:15:23 Error in expression < entities "RoadCone_L_F" - [medicTruck, medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:15:23   Error position: <medicTruck_1_1, Quartermaster_2_2_2, Qua>
20:15:23   Error Undefined variable in expression: medictruck_1_1
20:15:23 File mpmissions\__cur_mp.Altis\scripts\misc\zeusupdater.sqf, line 11
20:15:23 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:15:23  - no leader
20:16:32 Error in expression <ck_switch = false;
};
};
};
if (!isNull heliFuelTruck) then {
heliFuelTruck setF>
20:16:32   Error position: <heliFuelTruck) then {
heliFuelTruck setF>
20:16:32   Error Undefined variable in expression: helifueltruck
20:16:32 File mpmissions\__cur_mp.Altis\scripts\misc\cleanup.sqf, line 29
20:16:32 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:16:32  - no leader
20:17:05 Group B Bravo 4-1 (0x79108180) - network ID 2:2777
20:17:05  - no leader
20:17:05 EPE manager release (96|292|0)
20:17:05 Number of actors in scene after release: 96
20:17:05 EPE manager release (0|96|0)



Here is a link to the current mission file incase you want to look at any of the innards.

https://drive.google.com/drive/folders/0B8HJN_2KfOfSWC1vdkI5c0E5cGs

Regards

Rizla

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×