Jump to content

ViktorReznov

Member
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by ViktorReznov

  1. I got it working, dont quite know how. Was doing a lot of combining with the server_updateObject.sqf seeing as how a there were a lot of discrepancies between a clean 1.0.5.1 sqf and the one provided. All options are working, just going to test if they survive a server restart.

    Heres a link of the files i use and a drag and drop server_updateObject.sqf. If you already have a modded version, i recommend using notepad++ with the compare plugin to get the changes you need.

    Script DL: https://www.dropbox.com/home?preview=VehicleKeyChanger.7z

    Notepad++: https://notepad-plus-plus.org/download/v7.3.html

    compare plugin x86: https://sourceforge.net/projects/npp-compare/

  2. I have torn through this thread looking for an answer as to why this will not run on my server. Any  help one can provide would be very much appreciated! I run a few scripts currently so hopefully I havent overlooked something and thats why this fails! Epoch 1.0.5.2 | Vehicle Key Changer 1.5.3 | A Plot For Life 2.34 | Snap Pro | Build Vectors | Precision Base Building | Sarge Ai 1.5.2 | WAI 2.2.0 | Vehicle Service Points | Weapon Mods | Admin Tools | ESSv2 | and still trying to do more but im getting hung up on this one!

    server_updateObject

    Spoiler

    /*
    [_object,_type] spawn server_updateObject;
    */
    private ["_object","_type","_objectID","_uid","_lastUpdate","_needUpdate","_object_position","_object_inventory","_object_damage","_isNotOk","_parachuteWest","_firstTime","_object_killed","_object_repair","_isbuildable","_object_vehicleKey","_activatingPlayer","_vehicleClassname","_toKey","_toKeyName","_vehicle_ID","_vehicle_UID"];

    _object =     _this select 0;

    if(isNull(_object)) exitWith {
        diag_log format["Skipping Null Object: %1", _object];
    };

    _type =     _this select 1;
    _parachuteWest = ((typeOf _object == "ParachuteWest") || (typeOf _object == "ParachuteC"));
    _isbuildable = (typeOf _object) in dayz_allowedObjects;
    _isNotOk = false;
    _firstTime = false;

    _objectID =    _object getVariable ["ObjectID","0"];
    _uid =         _object getVariable ["ObjectUID","0"];

    if ((typeName _objectID != "string") || (typeName _uid != "string")) then

        diag_log(format["Non-string Object: ID %1 UID %2", _objectID, _uid]);
        //force fail
        _objectID = "0";
        _uid = "0";
    };
    // Epoch Admin Tools
    if ((_object getVariable "MalSar" == 1) || (_object getVariable "Sar_protect" == 1)) exitWith {};
    if (!_parachuteWest && !(locked _object)) then {
        if (_objectID == "0" && _uid == "0") then
        {
            _object_position = getPosATL _object;
            _isNotOk = true;
        };
    };

    // do not update if buildable && not ok
    if (_isNotOk && _isbuildable) exitWith {  };

    // delete if still not ok
    if (_isNotOk) exitWith { deleteVehicle _object; diag_log(format["Deleting object %1 with invalid ID at pos [%2,%3,%4]",typeOf _object,_object_position select 0,_object_position select 1, _object_position select 2]); };


    _lastUpdate = _object getVariable ["lastUpdate",time];
    _needUpdate = _object in needUpdate_objects;

    // TODO ----------------------
    _object_position = {
        private["_position","_worldspace","_fuel","_key"];
            _position = getPosATL _object;
            _worldspace = [getDir _object, _position] call AN_fnc_formatWorldspace;

            _fuel = 0;
            if (_object isKindOf "AllVehicles") then {
                _fuel = fuel _object;
            };
            _key = format["CHILD:305:%1:%2:%3:",_objectID,_worldspace,_fuel];
            //diag_log ("HIVE: WRITE: "+ str(_key));
            _key call server_hiveWrite;
    };

    _object_inventory = {
        private["_inventory","_previous","_key"];
            _inventory = [
                getWeaponCargo _object,
                getMagazineCargo _object,
                getBackpackCargo _object
            ];
            _previous = str(_object getVariable["lastInventory",[]]);
            if (str(_inventory) != _previous) then {
                if(alive _object) then{
                    _object setVariable["lastInventory",_inventory];
                };
                if (_objectID == "0") then {
                    _key = format["CHILD:309:%1:%2:",_uid,_inventory];
                } else {
                    _key = format["CHILD:303:%1:%2:",_objectID,_inventory];
                };
                //diag_log ("HIVE: WRITE: "+ str(_key));
                _key call server_hiveWrite;
            };
    };

    _object_damage = {
        private["_hitpoints","_array","_hit","_selection","_key","_damage"];
            _hitpoints = _object call vehicle_getHitpoints;
            _damage = damage _object;
            _array = [];
            {
                _hit = [_object,_x] call object_getHit;
                _selection = getText (configFile >> "CfgVehicles" >> (typeOf _object) >> "HitPoints" >> _x >> "name");
                if (_hit > 0) then {_array set [count _array,[_selection,_hit]]};
                _object setHit ["_selection", _hit];
            } count _hitpoints;
        
            _key = format["CHILD:306:%1:%2:%3:",_objectID,_array,_damage];
            //diag_log ("HIVE: WRITE: "+ str(_key));
            _key call server_hiveWrite;
        _object setVariable ["needUpdate",false,true];
        };

    _object_killed = {
        if(_object isKindOf "AllVehicles") then{
            _object execVM "\z\addons\dayz_server\compile\server_crashLoot.sqf";
        };
        private["_hitpoints","_array","_hit","_selection","_key","_damage"];
        _hitpoints = _object call vehicle_getHitpoints;
        //_damage = damage _object;
        _damage = 1;
        _array = [];
        {
            _hit = [_object,_x] call object_getHit;
            _selection = getText (configFile >> "CfgVehicles" >> (typeOf _object) >> "HitPoints" >> _x >> "name");
            if (_hit > 0) then {_array set [count _array,[_selection,_hit]]};
            _hit = 1;
            _object setHit ["_selection", _hit];
        } count _hitpoints;
        
        if (_objectID == "0") then {
            _key = format["CHILD:306:%1:%2:%3:",_uid,_array,_damage];
        } else {
            _key = format["CHILD:306:%1:%2:%3:",_objectID,_array,_damage];
        };
        //diag_log ("HIVE: WRITE: "+ str(_key));
        _key call server_hiveWrite;
        _object setVariable ["needUpdate",false,true];
        if ((count _this) > 2) then {
            _killer = _this select 2;
            _charID = _object getVariable ['CharacterID','0'];
            _objID     = _object getVariable['ObjectID','0'];
            _objUID    = _object getVariable['ObjectUID','0'];
            _worldSpace = getPosATL _object;
            if (getPlayerUID _killer != "") then {
                _name = if (alive _killer) then { name _killer; } else { format["OBJECT %1", _killer]; };
                diag_log format["Vehicle killed: Vehicle %1 (TYPE: %2), CharacterID: %3, ObjectID: %4, ObjectUID: %5, Position: %6, Killer: %7 (UID: %8)", _object, (typeOf _object), _charID, _objID, _objUID, _worldSpace, _name, (getPlayerUID _killer)];
            } else {
                diag_log format["Vehicle killed: Vehicle %1 (TYPE: %2), CharacterID: %3, ObjectID: %4, ObjectUID: %5, Position: %6", _object, (typeOf _object), _charID, _objID, _objUID, _worldSpace];
            };
        };
    };

    _object_repair = {
        private["_hitpoints","_array","_hit","_selection","_key","_damage"];
        _hitpoints = _object call vehicle_getHitpoints;
        _damage = damage _object;
        _array = [];
        {
            _hit = [_object,_x] call object_getHit;
            _selection = getText (configFile >> "CfgVehicles" >> (typeOf _object) >> "HitPoints" >> _x >> "name");
            if (_hit > 0) then {_array set [count _array,[_selection,_hit]]};
            _object setHit ["_selection", _hit];
        } count _hitpoints;
        
        _key = format["CHILD:306:%1:%2:%3:",_objectID,_array,_damage];
        //diag_log ("HIVE: WRITE: "+ str(_key));
        _key call server_hiveWrite;
        _object setVariable ["needUpdate",false,true];
    };

    _object_vehicleKey = {
        private ["_hit","_selection","_fuel","_gotcha","_retry","_vehicleID","_key","_result","_outcome","_player","_class","_newKey","_newKeyName","_oldVehicleID","_oldVehicleUID","_hitpoints","_damage","_array","_inventory","_vehicleUID","_position","_dir","_worldspace"];
        
        /* Setting up variables */
        _player = _this select 0;
        _class = _this select 1;
        _newKey = _this select 2;
        _newKeyName = _this select 3;
        _oldVehicleID = _this select 4;
        _oldVehicleUID = _this select 5;

        /* Get Damage of the Vehicle */
        _hitpoints = _object call vehicle_getHitpoints;
        _damage = damage _object;
        _array = [];
        {
            _hit = [_object,_x] call object_getHit;
            _selection = getText (configFile >> "CfgVehicles" >> (typeOf _object) >> "HitPoints" >> _x >> "name");
            if (_hit > 0) then {_array set [count _array,[_selection,_hit]]};
            _object setHit ["_selection", _hit];
        } forEach _hitpoints;
        
        /* Get the Fuel of the Vehicle */
        _fuel = 0;
        if (_object isKindOf "AllVehicles") then {
            _fuel = fuel _object;
        };
        
        /* Get the Inventory of the Vehicle */
        _inventory = [
            getWeaponCargo _object,
            getMagazineCargo _object,
            getBackpackCargo _object
        ];
        
        /* Get the position of the Vehicle */
        _position     = getPosASL _object;
        if !(surfaceIsWater _position) then {
            _position =  ASLToATL _position;
        };
        _dir         = getDir _object;
        _worldspace = [_dir,_position];

        /* Delete the current Database entry */
        [_oldVehicleID,_oldVehicleUID,_player] call server_deleteObj;
        sleep 1;
        
        /* Generate a new UID */
        _vehicleUID = _worldspace call dayz_objectUID3;

        /* Write the new Database entry and LOG the action*/
        _key = format["CHILD:308:%1:%2:%3:%4:%5:%6:%7:%8:%9:",dayZ_instance, _class, _damage , _newKey, _worldspace, _inventory, _array, _fuel,_vehicleUID];
        _key call server_hiveWrite;
        diag_log ("HIVE: WRITE: VEHICLE KEY CHANGER: "+ str(_key)); 
        diag_log format["HIVE: WRITE: VEHICLE KEY CHANGER: Vehicle:%1 NewKey:%2 BY %3(%4)", _object, _newKeyName, (name _player), (getPlayerUID _player)];

        /* Get the ObjectID of the entry in the Database */
        _retry = 0;
        _gotcha = false;
        while {!_gotcha && _retry < 10} do {
            sleep 1;
            
            /* Send the request */
            _key = format["CHILD:388:%1:",_vehicleUID];
            diag_log ("HIVE: READ: VEHICLE KEY CHANGER: "+ str(_key));
            _result = _key call server_hiveReadWrite;
            _outcome = _result select 0;
            
            /* We got a answer */
            if (_outcome == "PASS") then {
                _vehicleID = _result select 1;
                
                /* Compare with old ObjectID to check if it not was deleted yet */
                if (_oldVehicleID == _vehicleID) then {
                    /* Not good lets give it another try */
                    _gotcha = false;
                    _retry = _retry + 1;
                    if (_retry > 8) then {
                        PVDZE_vkc_Success = false;
                        (owner _player) publicVariableClient "PVDZE_vkc_Success";
                    };
                } else {
                    /* GOTCHA! */
                    diag_log("CUSTOM: VEHICLE KEY CHANGER: Selected " + str(_vehicleID));
                    _gotcha = true;
                    _retry = 11;

                    _object setVariable ["VKC_disabled", 1,true];
                    _object setVariable ["VKC_claiming_disabled", 1,true];

                    [_object] spawn {
                        private ["_veh"];
                        _veh = _this select 0;

                        sleep 30;
                        _veh setVariable ["VKC_disabled", 0,true];
                        _veh setVariable ["VKC_claiming_disabled", 0,true];
                    };

                    PVDZE_vkc_Success = true;
                    (owner _player) publicVariableClient "PVDZE_vkc_Success";

                    /* Lock the Vehicle */
                    _object setVehicleLock "locked";
        
                    /* Save the ObjectID and ObjectUID to the vehicles variable and make it public */
                    _object setVariable ["ObjectID", _vehicleID, true];
                    _object setVariable ["ObjectUID", _vehicleUID, true];
        
                    /* Set the lastUpdate time to current */
                    _object setVariable ["lastUpdate",time,true];
        
                    /* Set the CharacterID to the new Key so we can access it! */
                    _object setVariable ["CharacterID", _newKey, true];
        
                    /* Some other variables you might need for disallow lift/tow/cargo locked Vehicles and such */
                    /* Uncomment if you use this */
        
                    /* R3F Arty and LOG block lift/tow/cargo locked vehicles*/
                    _object setVariable ["R3F_LOG_disabled",true,true];

                    /* =BTC= Logistic block lift locked vehicles*/
                    _object setVariable ["BTC_Cannot_Lift",true,true];
                };
            } else {
                /* Something went wrong on the request give it another try */
                diag_log("CUSTOM: VEHICLE KEY CHANGER: trying again to get id for: " + str(_vehicleUID));
                _gotcha = false;
                _retry = _retry + 1;
            };
        };
    };
    // TODO ----------------------

    _object setVariable ["lastUpdate",time,true];
    switch (_type) do {
        case "all": {
            call _object_position;
            call _object_inventory;
            call _object_damage;
            };
        case "position": {
            if (!(_object in needUpdate_objects)) then {
                //diag_log format["DEBUG Position: Added to NeedUpdate=%1",_object];
                needUpdate_objects set [count needUpdate_objects, _object];
            };
        };
        case "gear": {
            call _object_inventory;
                };
        case "damage": {
            if ( (time - _lastUpdate) > 5) then {
                call _object_damage;
            } else {
                if (!(_object in needUpdate_objects)) then {
                    //diag_log format["DEBUG Damage: Added to NeedUpdate=%1",_object];
                    needUpdate_objects set [count needUpdate_objects, _object];
                };
            };
        };
        case "killed": {
            call _object_killed;
        };
        case "repair": {
            call _object_damage;
        };
        case "vehiclekey": {
            _activatingPlayer = _this select 2;
            _vehicleClassname = _this select 3;
            _toKey = _this select 4;
            _toKeyName = _this select 5;
            _vehicle_ID = _this select 6;
            _vehicle_UID = _this select 7;
            [_activatingPlayer, _vehicleClassname, _toKey, _toKeyName, _vehicle_ID, _vehicle_UID] call _object_vehicleKey;;
        };
    };

    init

    Spoiler

    /*    
        For DayZ Epoch
        Addons Credits: Jetski Yanahui by Kol9yN, Zakat, Gerasimow9, YuraPetrov, zGuba, A.Karagod, IceBreakr, Sahbazz
    */
    startLoadingScreen ["","RscDisplayLoadCustom"];
    cutText ["","BLACK OUT"];
    enableSaving [false, false];

    //REALLY IMPORTANT VALUES
    dayZ_instance =    11;                    //The instance
    dayzHiveRequest = [];
    initialized = false;
    dayz_previousID = 0;

    //disable greeting menu 
    player setVariable ["BIS_noCoreConversations", true];
    //disable radio messages to be heard and shown in the left lower corner of the screen
    enableRadio true;
    // May prevent "how are you civillian?" messages from NPC
    enableSentences false;

    // DayZ Epoch config
    spawnShoremode = 1; // Default = 1 (on shore)
    spawnArea= 1500; // Default = 1500
    dayz_fullMoonNights = true; //If true nights wont be pitch black, moonlight will make it doable.
    MaxMineVeins = 300; // Max Ore Veins
    MaxAmmoBoxes = 50; // Max Ammo boxes
    DZE_R3F_WEIGHT = true;   //remove weight system
    DZE_HeliLift = false;     //epoch default heli lifting

    MaxVehicleLimit = 950; // Default = 50 
    MaxDynamicDebris = 500; // Default = 100  
    dayz_MapArea = 14000; // Default = 10000
    dayz_maxLocalZombies = 50; // Default = 30  Max number of zombies spawned per player.
    dayz_maxGlobalZombiesInit = 40;  // Starting global max zombie count, this will increase for each player within 400m (Default: 40)
    dayz_maxGlobalZombiesIncrease = 10; //This is the amount of global zombie limit increase per player within 400m (Default: 10)
    dayz_maxZeds = 500; // Total zombie server limit 
    dayz_zedSpawnVehCount = dayz_maxLocalZombies / 3; // Zombies spawn from a vehicle (if a player is in it)
    dayz_zedsAttackVehicles = true; //Zombies attack vehicles or not.
    DZE_PlayerZed = false; // Allows the player zo spawn as a zombie when he died of an infection.
    DZE_GodModeBase = false; // Buildables will be indestructable from the NEXT restart they were placed if set to true.

    /*
    Revamped instructions by Ree
    select 0 =  Locked vehicles Will not drop Loot ("Default: True") 
    select 1 = The Amount of Loot Piles around destroyed vehicles ("Default: 2") out of Max amount ___?  "Max Safe Amount" 
    select 2 =  Max additional loot piles On top of select 1 loot Piles  ("Default: 5")  out of Max amount ___?  "Max Safe Amount" 
    select 3 =  Radius around crash site to drop loot ("Default: 5")m out of Max amount ___?  "Max Safe Amount" 
    select 4 = Chance of gear being destroyed (Between 0-1, Ex: 0 = Never lost, 0.5 = Half lost, 1 = All lost)
    Default: DZE_crashLootConfig = [true,2,5,5,0];
    */
    DZE_crashLootConfig = [true,2,5,5,0.2]; 

    dayz_paraSpawn = false;

    dayz_minpos = -1; 
    dayz_maxpos = 16000;

    dayz_sellDistance_vehicle = 10;
    dayz_sellDistance_boat = 30;
    dayz_sellDistance_air = 40;

    dayz_maxAnimals = 20; // Default: 8
    dayz_tameDogs = true;
    DynamicVehicleDamageLow = 10; // Default: 0
    DynamicVehicleDamageHigh = 70; // Default: 100
    DynamicVehicleFuelLow = 10;
    DynamicVehicleFuelHigh = 70;

    DZE_checkNearbyRadius = 30; // Distance where the building limits will look for objects.
    DZE_BuildingLimit = 150; //Ammount of builables allowed in this distance.
    DZE_BuildOnRoads = false; // Default: False
    DZE_DamageBeforeMaint = 0.09; //Ammount of damage a builable must have before being able to be maintained.
    DZE_StaticConstructionCount = 0; //Ammount of animations you have to do before something gets build. ( always +1) so number 0 = 1 step, number 1 = 2 steps)
    DZE_PlotPole = [30,45]; //1st value is the radius of a plotpole, 2nd value is the radius where the next plot can be build.
    DZE_maintainRange = ((DZE_PlotPole select 0)+20); //If you maintain this is going to be the range where it maintains. Default: (plotradius + 20 meters)
    DZE_requireplot = 1; //1= Need a plot to build, 0 = you can build anywhere.

    //Vector building
    DZE_noRotate = []; //Objects that cannot be rotated. Ex: DZE_noRotate = ["ItemVault"] (NOTE: The objects magazine classname)
    DZE_vectorDegrees = [0.01, 0.1, 1, 5, 15, 45, 90];
    DZE_curDegree = 45; //Starting rotation angle. //Prefered any value in array above
    DZE_dirWithDegrees = true; //When rotating objects with Q&E, use the custom degrees

    DZE_HumanityTargetDistance = 25;
    DZE_LootSpawnTimer = 5; //default 10, time for loot to spawn
    DZE_vehicleAmmo = 1; //0 : amo in vehicles weapons will reset on restart. 1:ammo will save and respawn on restart.
    DZE_BackpackGuard = true; //If true, it closes the gear menu when close to another player in trader area's
    DZE_ForceNameTags = false; //If true it forces YES on the question to show name or not on players close to you.
    DZE_ForceNameTagsOff = true; //Forces the answer NO.
    DZE_ForceNameTagsInTrader = true; //Forces name tag on in trader zones.

    DZE_SelfTransfuse = true; // Default: False
    DZE_selfTransfuse_Values = [12000, 15, 300]; // default value (heal amount, infection chance, cooldown)

    DZE_APlotforLife = true;
    DZE_PlotOwnership = true;
    DZE_modularBuild = true;

    EpochEvents = [["any","any","any","any",30,"crash_spawner"],["any","any","any","any",0,"crash_spawner"],["any","any","any","any",15,"supply_drop"]];

    //Load in compiled functions
    call compile preprocessFileLineNumbers "custom\init\variables.sqf";                //Initilize the Variables (IMPORTANT: Must happen very early)
    call compile preprocessFileLineNumbers "custom\init\publicEH.sqf";                //Initilize the publicVariable event handlers
    call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf";    //Functions used by CLIENT for medical
    progressLoadingScreen 0.4;
    call compile preprocessFileLineNumbers "custom\init\compiles.sqf";                //Compile regular functions
    call compile preprocessFileLineNumbers "server_traders.sqf";                //Compile trader configs
    call compile preprocessFileLineNumbers "admintools\config.sqf";             // Epoch admin Tools config file
    call compile preprocessFileLineNumbers "admintools\variables.sqf";             // Epoch admin Tools variables
    progressLoadingScreen 1.0;

    "filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";

    if (isServer) then {
        call compile preprocessFileLineNumbers "\z\addons\dayz_server\missions\DayZ_Epoch_11.Chernarus\dynamic_vehicle2.0.sqf";
        //Compile vehicle configs
        
        // Add trader citys
        _nil = [] execVM "\z\addons\dayz_server\missions\DayZ_Epoch_11.Chernarus\mission.sqf";
        _serverMonitor =     [] execVM "\z\addons\dayz_server\system\server_monitor.sqf";  //original
    };

    if (!isDedicated) then {
        //Conduct map operations
        0 fadeSound 0;
        waitUntil {!isNil "dayz_loadScreenMsg"};
        dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
        
        //Run the player monitor
        _id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
        _playerMonitor =     [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";    
        
        execVM "custom\spawn\start.sqf"; //ESSV2
        
        //[] execVM "\z\addons\dayz_code\system\antihack.sqf"; //anti Hack
        
        // Epoch Admin Tools
        if ( !((getPlayerUID player) in AdminList) && !((getPlayerUID player) in ModList)) then 
        {
            [] execVM "admintools\antihack\antihack.sqf"; // Epoch Antihack with bypass
        };

        //Lights
        //[false,12] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
        
        execVM "custom\service_point\service_point.sqf"; //service points
        
        _nil = [] execVM "custom\VehicleKeyChanger\VehicleKeyChanger_init.sqf";
    };

    #include "\z\addons\dayz_code\system\REsec.sqf"

    execVM "\z\addons\dayz_code\external\DynamicWeatherEffects.sqf"; //Start Dynamic Weather

    #include "\z\addons\dayz_code\system\BIS_Effects\init.sqf"

    [] execVM "admintools\Activate.sqf"; // Epoch admin tools

    call compile preprocessFileLineNumbers "addons\UPSMON\scripts\Init_UPSMON.sqf"; // UPSMON

    call compile preprocessfile "addons\SHK_pos\shk_pos_init.sqf"; // SHK 

    [] execVM "addons\SARGE\SAR_AI_init.sqf"; // run SAR_AI

    call compile preprocessFileLineNumbers "addons\wmod\init.sqf"; //weaponmod
     

    and the latest error logs: server side (lots of sarge errors, i know, but runs flawlessly as far as i can tell. just cant run off with sarge vehicles, cant figure out the antihack part)

    Spoiler

    =====================================================================
    == C:\Users\Patriarch\Desktop\DayZer\Expansion\beta_oa\arma2oaserver.exe
    == "Expansion\beta_oa\arma2oaserver.exe"  -port=2302 "-config=instance_11_Chernarus\config.cfg" "-cfg=instance_11_Chernarus\basic.cfg" "-profiles=instance_11_Chernarus" -name=instance_11_Chernarus "-mod=@DayZ_Epoch;@DayZ_Epoch_Server;"
    =====================================================================
    Exe timestamp: 2016/03/16 13:03:13
    Current time:  2017/01/09 02:22:30

    Version 1.63.112555
    Item STR_EQUIP_NAME_41 listed twice
    Item STR_EQUIP_DESC_41 listed twice
    Updating base class ->NonStrategic, by ca\config.bin/CfgVehicles/HouseBase/
    Updating base class ->HouseBase, by ca\config.bin/CfgVehicles/Ruins/
    Updating base class ->DestructionEffects, by ca\config.bin/CfgVehicles/House/DestructionEffects/
    Updating base class ->FlagCarrierCore, by ca\ca_pmc\config.bin/CfgVehicles/FlagCarrier/
    Updating base class ->VehicleMagazine, by ca\weapons\config.bin/CfgMagazines/14Rnd_FFAR/
    Updating base class ->PistolCore, by ca\weapons\config.bin/cfgWeapons/Pistol/
    Updating base class ->LauncherCore, by ca\weapons\config.bin/cfgWeapons/RocketPods/
    Updating base class ->RocketPods, by ca\weapons\config.bin/cfgWeapons/FFARLauncher/
    Updating base class ->Default, by ca\weapons\config.bin/cfgWeapons/ItemCore/
    Updating base class ->Citizen, by ca\characters2\config.bin/CfgVehicles/Citizen1/
    Updating base class ->SkodaBase, by ca\wheeled\config.bin/CfgVehicles/car_sedan/
    Updating base class ->UH60_Base, by ca\air\config.bin/CfgVehicles/MH60S/
    Updating base class ->House, by ca\misc3\config.bin/CfgVehicles/Land_Fire/
    Updating base class ->House, by ca\misc3\config.bin/CfgVehicles/Land_A_tent/
    Updating base class ->Camp_base, by ca\misc3\config.bin/CfgVehicles/ACamp/
    Updating base class ->Car, by ca\wheeled2\lada\config.bin/CfgVehicles/Lada_base/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Small_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street1_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street2_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lampa_Ind_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_PowLines_Conc2L_EP1/
    Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl/
    Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_2/
    Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_3/
    Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind/
    Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind_zebr/
    Updating base class RscStandardDisplay->, by z\addons\dayz_code\config.bin/RscDisplayStart/
    Updating base class RscShortcutButton->RscShortcutButtonMain, by z\addons\dayz_code\config.bin/RscDisplayMain/controls/CA_Exit/
    Updating base class RscText->, by z\addons\dayz_code\config.bin/RscTitles/Default/
    Updating base class zZombie_Base->zZombie_new_Base, by z\addons\dayz_code\config.bin/CfgVehicles/z_villager1/
    Updating base class zZombie_Base->zZombie_new_Base, by z\addons\dayz_code\config.bin/CfgVehicles/z_worker1/
    Updating base class Soldier_Crew_PMC->Soldier_Bodyguard_M4_PMC, by z\addons\dayz_code\config.bin/CfgVehicles/SurvivorW2_DZ/
    Updating base class HighCommand->Logic, by z\addons\dayz_code\config.bin/CfgVehicles/HighCommandSubordinate/
    Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/Mi17_base/Turrets/MainTurret/ViewOptics/
    Updating base class HouseBase->, by z\addons\dayz_code\config.bin/CfgVehicles/House/
    Updating base class NonStrategic->BuiltItems, by z\addons\dayz_code\config.bin/CfgVehicles/Fort_RazorWire/
    Updating base class MeleeHatchet->MeleeWeapon, by z\addons\dayz_code\config.bin/CfgWeapons/MeleeCrowbar/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/29Rnd_30mm_AGS30/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/48Rnd_40mm_MK19/
    Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/2000Rnd_762x51_M134/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/100Rnd_127x99_M2/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/50Rnd_127x107_DSHKM/
    Updating base class Hatchet_Swing->Melee_Swing, by z\addons\dayz_code\config.bin/CfgMagazines/crowbar_swing/
    Updating base class CA_Magazine->Melee_Swing, by z\addons\dayz_code\config.bin/CfgMagazines/Hatchet_Swing/
    Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_1L2/
    Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_3I3/
    Updating base class ->Plane, by ca\air2\mv22\config.bin/CfgVehicles/MV22/
    Updating base class ViewOptics->, by ca\air2\uh1y\config.bin/CfgVehicles/UH1_Base/Turrets/MainTurret/ViewOptics/
    Updating base class ->HouseBase, by ca\misc_e\config.bin/CfgVehicles/House/
    Updating base class ->Land_CamoNet_EAST, by ca\misc_e\config.bin/CfgVehicles/Land_CamoNet_EAST_EP1/
    Updating base class ->Land_CamoNetB_EAST, by ca\misc_e\config.bin/CfgVehicles/Land_CamoNetB_EAST_EP1/
    Updating base class ->Sign_1L_Noentry, by ca\misc_e\config.bin/CfgVehicles/Sign_1L_Noentry_EP1/
    Updating base class ->Sign_circle, by ca\misc_e\config.bin/CfgVehicles/Helper_Base_EP1/
    Updating base class ->Rifle, by ca\weapons_baf\config.bin/cfgWeapons/BAF_AS50_scoped/
    Updating base class ->Rifle, by ca\weapons_e\config.bin/cfgWeapons/M60A4_EP1/
    Updating base class ->M249, by ca\weapons_e\config.bin/cfgWeapons/M249_EP1/
    Updating base class ->M249, by ca\weapons_e\config.bin/cfgWeapons/M249_m145_EP1/
    Updating base class ->m107, by ca\weapons_e\m107\config.bin/CfgWeapons/m107_TWS_EP1/
    Updating base class ->M240, by ca\weapons_e\m240\config.bin/CfgWeapons/m240_scoped_EP1/
    Updating base class ->V3S_Base, by ca\wheeled_e\v3s\config.bin/CfgVehicles/V3S_Base_EP1/
    Updating base class ->V3S_Base_EP1, by ca\wheeled_e\v3s\config.bin/CfgVehicles/V3S_Refuel_TK_GUE_EP1/
    Updating base class House->DZE_OpenHouse, by warehouse\config.bin/CfgVehicles/Land_Ind_Pec_03/
    Updating base class ->C130J_base, by ca\air_e\config.bin/CfgVehicles/C130J_US_EP1/
    Updating base class ->Helicopter, by ca\air_e\ah6j\config.bin/CfgVehicles/AH6_Base_EP1/
    Updating base class ->Plane, by ca\air_e\an2\config.bin/CfgVehicles/An2_Base_EP1/
    Updating base class ->CH47_base_EP1, by ca\air_e\ch47\config.bin/CfgVehicles/CH_47F_EP1/
    Updating base class ViewOptics->, by ca\air_e\uh1h\config.bin/CfgVehicles/UH1H_base/Turrets/MainTurret/ViewOptics/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_Crew_PMC/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_TL_PMC/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_Bodyguard_M4_PMC/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_Bodyguard_AA12_PMC/
    Updating base class ->BAF_Soldier_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_W/
    Updating base class ->BAF_Soldier_L_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_L_W/
    Updating base class ->BAF_Soldier_Officer_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_Officer_W/
    Updating base class ->BAF_Soldier_SniperH_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_SniperH_W/
    Updating base class ->M113Ambul_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113Ambul_UN_EP1/
    Updating base class ->M113_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113_UN_EP1/
    Updating base class ->M113Ambul_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113Ambul_TK_EP1/
    Updating base class ->M113_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113_TK_EP1/
    Updating base class ->Helicopter, by ca\air_d_baf\config.bin/CfgVehicles/BAF_Merlin_HC3_D/
    Updating base class ReammoBox->Small_items, by corepatch\corepatch_additionalobjects\config.cpp/CfgVehicles/CardboardBox/
    Updating base class CA_Magazine->4000Rnd_762x51_M134, by corepatch\corepatch_ccp_71142_cit_13602_25047\config.cpp/CfgMagazines/2000Rnd_762x51_M134/
     2:22:51 Server error: Player without identity Patriarch (id 1612948283)
     2:23:02 Strange convex component81 in zero_buildings\models\housev_3i3_i.p3d:geometryFire
     2:23:03 Strange convex component288 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component289 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component290 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component291 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component292 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component293 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component294 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component295 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component296 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component297 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component298 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component299 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component300 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component301 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component302 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component303 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component304 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component305 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component306 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component307 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component308 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component309 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component310 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component311 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component312 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component313 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component314 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component315 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component316 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component317 in warehouse\models\warehouse.p3d:geometry
     2:23:03 Strange convex component252 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component253 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component254 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component255 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component256 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component257 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component258 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component259 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component260 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component261 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component262 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component263 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component264 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component265 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component266 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component267 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component268 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component269 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component270 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component271 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component272 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component273 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component274 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component275 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component276 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component277 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component278 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component279 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component280 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component281 in warehouse\models\warehouse.p3d:geometryFire
     2:23:03 Strange convex component249 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component250 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component251 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component252 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component253 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component254 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component255 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component256 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component257 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component258 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component259 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component260 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component261 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component262 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component263 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component264 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component265 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component266 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component267 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component268 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component269 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component270 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component271 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component272 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component273 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component274 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component275 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component276 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component277 in warehouse\models\warehouse.p3d:geometryView
     2:23:03 Strange convex component278 in warehouse\models\warehouse.p3d:geometryView
     2:23:06 "DayZ Epoch: PRELOAD Functions\init [[<No group>:0 (FunctionsManager)],any]"
     2:23:06 "DayZ Epoch: MPframework inited"
     2:23:07 Warning Message: No challenge value was received from the master server.
     2:23:07 GameSpy QR2 error: 5, No challenge value was received from the master server.
     2:23:09 Strange convex component93 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component94 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component95 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component96 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component99 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component100 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component101 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component102 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component103 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component104 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component105 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component106 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component107 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component108 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component109 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component110 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component111 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component112 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component113 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component114 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component115 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component116 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component117 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component118 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component119 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component120 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component121 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component122 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component123 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component124 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component125 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component126 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component127 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component128 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component129 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component130 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component131 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component132 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component133 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:09 Strange convex component134 in zero_buildings\models\mil_house_i.p3d:geometryView
     2:23:22 "Admin Tools: config.sqf loaded"
     2:23:22 "Admin Tools: variables.sqf loaded"
     2:23:22 "Res3tting B!S effects..."
     2:23:22 Warning: z\addons\dayz_communityassets\models\compass.p3d:0 Error while trying to generate ST for points: 863, 853, 852
     2:23:24 "HIVE: Starting"
     2:23:24 "HIVE: trying to get objects"
     2:23:24 "HIVE: found 997 objects"
     2:23:24 "HIVE: Commence Object Streaming..."
     2:23:24 "HIVE: got 0 Epoch Objects and 997 Vehicles"
     2:23:24 No owner
     2:23:25 Cannot create non-ai vehicle GNT_C185C_DZ,
     2:23:25 No owner
     2:23:25 No owner
     2:23:25 No owner
     2:23:25 No owner
     2:23:25 No owner
     2:23:25 Cannot create non-ai vehicle GNT_C185C_DZ,
     2:23:25 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:25 No owner
     2:23:26 No owner
     2:23:26 No owner
     2:23:26 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:26 Cannot create non-ai vehicle Kamaz_DZE,
     2:23:26 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:26 Cannot create non-ai vehicle GNT_C185_DZ,
     2:23:26 Cannot create non-ai vehicle GNT_C185C_DZ,
     2:23:26 Cannot create non-ai vehicle BRDM2_AINS,
     2:23:26 Cannot create non-ai vehicle GNT_C185R_DZ,
     2:23:26 No owner
     2:23:26 No owner
     2:23:26 UH1Y_DZE: ObsTurret - unknown animation source ObsTurret
     2:23:26 UH1Y_DZE: ObsGun - unknown animation source ObsGun
     2:23:26 No owner
     2:23:27 No owner
     2:23:27 No owner
     2:23:27 No owner
     2:23:27 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:27 No owner
     2:23:27 Cannot create non-ai vehicle GNT_C185R_DZ,
     2:23:27 No owner
     2:23:28 AH6X_DZ: FLIR_turret - unknown animation source FLIR_turret
     2:23:28 AH6X_DZ: FLIR_gun - unknown animation source FLIR_gun
     2:23:28 No owner
     2:23:28 Cannot create non-ai vehicle GNT_C185_DZ,
     2:23:28 Cannot create non-ai vehicle Kamaz_DZE,
     2:23:28 No owner
     2:23:28 No owner
     2:23:28 Cannot create non-ai vehicle GNT_C185R_DZ,
     2:23:28 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 Cannot create non-ai vehicle AN2_2_DZ,
     2:23:29 No owner
     2:23:29 Cannot create non-ai vehicle Kamaz_DZE,
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:29 No owner
     2:23:30 No owner
     2:23:30 No owner
     2:23:30 No owner
     2:23:30 Cannot create non-ai vehicle GNT_C185_DZ,
     2:23:30 No owner
     2:23:30 No owner
     2:23:30 No owner
     2:23:31 No owner
     2:23:31 Cannot create non-ai vehicle Kamaz_DZE,
     2:23:32 No owner
     2:23:32 No owner
     2:23:32 Cannot create non-ai vehicle An2_2_TK_CIV_EP1_DZ,
     2:23:32 Cannot create non-ai vehicle AN2_2_DZ,
     2:23:32 Cannot create non-ai vehicle Kamaz_DZE,
     2:23:32 Cannot create non-ai vehicle GNT_C185C_DZ,
     2:23:32 Cannot create non-ai vehicle GNT_C185R_DZ,
     2:23:32 Cannot create non-ai vehicle GNT_C185_DZ,
     2:23:32 Cannot create non-ai vehicle GNT_C185C_DZ,
     2:23:32 Cannot create non-ai vehicle GNT_C185_DZ,
     2:23:32 Cannot create non-ai vehicle GNT_C185C_DZ,
     2:23:32 Cannot create non-ai vehicle AN2_2_DZ,
     2:23:32 No owner
     2:23:33 No owner
     2:23:33 Cannot create non-ai vehicle BRDM2_AINS,
     2:23:33 No owner
     2:23:33 No owner
     2:23:33 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:34 No owner
     2:23:34 Cannot create non-ai vehicle BRDM2_AINS,
     2:23:34 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:34 No owner
     2:23:35 Cannot create non-ai vehicle GNT_C185R_DZ,
     2:23:35 Cannot create non-ai vehicle GNT_C185_DZ,
     2:23:35 Cannot create non-ai vehicle GNT_C185R_DZ,
     2:23:35 No owner
     2:23:35 Cannot create non-ai vehicle GNT_C185R_DZ,
     2:23:35 Cannot create non-ai vehicle An2_2_TK_CIV_EP1_DZ,
     2:23:35 No owner
     2:23:35 Cannot create non-ai vehicle Kamaz_DZE,
     2:23:36 Cannot create non-ai vehicle BRDM2_AINS,
     2:23:36 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:36 Cannot create non-ai vehicle GNT_C185U_DZ,
     2:23:36 Cannot create non-ai vehicle BRDM2_AINS,
     2:23:36 Cannot create non-ai vehicle AN2_2_DZ,
     2:23:36 Cannot create non-ai vehicle GNT_C185C_DZ,
     2:23:36 Cannot create non-ai vehicle An2_2_TK_CIV_EP1_DZ,
     2:23:36 No owner
     2:23:36 No owner
     2:23:37 No owner
     2:23:37 "HIVE: Spawning # of Vehicles: 2"
     2:23:37 "HIVE: Spawning # of Debris: 500"
     2:23:37 "HIVE: Spawning # of Ammo Boxes: 50"
     2:23:37 "HIVE: Spawning # of Veins: 300"
     2:23:37 "Total Number of spawn locations 5"
     2:23:37 "\z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..."
     2:23:37 "--------------------------------"
     2:23:37 "SAR_AI - special UPSMON version started"
     2:23:37 WMOD v1.1.0: loading...
     2:23:44 No owner
     2:23:45 "PUBLISH: Attempt 306bc100# 1056336: mtvr_ammunition.p3d"
     2:23:45 "HIVE: WRITE: "CHILD:308:11:MtvrReammo:0:0:[43,[10436.2,2050.85,0.00078249]]:[]:[["wheel_1_1_steering",0.696378],["wheel_1_2_steering",0.297437],["wheel_1_3_steering",0.127969],["wheel_2_1_steering",0.186319],["wheel_2_2_steering",0.23652],["wheel_2_3_steering",0.656801],["palivo",0.15195],["wheel_1_4_steering",0.229183],["wheel_2_4_steering",0.29602],["motor",0.675087],["sklo predni P",0.492316],["sklo predni L",0.464023],["karoserie",0.504902],["glass1",0.50378],["glass2",0.363961],["glass3",0.547472],["glass4",0.553868]]:0.265148:10436220508043:""
     2:23:45 "DEBUG: Too many at [11182.2,6611.06]"
     2:23:49 "DEBUG: Too many at [3831.86,8929.58]"
     2:23:51 "DEBUG: Too many at [3718.87,3862.86]"
     2:24:26 "DEBUG VEIN: on road [4481.76,8831.88]"
     2:24:28 "DEBUG: Too many at [10601.4,9982.35]"
     2:24:37 "DEBUG VEIN: Too many objects at [3511.2,4543.74]"
     2:24:44 "DEBUG VEIN: on road [4471.03,8832.14]"
     2:24:46 "DEBUG VEIN: Too many objects at [4834,7459.44]"
     2:24:49 "DEBUG VEIN: Too many objects at [4836.76,7475.16]"
     2:24:49 "DEBUG VEIN: Too many objects at [4910.88,5061.37]"
     2:24:51 "DEBUG VEIN: Too many objects at [11098,8475.43]"
     2:24:54 "DEBUG VEIN: Too many objects at [3916.31,9806.42]"
     2:24:54 "DEBUG VEIN: Too many objects at [3381.33,5286.38]"
     2:24:56 "DEBUG VEIN: Too many objects at [4841.87,7469.27]"
     2:24:57 "DEBUG VEIN: Too many objects at [11097.2,8474.37]"
     2:24:57 "DEBUG VEIN: Too many objects at [5382,10656.6]"
     2:25:00 "DEBUG: Too many at [9164.39,3870.01]"
     2:25:02 "DEBUG VEIN: Too many objects at [4465.6,8080.39]"
     2:25:03 "----------------------------------------"
     2:25:03 "Starting SAR_AI version 1.5.0 on a dedicated Server"
     2:25:03 "----------------------------------------"
     2:25:03 "EPOCH EVENTS INIT"
     2:25:09 "DEBUG VEIN: Too many objects at [3360.92,5290.37]"
     2:25:09 "HIVE: WRITE: "CHILD:388:10436220508043:""
     2:25:09 "CUSTOM: Selected "3289""
     2:25:09 "DEBUG VEIN: Too many objects at [8516.28,13026.4]"
     2:25:09 "DEBUG VEIN: Too many objects at [6571.33,8620.55]"
     2:25:09 "DEBUG VEIN: Too many objects at [4274.55,10167.7]"
     2:25:09 "DEBUG VEIN: Too many objects at [12816.6,12747.5]"
     2:25:09 "DEBUG VEIN: Too many objects at [3091.72,6893.29]"
     2:25:09 "DEBUG VEIN: Too many objects at [6571.85,8613.19]"
     2:25:09 "DEBUG VEIN: Too many objects at [8779.21,9239.44]"
     2:25:09 "DEBUG VEIN: Too many objects at [3922.54,9799.85]"
     2:25:09 "DEBUG VEIN: Too many objects at [6569.04,8630.99]"
     2:25:09 "DEBUG VEIN: Too many objects at [6555.45,8191.15]"
     2:25:09 "DEBUG VEIN: Too many objects at [6970.58,9835.06]"
     2:25:09 "DEBUG VEIN: on road [3773.83,10095]"
     2:25:10 "DEBUG VEIN: Too many objects at [8487.28,8842.62]"
     2:25:10 "DEBUG VEIN: Too many objects at [5163.54,9117.51]"
     2:25:10 "DEBUG VEIN: Too many objects at [12823.9,12757.8]"
     2:25:10 "DEBUG VEIN: Too many objects at [4901.77,5068.3]"
     2:25:10 "DEBUG VEIN: Too many objects at [6499.08,6560.14]"
     2:25:10 "DEBUG VEIN: Too many objects at [6114.53,6948.28]"
     2:25:10 "TIME SYNC: Local Time set to [2013,8,3,13,25]"
     2:25:11 "PUBLISH: Created MtvrReammo with ID "10436220508043""
     2:25:12 "WAI: AI Config File Loaded"
     2:25:12 "Setting up SAR_AI for : chernarus"
     2:25:12 "SAR_AI: dynamic Area & Trigger definition Started"
     2:25:12 "WAI: Initialising missions"
     2:25:12 "WAI: AI Monitor Started"
     2:25:12 "WAI: 0 Active ground units"
     2:25:12 "WAI: 0 Active emplacement units"
     2:25:12 "WAI: 0 Active chopper patrol units (Crew)"
     2:25:12 "WAI: 0 Active vehicle patrol units (Crew)"
     2:25:16 "SAR_AI: Area & Trigger definition finished"
     2:25:16 "SAR_AI: Dynamic and static spawning Started"
     2:25:16 "SAR_AI: Dynamic spawning definition / adjustments started"
     2:25:22 No owner
     2:25:28 Warning: looped for animation: ca\anims\characters\data\anim\sdr\mov\erc\stp\non\non\amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end.rtm differs (looped now 0)! MoveName: amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end
     2:25:31 No owner
     2:25:33 "SAR_AI: Dynamic spawning definition / adjustments finished"
     2:25:33 "SAR_AI: Static spawning area definition started"
     2:25:33 "SAR_AI: Static spawning area definition finished"
     2:25:33 "SAR_AI: Static Spawning for Helicopter patrols started"
     2:25:34 "SAR_AI: Static Spawning for Helicopter patrols finished"
     2:25:34 "SAR_AI: Static Spawning for infantry patrols started"
     2:25:36 "SAR_AI: Static Spawning for infantry patrols finished"
     2:25:36 "SAR_AI: Static Spawning for vehicle patrols started"
     2:25:36 No owner
     2:25:36 No owner
     2:25:36 No owner
     2:25:37 No owner
     2:25:37 No owner
     2:25:37 No owner
     2:25:38 No owner
     2:25:38 "SAR_AI: Static Spawning for vehicle patrols finished"
     2:25:38 "SAR_AI: Dynamic and static spawning finished"
     2:25:54 Error in expression <ndex > 0 && {_i != _grpid} && {!(isnull _x)})  then {
    _dist1 = [getpos(_x),_flan>
     2:25:54   Error position: <_x)})  then {
    _dist1 = [getpos(_x),_flan>
     2:25:54   Error Undefined variable in expression: _x
     2:25:54 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1503
     2:25:55 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:25:55   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:25:55   Error Undefined variable in expression: _x
     2:25:55 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:25:55 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:25:55   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:25:55   Error Undefined variable in expression: _x
     2:25:55 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:25:56 Error in expression <ndex > 0 && {_i != _grpid} && {!(isnull _x)})  then {
    _dist1 = [getpos(_x),_flan>
     2:25:56   Error position: <_x)})  then {
    _dist1 = [getpos(_x),_flan>
     2:25:56   Error Undefined variable in expression: _x
     2:25:56 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1503
     2:25:58 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:25:58   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:25:58   Error Undefined variable in expression: _x
     2:25:58 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:25:58 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:25:58   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:25:58   Error Undefined variable in expression: _x
     2:25:58 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:25:59 Error in expression <ndex > 0 && {_i != _grpid} && {!(isnull _x)})  then {
    _dist1 = [getpos(_x),_flan>
     2:25:59   Error position: <_x)})  then {
    _dist1 = [getpos(_x),_flan>
     2:25:59   Error Undefined variable in expression: _x
     2:25:59 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1503
     2:26:01 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:01   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:01   Error Undefined variable in expression: _x
     2:26:01 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:01 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:01   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:01   Error Undefined variable in expression: _x
     2:26:01 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:01 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:01   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:01   Error Undefined variable in expression: _x
     2:26:01 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:01 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:01   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:01   Error Undefined variable in expression: _x
     2:26:01 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:04 Error in expression <KRON_UPS_>
     2:26:04   Error position: <KRON_UPS_>
     2:26:04   Error Undefined variable in expression: kron_ups_
     2:26:04 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:04   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:04   Error Undefined variable in expression: _cont
     2:26:04 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:04 Error in expression <KRON_UPS_>
     2:26:04   Error position: <KRON_UPS_>
     2:26:04   Error Undefined variable in expression: kron_ups_
     2:26:04 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:04   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:04   Error Undefined variable in expression: _cont
     2:26:04 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:08 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:08   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:08   Error Undefined variable in expression: _x
     2:26:08 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:08 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:08   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:08   Error Undefined variable in expression: _x
     2:26:08 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:11 Error in expression <KRON_UPS_>
     2:26:11   Error position: <KRON_UPS_>
     2:26:11   Error Undefined variable in expression: kron_ups_
     2:26:11 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:11   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:11   Error Undefined variable in expression: _cont
     2:26:11 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:14 "WAI: 0 Active ground units"
     2:26:14 "WAI: 0 Active emplacement units"
     2:26:14 "WAI: 0 Active chopper patrol units (Crew)"
     2:26:14 "WAI: 0 Active vehicle patrol units (Crew)"
     2:26:16 Error in expression <KRON_UPS_>
     2:26:16   Error position: <KRON_UPS_>
     2:26:16   Error Undefined variable in expression: kron_ups_
     2:26:16 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:16   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:16   Error Undefined variable in expression: _cont
     2:26:16 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:16 Error in expression <KRON_UPS_>
     2:26:16   Error position: <KRON_UPS_>
     2:26:16   Error Undefined variable in expression: kron_ups_
     2:26:16 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:16   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:16   Error Undefined variable in expression: _cont
     2:26:16 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:23 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:23   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:23   Error Undefined variable in expression: _x
     2:26:23 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:23 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:23   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:23   Error Undefined variable in expression: _x
     2:26:23 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:28 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:28   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:28   Error Undefined variable in expression: _x
     2:26:28 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:28 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:28   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:28   Error Undefined variable in expression: _x
     2:26:28 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:29 Error in expression <KRON_UPS_>
     2:26:29   Error position: <KRON_UPS_>
     2:26:29   Error Undefined variable in expression: kron_ups_
     2:26:29 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:29   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:29   Error Undefined variable in expression: _cont
     2:26:29 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:30 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:30   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:30   Error Undefined variable in expression: _x
     2:26:30 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:30 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:30   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:30   Error Undefined variable in expression: _x
     2:26:30 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:31 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:31   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:31   Error Undefined variable in expression: _x
     2:26:31 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:31 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:31   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:31   Error Undefined variable in expression: _x
     2:26:31 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:34 Error in expression <KRON_UPS_>
     2:26:34   Error position: <KRON_UPS_>
     2:26:34   Error Undefined variable in expression: kron_ups_
     2:26:34 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:34   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:34   Error Undefined variable in expression: _cont
     2:26:34 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:35 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:35   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:35   Error Undefined variable in expression: _x
     2:26:35 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:35 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:35   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:35   Error Undefined variable in expression: _x
     2:26:35 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:37 Error in expression <KRON_UPS_>
     2:26:37   Error position: <KRON_UPS_>
     2:26:37   Error Undefined variable in expression: kron_ups_
     2:26:37 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:37   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:37   Error Undefined variable in expression: _cont
     2:26:37 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:39 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:39   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:39   Error Undefined variable in expression: _x
     2:26:39 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:39 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:39   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:39   Error Undefined variable in expression: _x
     2:26:39 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:40 Warning: z\addons\dayz_communityassets\models\razor.p3d:0 Error while trying to generate ST for points: 214, 349, 208
     2:26:42 Error in expression <KRON_UPS_>
     2:26:42   Error position: <KRON_UPS_>
     2:26:42   Error Undefined variable in expression: kron_ups_
     2:26:42 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:42   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:42   Error Undefined variable in expression: _cont
     2:26:42 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:44 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:44   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:44   Error Undefined variable in expression: _x
     2:26:44 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:44 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:44   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:44   Error Undefined variable in expression: _x
     2:26:44 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:53 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:53   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:53   Error Undefined variable in expression: _x
     2:26:53 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:53 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:53   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:53   Error Undefined variable in expression: _x
     2:26:53 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:54 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:54   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:54   Error Undefined variable in expression: _x
     2:26:54 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:54 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:54   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:54   Error Undefined variable in expression: _x
     2:26:54 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:54 Error in expression <KRON_UPS_>
     2:26:54   Error position: <KRON_UPS_>
     2:26:54   Error Undefined variable in expression: kron_ups_
     2:26:54 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:54   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:54   Error Undefined variable in expression: _cont
     2:26:54 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:26:57 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:57   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:26:57   Error Undefined variable in expression: _x
     2:26:57 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:26:57 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:57   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:26:57   Error Undefined variable in expression: _x
     2:26:57 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:26:57 Error in expression <KRON_UPS_>
     2:26:57   Error position: <KRON_UPS_>
     2:26:57   Error Undefined variable in expression: kron_ups_
     2:26:57 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:57   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:26:57   Error Undefined variable in expression: _cont
     2:26:57 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:27:00 Error in expression <KRON_UPS_>
     2:27:00   Error position: <KRON_UPS_>
     2:27:00   Error Undefined variable in expression: kron_ups_
     2:27:00 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:00   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:00   Error Undefined variable in expression: _cont
     2:27:00 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:27:03 "get: STRING (76561198065281079), sent: STRING (76561198065281079)"
     2:27:03 "DISCONNECT: Patriarch (76561198065281079) Object: B 1-1-B:1 (Patriarch) REMOTE, _characterID: 14 at loc [6079.09,7845.73,0.00164795]"
     2:27:03 Client: Remote object 3:5 not found
     2:27:03 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:03   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:03   Error Undefined variable in expression: _x
     2:27:03 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:27:03 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:03   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:03   Error Undefined variable in expression: _x
     2:27:03 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:27:04 Warning: Cleanup player - person 3:4 not found
     2:27:07 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:07   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:07   Error Undefined variable in expression: _x
     2:27:07 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:27:07 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:07   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:07   Error Undefined variable in expression: _x
     2:27:07 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:27:07 Error in expression <KRON_UPS_>
     2:27:07   Error position: <KRON_UPS_>
     2:27:07   Error Undefined variable in expression: kron_ups_
     2:27:07 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:07   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:07   Error Undefined variable in expression: _cont
     2:27:07 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:27:10 Error in expression <dist, _atdist]};

    [_npc,"defend"] spawn SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:10   Error position: <SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:10   Error Undefined variable in expression: sar_circle
     2:27:10 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\UPSMON\!R\R_functions.sqf, line 225
     2:27:10 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:10   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:10   Error Undefined variable in expression: _x
     2:27:10 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:27:10 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:10   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:10   Error Undefined variable in expression: _x
     2:27:10 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:27:11 Error in expression <dist, _atdist]};

    [_npc,"defend"] spawn SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:11   Error position: <SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:11   Error Undefined variable in expression: sar_circle
     2:27:11 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\UPSMON\!R\R_functions.sqf, line 225
     2:27:12 Error in expression <dist, _atdist]};

    [_npc,"defend"] spawn SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:12   Error position: <SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:12   Error Undefined variable in expression: sar_circle
     2:27:12 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\UPSMON\!R\R_functions.sqf, line 225
     2:27:13 Error in expression <dist, _atdist]};

    [_npc,"defend"] spawn SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:13   Error position: <SAR_circle;


    _x setVariable ["UPSMON_gr>
     2:27:13   Error Undefined variable in expression: sar_circle
     2:27:13 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\UPSMON\!R\R_functions.sqf, line 225
     2:27:14 "WAI: 0 Active ground units"
     2:27:14 "WAI: 0 Active emplacement units"
     2:27:14 "WAI: 0 Active chopper patrol units (Crew)"
     2:27:14 "WAI: 0 Active vehicle patrol units (Crew)"
     2:27:15 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:15   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:15   Error Undefined variable in expression: _x
     2:27:15 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:27:15 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:15   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:15   Error Undefined variable in expression: _x
     2:27:15 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:27:18 Error in expression <KRON_UPS_>
     2:27:18   Error position: <KRON_UPS_>
     2:27:18   Error Undefined variable in expression: kron_ups_
     2:27:18 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:18   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:18   Error Undefined variable in expression: _cont
     2:27:18 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:27:19 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:19   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:19   Error Undefined variable in expression: _x
     2:27:19 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:27:19 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:19   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:19   Error Undefined variable in expression: _x
     2:27:19 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     2:27:20 Error in expression <KRON_UPS_>
     2:27:20   Error position: <KRON_UPS_>
     2:27:20   Error Undefined variable in expression: kron_ups_
     2:27:20 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:20   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:20   Error Undefined variable in expression: _cont
     2:27:20 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:27:22 Error in expression <KRON_UPS_>
     2:27:22   Error position: <KRON_UPS_>
     2:27:22   Error Undefined variable in expression: kron_ups_
     2:27:22 Error in expression <ormat ["KRON_UPS_%1",_npcname]];};

    if (_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:22   Error position: <_cont==0) then { 
    _exit=true;
    };

    if ((_>
     2:27:22   Error Undefined variable in expression: _cont
     2:27:22 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 2496
     2:27:23 Error in expression <=0 && {_i != _grpid} &&  {format ["%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:23   Error position: <_x] != "[0,0]"}) then {
    _dist1 = [_x,_fl>
     2:27:23   Error Undefined variable in expression: _x
     2:27:23 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1483
     2:27:23 Error in expression <"%1", _x] != "[0,0]"}) then {
    _dist1 = [_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:23   Error position: <_x,_flankPos] call KRON_distancePosSqr;
    >
     2:27:23   Error Undefined variable in expression: _x
     2:27:23 File mpmissions\DayZ_Epoch_11.Chernarus\addons\UPSMON\scripts\upsmon.sqf, line 1484
     

    and client side (and more sarge errors)

    Spoiler

    =====================================================================
    == D:\Program Files (x86)\Steam\steamapps\common\Arma 2 Operation Arrowhead\ArmA2OA.exe
    == "D:\Program Files (x86)\Steam\steamapps\common\Arma 2 Operation Arrowhead\ArmA2OA.exe" -nosplash "-mod=D:\Program Files (x86)\Steam\SteamApps\common\Arma 2;EXPANSION;ca" -mod=@DayZ;@DayZ_Epoch; -skipIntro -world=Empty -maxMem=2047 -malloc=system -connect=127.0.0.1
    =====================================================================
    Exe timestamp: 2017/01/03 17:55:48
    Current time:  2017/01/09 02:22:29

    Version 1.63.131129
    Item STR_EQUIP_NAME_41 listed twice
    Item STR_EQUIP_DESC_41 listed twice
    Updating base class ->NonStrategic, by ca\config.bin/CfgVehicles/HouseBase/
    Updating base class ->HouseBase, by ca\config.bin/CfgVehicles/Ruins/
    Updating base class ->DestructionEffects, by ca\config.bin/CfgVehicles/House/DestructionEffects/
    Updating base class ->FlagCarrierCore, by ca\ca_pmc\config.bin/CfgVehicles/FlagCarrier/
    Updating base class ->VehicleMagazine, by ca\weapons\config.bin/CfgMagazines/14Rnd_FFAR/
    Updating base class ->PistolCore, by ca\weapons\config.bin/cfgWeapons/Pistol/
    Updating base class ->LauncherCore, by ca\weapons\config.bin/cfgWeapons/RocketPods/
    Updating base class ->RocketPods, by ca\weapons\config.bin/cfgWeapons/FFARLauncher/
    Updating base class ->Default, by ca\weapons\config.bin/cfgWeapons/ItemCore/
    Updating base class ->Citizen, by ca\characters2\config.bin/CfgVehicles/Citizen1/
    Updating base class ->SkodaBase, by ca\wheeled\config.bin/CfgVehicles/car_sedan/
    Updating base class ->UH60_Base, by ca\air\config.bin/CfgVehicles/MH60S/
    Updating base class ->House, by ca\misc3\config.bin/CfgVehicles/Land_Fire/
    Updating base class ->House, by ca\misc3\config.bin/CfgVehicles/Land_A_tent/
    Updating base class ->Camp_base, by ca\misc3\config.bin/CfgVehicles/ACamp/
    Updating base class ->Car, by ca\wheeled2\lada\config.bin/CfgVehicles/Lada_base/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Small_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street1_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street2_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lampa_Ind_EP1/
    Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_PowLines_Conc2L_EP1/
    Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl/
    Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_2/
    Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_3/
    Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind/
    Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind_zebr/
    Updating base class RscStandardDisplay->, by z\addons\dayz_code\config.bin/RscDisplayStart/
    Updating base class RscShortcutButton->RscShortcutButtonMain, by z\addons\dayz_code\config.bin/RscDisplayMain/controls/CA_Exit/
    Updating base class RscText->, by z\addons\dayz_code\config.bin/RscTitles/Default/
    Updating base class zZombie_Base->zZombie_new_Base, by z\addons\dayz_code\config.bin/CfgVehicles/z_villager1/
    Updating base class zZombie_Base->zZombie_new_Base, by z\addons\dayz_code\config.bin/CfgVehicles/z_worker1/
    Updating base class Soldier_Crew_PMC->Soldier_Bodyguard_M4_PMC, by z\addons\dayz_code\config.bin/CfgVehicles/SurvivorW2_DZ/
    Updating base class HighCommand->Logic, by z\addons\dayz_code\config.bin/CfgVehicles/HighCommandSubordinate/
    Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/Mi17_base/Turrets/MainTurret/ViewOptics/
    Updating base class HouseBase->, by z\addons\dayz_code\config.bin/CfgVehicles/House/
    Updating base class NonStrategic->BuiltItems, by z\addons\dayz_code\config.bin/CfgVehicles/Fort_RazorWire/
    Updating base class MeleeHatchet->MeleeWeapon, by z\addons\dayz_code\config.bin/CfgWeapons/MeleeCrowbar/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/29Rnd_30mm_AGS30/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/48Rnd_40mm_MK19/
    Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/2000Rnd_762x51_M134/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/100Rnd_127x99_M2/
    Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/50Rnd_127x107_DSHKM/
    Updating base class Hatchet_Swing->Melee_Swing, by z\addons\dayz_code\config.bin/CfgMagazines/crowbar_swing/
    Updating base class CA_Magazine->Melee_Swing, by z\addons\dayz_code\config.bin/CfgMagazines/Hatchet_Swing/
    Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_1L2/
    Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_3I3/
    Updating base class ->Plane, by ca\air2\mv22\config.bin/CfgVehicles/MV22/
    Updating base class ViewOptics->, by ca\air2\uh1y\config.bin/CfgVehicles/UH1_Base/Turrets/MainTurret/ViewOptics/
    Updating base class ->HouseBase, by ca\misc_e\config.bin/CfgVehicles/House/
    Updating base class ->Land_CamoNet_EAST, by ca\misc_e\config.bin/CfgVehicles/Land_CamoNet_EAST_EP1/
    Updating base class ->Land_CamoNetB_EAST, by ca\misc_e\config.bin/CfgVehicles/Land_CamoNetB_EAST_EP1/
    Updating base class ->Sign_1L_Noentry, by ca\misc_e\config.bin/CfgVehicles/Sign_1L_Noentry_EP1/
    Updating base class ->Sign_circle, by ca\misc_e\config.bin/CfgVehicles/Helper_Base_EP1/
    Updating base class ->Rifle, by ca\weapons_baf\config.bin/cfgWeapons/BAF_AS50_scoped/
    Updating base class ->Rifle, by ca\weapons_e\config.bin/cfgWeapons/M60A4_EP1/
    Updating base class ->M249, by ca\weapons_e\config.bin/cfgWeapons/M249_EP1/
    Updating base class ->M249, by ca\weapons_e\config.bin/cfgWeapons/M249_m145_EP1/
    Updating base class ->m107, by ca\weapons_e\m107\config.bin/CfgWeapons/m107_TWS_EP1/
    Updating base class ->M240, by ca\weapons_e\m240\config.bin/CfgWeapons/m240_scoped_EP1/
    Updating base class ->V3S_Base, by ca\wheeled_e\v3s\config.bin/CfgVehicles/V3S_Base_EP1/
    Updating base class ->V3S_Base_EP1, by ca\wheeled_e\v3s\config.bin/CfgVehicles/V3S_Refuel_TK_GUE_EP1/
    Updating base class House->DZE_OpenHouse, by warehouse\config.bin/CfgVehicles/Land_Ind_Pec_03/
    Updating base class ->C130J_base, by ca\air_e\config.bin/CfgVehicles/C130J_US_EP1/
    Updating base class ->Helicopter, by ca\air_e\ah6j\config.bin/CfgVehicles/AH6_Base_EP1/
    Updating base class ->Plane, by ca\air_e\an2\config.bin/CfgVehicles/An2_Base_EP1/
    Updating base class ->CH47_base_EP1, by ca\air_e\ch47\config.bin/CfgVehicles/CH_47F_EP1/
    Updating base class ViewOptics->, by ca\air_e\uh1h\config.bin/CfgVehicles/UH1H_base/Turrets/MainTurret/ViewOptics/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_Crew_PMC/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_TL_PMC/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_Bodyguard_M4_PMC/
    Updating base class ->Soldier_Base_PMC, by ca\characters_pmc\config.bin/cfgVehicles/Soldier_Bodyguard_AA12_PMC/
    Updating base class ->BAF_Soldier_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_W/
    Updating base class ->BAF_Soldier_L_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_L_W/
    Updating base class ->BAF_Soldier_Officer_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_Officer_W/
    Updating base class ->BAF_Soldier_SniperH_MTP, by ca\characters_w_baf\config.bin/CfgVehicles/BAF_Soldier_SniperH_W/
    Updating base class ->M113Ambul_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113Ambul_UN_EP1/
    Updating base class ->M113_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113_UN_EP1/
    Updating base class ->M113Ambul_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113Ambul_TK_EP1/
    Updating base class ->M113_Base, by ca\tracked_e\m113\config.bin/CfgVehicles/M113_TK_EP1/
    Updating base class ->Helicopter, by ca\air_d_baf\config.bin/CfgVehicles/BAF_Merlin_HC3_D/
    Updating base class ReammoBox->Small_items, by corepatch\corepatch_additionalobjects\config.cpp/CfgVehicles/CardboardBox/
    Updating base class CA_Magazine->4000Rnd_762x51_M134, by corepatch\corepatch_ccp_71142_cit_13602_25047\config.cpp/CfgMagazines/2000Rnd_762x51_M134/
    Warning Message: Picture z\addons\dayz_code\gui\mod.paa not found
    Strange convex component81 in zero_buildings\models\housev_3i3_i.p3d:geometryFire
    Strange convex component288 in warehouse\models\warehouse.p3d:geometry
    Strange convex component289 in warehouse\models\warehouse.p3d:geometry
    Strange convex component290 in warehouse\models\warehouse.p3d:geometry
    Strange convex component291 in warehouse\models\warehouse.p3d:geometry
    Strange convex component292 in warehouse\models\warehouse.p3d:geometry
    Strange convex component293 in warehouse\models\warehouse.p3d:geometry
    Strange convex component294 in warehouse\models\warehouse.p3d:geometry
    Strange convex component295 in warehouse\models\warehouse.p3d:geometry
    Strange convex component296 in warehouse\models\warehouse.p3d:geometry
    Strange convex component297 in warehouse\models\warehouse.p3d:geometry
    Strange convex component298 in warehouse\models\warehouse.p3d:geometry
    Strange convex component299 in warehouse\models\warehouse.p3d:geometry
    Strange convex component300 in warehouse\models\warehouse.p3d:geometry
    Strange convex component301 in warehouse\models\warehouse.p3d:geometry
    Strange convex component302 in warehouse\models\warehouse.p3d:geometry
    Strange convex component303 in warehouse\models\warehouse.p3d:geometry
    Strange convex component304 in warehouse\models\warehouse.p3d:geometry
    Strange convex component305 in warehouse\models\warehouse.p3d:geometry
    Strange convex component306 in warehouse\models\warehouse.p3d:geometry
    Strange convex component307 in warehouse\models\warehouse.p3d:geometry
    Strange convex component308 in warehouse\models\warehouse.p3d:geometry
    Strange convex component309 in warehouse\models\warehouse.p3d:geometry
    Strange convex component310 in warehouse\models\warehouse.p3d:geometry
    Strange convex component311 in warehouse\models\warehouse.p3d:geometry
    Strange convex component312 in warehouse\models\warehouse.p3d:geometry
    Strange convex component313 in warehouse\models\warehouse.p3d:geometry
    Strange convex component314 in warehouse\models\warehouse.p3d:geometry
    Strange convex component315 in warehouse\models\warehouse.p3d:geometry
    Strange convex component316 in warehouse\models\warehouse.p3d:geometry
    Strange convex component317 in warehouse\models\warehouse.p3d:geometry
    Strange convex component252 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component253 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component254 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component255 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component256 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component257 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component258 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component259 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component260 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component261 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component262 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component263 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component264 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component265 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component266 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component267 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component268 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component269 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component270 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component271 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component272 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component273 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component274 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component275 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component276 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component277 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component278 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component279 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component280 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component281 in warehouse\models\warehouse.p3d:geometryFire
    Strange convex component249 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component250 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component251 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component252 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component253 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component254 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component255 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component256 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component257 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component258 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component259 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component260 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component261 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component262 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component263 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component264 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component265 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component266 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component267 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component268 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component269 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component270 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component271 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component272 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component273 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component274 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component275 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component276 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component277 in warehouse\models\warehouse.p3d:geometryView
    Strange convex component278 in warehouse\models\warehouse.p3d:geometryView
    "DayZ Epoch: PRELOAD Functions\init [[L 1-1-A:1 REMOTE],any]"
    "DayZ Epoch: MPframework inited"
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    UH1Y_DZE: ObsTurret - unknown animation source ObsTurret
    UH1Y_DZE: ObsGun - unknown animation source ObsGun
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    AH6X_DZ: FLIR_turret - unknown animation source FLIR_turret
    AH6X_DZ: FLIR_gun - unknown animation source FLIR_gun
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    No owner
    Fresnel k must be >0, given n=0.8,k=0
    Fresnel k must be >0, given n=0.8,k=0
    "Admin Tools: config.sqf loaded"
    "Admin Tools: variables.sqf loaded"
    "DEBUG: loadscreen guard started."
    "Res3tting B!S effects..."
    Warnings in z\addons\dayz_communityassets\models\map.p3d:shadow(1000)
    Warning: z\addons\dayz_communityassets\models\compass.p3d:0 Error while trying to generate ST for points: 863, 853, 852
    WMOD v1.1.0: loading...
    CLICK ACTIONS: loading...
    "\z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..."
    "PLAYER RESULT: true"
    Strange convex component93 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component94 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component95 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component96 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component99 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component100 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component101 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component102 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component103 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component104 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component105 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component106 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component107 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component108 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component109 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component110 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component111 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component112 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component113 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component114 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component115 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component116 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component117 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component118 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component119 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component120 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component121 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component122 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component123 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component124 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component125 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component126 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component127 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component128 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component129 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component130 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component131 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component132 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component133 in zero_buildings\models\mil_house_i.p3d:geometryView
    Strange convex component134 in zero_buildings\models\mil_house_i.p3d:geometryView
    "WARNING illegal RE raddActioncode with args:[any,R 1-1-A:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == resistance) && ('ItemBloodbag' in magazines _this)"]"
    "PLOGIN: Login loop completed!"
    Error in expression <= -1;
    };

    } else {

    player removeAction s_player_claimKey;
    s_player_claimKey = ->
      Error position: <s_player_claimKey;
    s_player_claimKey = ->
      Error Undefined variable in expression: s_player_claimkey
    File mpmissions\__CUR_MP.Chernarus\custom\VehicleKeyChanger\VehicleKeyChanger_init.sqf, line 162
    Warning: looped for animation: ca\anims\characters\data\anim\sdr\mov\erc\stp\non\non\amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end.rtm differs (looped now 0)! MoveName: amovpercmstpsnonwnondnon_amovpercmstpsraswpstdnon_end
    "Admin Tools: FunctionKeys.sqf Loaded"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,true]"
    "WARNING illegal RE raddActioncode with args:[any,R 1-1-B:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == resistance) && ('ItemBloodbag' in magazines _this)"]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,true]"
    Warnings in z\addons\dayz_communityassets\models\2shells_slugshot.p3d:shadow(1000)
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE raddActioncode with args:[any,R 1-1-L:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == resistance) && ('ItemBloodbag' in magazines _this)"]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,true]"
    "WARNING illegal RE raddActioncode with args:[any,R 1-1-M:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == resistance) && ('ItemBloodbag' in magazines _this)"]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,true]"
    "WARNING illegal RE raddActioncode with args:[any,R 1-2-A:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == resistance) && ('ItemBloodbag' in magazines _this)"]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE raddActioncode with args:[any,O 1-1-C:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == resistance) && ('ItemBloodbag' in magazines _this)"]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:8 REMOTE,true]"
    "WARNING illegal RE raddActioncode with args:[any,O 1-1-D:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == resistance) && ('ItemBloodbag' in magazines _this)"]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:9 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:10 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:8 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:9 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:4 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:5 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:6 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:7 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:8 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    2nd UV set needed, but not defined in ReportStack not available
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "Admin Tools: NumberKeys.sqf Loaded"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,false]"
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,false]"
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,false]"
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-I:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:8 REMOTE,false]"
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:1 REMOTE,true]"
    "WARNING illegal RE raddActioncode with args:[any,R 1-2-D:1 REMOTE,"Give me a blood transfusion!","addons\SARGE\SAR_interact.sqf","",1,true,true,"","(side _this == west) && (side _target == SAR_AI_friendly_side) && ('ItemBloodbag' in magazines _this)"]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:1 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:2 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:3 REMOTE,true]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    Warning: z\addons\dayz_communityassets\models\razor.p3d:0 Error while trying to generate ST for points: 214, 349, 208
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    Warnings in z\addons\dayz_communityassets\models\can_unlabeled_clean_full.p3d:shadow(1000)
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-E:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-B:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-C:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-K:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-M:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-G:3 REMOTE,false]"
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    Error in expression <eof _aikiller;

    if (!(_aikiller_type in SAR_heli_type) && alive _aikiller && !(">
      Error position: <SAR_heli_type) && alive _aikiller && !(">
      Error Undefined variable in expression: sar_heli_type
    File mpmissions\__CUR_MP.Chernarus\addons\SARGE\SAR_aihit.sqf, line 36
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-A:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-2-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-H:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-C:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-L:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-E:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-A:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-A:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:7 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:8 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:9 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,O 1-1-D:10 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:3 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:4 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:5 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-B:6 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:1 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:2 REMOTE,false]"
    "WARNING illegal RE rhideObjectcode with args:[any,R 1-1-F:3 REMOTE,false]"
     

     

  3. was this built to depend on the deployanything mod? This is the error i am getting after intalling the weaponmod...

    Spoiler

    Error in expression <ssing!";
    };
    if (DZE_CLICK_ACTIONS_BUILD != DZE_CRV_DEPLOYABLE) exitWith {
    diag_l>
      Error position: <!= DZE_CRV_DEPLOYABLE) exitWith {
    diag_l>
      Error !=: Type Bool, expected Number,String,Object,Side,Group,Text,Config entry,Display (dialog),Control,Team member,Task,Location
    File mpmissions\__CUR_MP.Chernarus\custom\addons\wmod\init.sqf, line 12

    what would i need to do to get weaponmod working without it? OR a link to a 1.0.5.1 compatible version of deployanything?

  4. On 12/29/2016 at 9:05 PM, Brody said:

    If i would want to setup a full militarized server with m1tusk and stuff like that

    does that have any class name change as far as anybody knows ?

    Im curious to this as well, ive populated dynamic_vehicles.sqf will all the vehicles id like to see and near as i can tell, only the original list populates, completely skipping all my added entries. It might be that I made an additional entry for the _Ratio vars without adding it somewhere? idk, kinda just jumped in and threw some sh$t together and still not working

    heres a spoiler of my adjustments (just the tip, i assure you, browsing through navi, only the original spawns will show. inlcuding fresh server with this file in or restarting server and wiping the object database) are the vehicles generated from a list elsewhere?

    Spoiler

    _Ratio1 = 1;
    _Ratio2 = 2;
    _Ratio3 = 3;
    _Ratio4 = 4;
    if (MaxVehicleLimit > 300) then {
        _Ratio1 = round(MaxVehicleLimit * 0.0034);
        _Ratio2 = round(MaxVehicleLimit * 0.0067);
        _Ratio3 = round(MaxVehicleLimit * 0.01);
        _Ratio4 = round(MaxVehicleLimit * 0.0025);
    };
    AllowedVehiclesList = [
        ["A10",_Ratio4],
        ["AAV",_Ratio4],
        ["AH1Z",_Ratio4],
        ["AH64D_EP1",_Ratio4],
        ["AH64D_Sidewinders",_Ratio4],
        ["AH6J_EP1",_Ratio4],
        ["AH6X_DZ",_Ratio3],
        ["AN2_DZ",_Ratio1], //Green
        ["AN2_2_DZ",_Ratio1], //Red and white
        ["An2_2_TK_CIV_EP1_DZ",_Ratio1], //Green and white
        ["ArmoredSUV_PMC_DZE",_Ratio1],
        ["ATV_CZ_EP1",_Ratio3],
        ["ATV_US_EP1",_Ratio3],
        ["AV8B",_Ratio4],
        ["AV8B2",_Ratio4],
        ["AW159_Lynx_BAF",_Ratio4],
        ["BAF_Jackal2_GMG_W",_Ratio4],
        ["BAF_Jackal2_L2A1_W",_Ratio4],
        ["BAF_Merlin_HC3_D",_Ratio4],

     

  5. did you see this post? 

    I guess so, your script is quite similar I guess :D

    I would do it in some other way as I have described before, but if it works you can do it this way...

    I used that post as an example, but it seems to be for an older version so i tried to retrofit it to work with mine. There are no errors but it just doesnt work. Client or server side shows nothing.

  6. Is there a way to toggle this on and off? Sorry for a post with such a simple and short topic but no amount of browsing has resulted in any success. Im curious if there is a way to disable the addon with a config tweak or if it is in fact a removal of the gdtmod_grass.pbo and key. Wopuld doing that stop me from being able to connect to epoch servers that have it? How would one go about altering this? Is it client or server side?

     

    Thanks for your patience guys, awesome mod here and awesome support

  7. Dont know if this is relevant, but in the instructions (in the op anyhow, read from page 1 - 10 and didnt see it) need to open your init and modify the _playerMonitor path to the new one and in the server_playerLogin you need to add _characterSlot = _this select 2; to the variables right at lines 7-9. those additions werent shipped with the dl and were omitted from instructions? testing now to see if that is the fix.

     

    If this was all a well known fact and i am somehow just blind (or was really tired when i read the entire topic from start to finish) and missed it, my apologies. If this helps however, i will be very pleased with myself

     

    Couldnt get it working, no matter what i tried. Fresh pbo's or not. </3

  8. By update buttons, you mean their locations correct

     

    class btnByelov: RscButton
            {
                idc = 1600;
                text = "Byelov";
                x = 0.590252 * safezoneW + safezoneX;
                y = 0.59375 * safezoneH + safezoneY;
                w = 0.0340954 * safezoneW;
                h = 0.0145 * safezoneH;
                action = "closeDialog 0;drnspawn = 0;";
            };

     

    and still working on figuring out the map part. what a pain but thanks for all the upport

  9. gonna test without infistar, but followed the instructions to the letter and i am no locked on "Requesting Character Data". No obvious errors in .rpt. A lot of spam from sarge and having a high vehicle spawn count vs number of vehicles capable of spawning. Will see if removing infistar does the trick

     

    removing infistar didnt change anything, but i believe i did manage to find a clue as to what is going on.

     

    No player found for channel 276119616 - message ignored

    "get: STRING (myUID), sent: STRING (myUID)"

    "DISCONNECT: Viktor Reznov (myUID) Object: B 1-1-A:1 (Viktor Reznov) REMOTE, _characterID: 0 at loc [-7245.22,19535.3,-3.05176e-005]"

     

    been really workin at this, new error, nfi on this one  http://pastebin.com/r5gsXzGX

     

    Going to try a fresh install of script, havent failed with a script this far but.. My name is Viktor Reznov and I will HAVE MY REVENGE

  10. how would one go about getting the coords for modifying spawn locations? looking to modify this for Chernarus but there is a lot more numbers in there. the coords dont look to be the same as the ones saved to database? If so, i could just place special object at location and extract my locations thatway.

     

    Never mind to original post, they are exactly as they are in database. Another question tho, this bit of code, are these the possible spawn locations when Branibor is selected? (i play on chernarus so just trying to understand these for when i modify for chernarus)

     

    //Branibor
        [[8225.28,3073.61,10.4816], [8917.26,4271.81,80.3664], [8228.37,5491.64,100.734], [7069.92,4880.18,34.7772], [5719.95,5951.77,37.2921]],

     

    Awesome script, probably going to go mess with it before awaiting response, see if i can answer my own questions  =p

     

    The only problem i am having atm is finding a map file for chernarus

  11. 			diag_log "Creating list of magazine classes";
                            _allMags = configFile >> 'cfgmagazines';
    			for "_i" from 0 to (count _allMags)-1 do
    			{
    				_mag = _allMags select _i;
    				if (isClass _mag) then 
                                    {
    					_mag_name = configName(_mag);
                                            diag_log _mag_name;
    				};
    			};
    

    An untested script to give write a fill list of all mag classnames to your report log.

     

     Thanks for the sample script mate! Loaded it up on my server (mimicked it for ammo, weapons and vehicles and worked like a charm!

     

    For all interested at the full list (afaik, could modify the script to output more if needed) please look at it on my dropbox for dl or browsing, up to you. Would have used pastebin but it exceeded the free users size limit

     

    https://www.dropbox.com/s/qm4ymk63vzt8h4z/CNEpoch1.0.4.2.txt

  12. Yes that would be excellent, and true, i wouldnt even classify myself as a script kiddie but i am learning and am going to school this summer for programming. Some direct uses i had in mind when i posted. Gas stations could be refuel only. Simple and effective plus they are all over (maybe incorporate some of the larger tanks/silos). then in some larger areas are the Land_repair_center buildings that i was going to make as repair/refuel stations and havent quite found one for rearming yet. maybe one of those bunker like buildings idk yet. Any tips to get this working like that would be awesome, maybe even an include on a future update   =p

     

    Awesome scripts mate, im following a couple of them personally (SLOTS FTW!!)

  13. Ive got all of these working but im curious as to how i could clear out some of the clutter from r3f scripts. I want just the carry objects cause i have a working heli lift and tow using btc. Im just not fluent enough in french or scripting to know exactly what i can clear out the lift and tow of r3f scripts. Im trying to keep only the carry objects and artillery. If someone could help me out with this, that would be awesome

     

    In short and simple, what do i need to modify from r3f so that i can keep the artillery and carry object scripts and be able to delete the other clutter and limit the size of my mission file. (nearing 2000kb)

×
×
  • Create New...