Jump to content

Nutzgo

Member
  • Content Count

    78
  • Joined

  • Last visited

  • Medals

Posts posted by Nutzgo


  1. pierremgi: It works almost perfectly. Tested in SP editor now.

    • I took out some bandages, epis, morphine and blood bags (Ace3 medical), and destroyed the vehicle a third time. All bandages, epis, morphine and blood were gone, but weapons and ammo still was there. 
    • Vehicle init is not kept. I have flags attached to the vehicles, these does not respawn (not a big problem really)
    • Ace cargo is not kept. Vehicles have 10 spare tires from mission start. When vehicle respawns, cargo is reset, so the vehicles have the standard 2 spare tires.

  2. 47 minutes ago, pierremgi said:

    Or use a script already on forum. Exists also as module.


    Allright, I'll give this a shot. Help me break this down, as I am not very skilled in this matter. I want to use your second script. 
    I'll copy/paste the script into initServer.sqf.


    I understand that the bottom line in the script is parameters, right? Here is how I understand it:

    • I have five cars, named "car1", "car2", "car3", "car4" and "car5". 
    • They all have the same respawn location (a marker called "vehicle_respawn"), that moves to a new location when a trigger is fired
    • I want the respawn time to be 10 seconds
    • I dont want the vehicle to respawn if disabled and abandoned (so that the players can jump out and repair it)
    • I dont want other empty vehicles to respawn 
    0 = [[car1, car2, car3, car4, car5],["vehicle_respawn"],10,false,false] spawn MGI_fnc_VehicleRespawn;

    Is this the correct setup?


  3. Thought of that. Could also use hide/show with triggers that fire if the specific vehicle dies. But I have five cars, and three check points. So if I want to give the boys one car per check point, I have to place 15 cars.. 😛 I dunno, it could work, but could also be a bit demanding for the server? I could also just deep copy with zeus and teleport cars if need be. 


  4. Making a convoi-mission, where the players drive vehicles.
    I've removed the inventory from the vehicle in Eden, and made some custom inventory in them. I've also removed 50% of fuel and ammo. And third, I've added 10 spare tires with ace3 in each vehicle. I've made checkpoints, so when the players reach a defined destination, a new respawn appears there. 

    Thing is, I want the vehicles to retain the loadout and settings when they respawn. If say vehicle 1 is destroyed mid-mission; I want it to a) respawn at the defined respawn location, and b) have the same loadout which it had at mission start. 
    I also dont want to trigger the new respawn locations before the players enter that specific area. 

    When using the Vehicle Respawn Module, it respawns at my location, but the vehicle inventory is the standard inventory for that vehicle (as if I had placed it in Zeus, e.g.). The vehicle also has 100% fuel, 100% ammo, and no spare tires. 

    I've tried using the Light Advanced Vehicle Respawn, but the vehicle only respawns at positon of death. I'm not that good with coding to add a function to define respawn locations.

    Anyone know how?


  5. Hello.

    I'm trying to make a PvP/COOP-mission, where some of the players play a blufor-team, and some players play the Opfor-resistance with a bit of roleplay in it. Thing is, I want the OpFor players to be able to use the Ace 3 Switch Units-funciton (or something similiar). When a opfor-soldier dies, or the BluFor-team moves another direction, I want the opfor players to be able to immediately change to another pre-placed AI. I want the BluFor-team only to be able to respawn "as usual". 

    I have activated the Ace3 settings that enable SwitchUnits. I've placed 2 civilians to test it with. Both of the civilians have the following in their init:
    "this setVariable ["ACE_CanSwitchUnits", true];" as instructed here

    But, when I start the game as one of the pre-placed civilians, and check my map (as the instructions say here), nothing appears, I can't see the other unit. 

     

    Anyone got experience with this or something similiar that could help me out?

    I know I could just give the OpFor-guys Zeus Control, and control it with that - but I want to test this out first.


  6. Just now, nagyszebi07 said:

    Yes,Description.ext

     

    15:18:24 Error context »¿
    15:18:24 Warning Message: File mpmissions\__cur_mp.Napf\description.ext, line 28: '.': '易encountered instead of '='
    15:18:24 Warning Message: Config : some input after EndOfFile.
    15:18:24 Mission Exile.Napf: Missing 'description.ext::Header'

     

     


    Looks like an typo in your description.ext, as it says: a symbol instead of = at line 28.


  7. Solved this with taking the code in quote, and placing it in a seperate trigger. 
    Condition on trigger: 
    !alive (name of intel)

    On Activation, code in quote. Worked perfectly.

    Quote

    if (side player == west) then { 
             "WEST_Brua" setMarkerTextLocal  "Bridge!"; 
             "WEST_Brua" setMarkerTypeLocal "mil_Warning"; 
             "WEST_Brua" setMarkerColorLocal "ColorBLUFOR"; 
             createMarkerLocal ["WEST_House",[8148.47,8740.92,7.50359]]; 
             "WEST_House" setMarkerTypeLocal "mil_Unknown"; 
             "WEST_House" setMarkerTextLocal "House?"; 
             "WEST_House" setMarkerColorLocal "ColorOPFOR"; 
             createMarkerLocal ["WEST_Penger",[6427.32,8165.93,0]]; 
             "WEST_Penger" setMarkerTypeLocal "mil_Unknown"; 
             "WEST_Penger" setMarkerTextLocal "Penger?"; 
             "WEST_Penger" setMarkerColorLocal "ColorOPFOR"; 
       } else { 
       "EAST_Brua" setMarkerColorLocal "ColorBLUFOR"; 
       }; 
             deleteVehicle respawn_ind_4; 
             deleteVehicle respawn_ind_5; 
             deleteVehicle respawn_ind_6; 
             [west, [10988.3,11249.1,0], "Respawn Bridge"] call BIS_fnc_addRespawnPosition; 
     
             [west, "HQ"] sideChat "Good job!"; 
             [east, "HQ"] sideChat "Shit, pull back!";  

     


  8. Hi
    I have an intel based on https://community.bistudio.com/wiki/BIS_fnc_initIntelObject

    Works perfectly, until launched on the server.

    Now nothing happens at all, nothing from the scripted events will fire. 
    How to make this happen on all clients?

     

    Quote

    [bridgeintel] call BIS_fnc_initIntelObject;  
      
    if (isServer) then {  
       
     this setVariable [  
      "RscAttributeDiaryRecord_texture",  
      "pictures\mapintel.jpg",  
      true  
     ];  
       
     [  
      this,  
      "RscAttributeDiaryRecord",  
      ["Check intel!","Check out these locations"]  
     ] call BIS_fnc_setServerVariable;  
       
     this setVariable ["recipients", west, true];  
     
     this setVariable ["RscAttributeOwners", [west], true];  
     
     [ 
             this, 
             "IntelObjectFound", 
             { 
       if (side player == west) then { 
             "WEST_Brua" setMarkerTextLocal  "Bridge!"; 
             "WEST_Brua" setMarkerTypeLocal "mil_Warning"; 
             "WEST_Brua" setMarkerColorLocal "ColorBLUFOR"; 
             createMarkerLocal ["WEST_House",[8148.47,8740.92,7.50359]]; 
             "WEST_House" setMarkerTypeLocal "mil_Unknown"; 
             "WEST_House" setMarkerTextLocal "House?"; 
             "WEST_House" setMarkerColorLocal "ColorOPFOR"; 
             createMarkerLocal ["WEST_Penger",[6427.32,8165.93,0]]; 
             "WEST_Penger" setMarkerTypeLocal "mil_Unknown"; 
             "WEST_Penger" setMarkerTextLocal "Penger?"; 
             "WEST_Penger" setMarkerColorLocal "ColorOPFOR"; 
       } else { 
       "EAST_Brua" setMarkerColorLocal "ColorBLUFOR"; 
       }; 
             deleteVehicle respawn_ind_4; 
             deleteVehicle respawn_ind_5; 
             deleteVehicle respawn_ind_6; 
             [west, [10988.3,11249.1,0], "Respawn Bridge"] call BIS_fnc_addRespawnPosition; 
     
             [west, "HQ"] sideChat "Good job!"; 
             [east, "HQ"] sideChat "Shit, pull back!";  
         }  
         ] call BIS_fnc_addScriptedEventHandler; 
     
      
    }; 
     

     


  9. Hey, thanks. That worked perfectly!
    Now, I'm trying to keep my initplayerlocal clean, so I thought I could execute that in a separate script from InitPlayerLocal. 
    So I copy/pasted into a seperate script, and called it zoneRestrictor.sqf. In Initplayerlocal, I added the line

    Quote

    []ExecVM "zoneRestrictor.sqf";


    But now, nothing happens. 😅
    If I keep the whole text in initplayerlocal, it works though.


  10. So I'm trying to make a zone restriciton area with this script:
    https://www.tacticalgamer.com/forum/simulation/armed-assault/arma-development/script-bin/1797607-zone-restriction-version-2

    zoneRestrictor.sqf:
     

    Quote

    //usage: zoneR = [nameOfTrigger]execVM "Unk\zoneRestrictor.sqf"; _triggerActivated = _this select 0; if !(player in (list _triggerActivated)) exitWith {}; systemChat "RETURN TO YOUR ASSIGNED AREA IMMEDIATELY!"; playSoundWarning = true; cutText ["YOU HAVE 7 SECONDS TO LEAVE THIS AREA", "plain", 0]; titleFadeout 5; sleep 7; if (player in (list _triggerActivated)) then { player setDamage 1; systemChat "YOU HAVE BEEN KILLED FOR LEAVING YOUR AREA"; } else { if (side player == west || side player == independent) then {systemChat "YOU HAVE CLEARED THE UNAUTHORIZED ZONE";}; };


    I have a trigger with conditon

    Quote

    this

     

    and on activation

     

    Quote

    zoneR = [thisTrigger]execVM "zoneRestrictor.sqf";


    It works perfectly for infantry. But whenever I drive a vehicle or a helicopter in the zone, it wont activate. 
    I've tried changing the condition to "this && (vehicle player) in thislist" but that didn't to the trick at all.
     


  11. Managed to clean up the server load. 
    Still get the same error.

    Serverlog:

    Spoiler

    F=====================================================================
    == x:\TCAFiles\Users\vidarp\9428\arma3server.exe
    == "x:\TCAFiles\Users\vidarp\9428\arma3server.exe" -ip=83.143.83.100 -port=2302 -noPause -noSound "-cfg=A3DS\basic.cfg" "-config=A3DS\server.cfg" "-profiles=A3DS\Profiles" -world=empty "-mod=@620019431;@1835439845;@779520435;@1779063631;@940841212;@498740884;@686802825;@914182380;@886409446;@723217262;@539126468;@621650475;@1375890861;@549676314;@623475643;@843632231;@843593391;@843577117;@843425103;@541888371;@497660133;@497661914;@583496184;@463939057;@450814997;" "-servermod="    -exThreads=7 

    Original output filename: Arma3Retail_Server
    Exe timestamp: 2019/08/03 03:28:07
    Current time:  2019/10/26 15:54:08

    Type: Public
    Build: Stable
    Version: 1.94.145977

    Allocator: x:\TCAFiles\Users\vidarp\9428\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0]
    PhysMem: 128 GiB, VirtMem : 4.0 GiB, AvailPhys : 64 GiB, AvailVirt : 3.9 GiB, AvailPage : 48 GiB
    =====================================================================

    15:54:08 SteamAPI initialization failed. Steam features won't be accessible!
    15:54:08 Initializing stats manager.
    15:54:08 Stats config disabled.
    15:54:08 sessionID: 750d84864310b1076cd95760d15a008f44c7a442
    15:54:13 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Item str_dn_dshkm listed twice
    15:54:14 Item str_lib_dshkm listed twice
    15:54:14 Item str_dn_kord listed twice
    15:54:14 Item str_dn_kord_low listed twice
    15:54:14 Item str_lib_kord listed twice
    15:54:14 Item str_dn_ags30 listed twice
    15:54:14 Item str_lib_ags30 listed twice
    15:54:14 Item str_mn_at13 listed twice
    15:54:14 Item str_dn_at13 listed twice
    15:54:14 Item str_dn_at13launchersingle listed twice
    15:54:14 Item str_lib_at13 listed twice
    15:54:14 Item str_dn_spg9 listed twice
    15:54:14 Item str_lib_spg9 listed twice
    15:54:14 Item str_mn_og9 listed twice
    15:54:14 Item str_mn_pg9 listed twice
    15:54:14 Item str_mn_igla listed twice
    15:54:14 Item str_mn_9k32 listed twice
    15:54:14 Item str_dn_igla_twice listed twice
    15:54:14 Item str_dn_igla_aa_pod_east listed twice
    15:54:14 Item str_dn_2b14 listed twice
    15:54:14 Item str_lib_2b14 listed twice
    15:54:14 Item str_dn_d30 listed twice
    15:54:14 Item str_lib_d30 listed twice
    15:54:14 Item str_dn_m2_mg listed twice
    15:54:14 Item str_dn_m2hd_minitripod listed twice
    15:54:14 Item str_lib_m2_mg listed twice
    15:54:14 Item str_dn_m119 listed twice
    15:54:14 Item str_lib_m119 listed twice
    15:54:14 Item str_dn_m252 listed twice
    15:54:14 Item str_lib_m252 listed twice
    15:54:14 Item str_dn_tow_tripod listed twice
    15:54:14 Item str_dn_tow listed twice
    15:54:14 Item str_dn_mk19_tripod listed twice
    15:54:14 Item str_dn_ZU23 listed twice
    15:54:14 Item str_dn_DSHKM_MiniTripod listed twice
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unexpected stringtable format inside <Text ID="STR_CUP_ddn_acc_LLM01"><Original>
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:14 Unsupported language English in stringtable
    15:54:18 File 3denEnhanced\GUI\functionsViewer.hpp, line 24: '/Enh_FunctionsViewer/Controls/Header.h': Missing ';' at the end of line
    15:54:18 File 3denEnhanced\GUI\extraction.hpp, line 164: '/Enh_Extraction/Controls/VehicleImage.h': Missing ';' at the end of line
    15:54:19 Conflicting addon A3_Sounds_F in 'mm_buildings\prison\sounds\', previous definition in 'mm_bank\sound\'
    15:54:19 Conflicting addon Mattaust_Objects in 'MM_Shopping\', previous definition in 'MM_objects\'
    15:54:19 Conflicting addon asdg_jointrails in 'asdg_jointrails\', previous definition in 'x\cba\addons\jr\asdg_jointrails\'
    15:54:19 Conflicting addon asdg_jointmuzzles in 'asdg_jointrails\', previous definition in 'x\cba\addons\jr\asdg_jointmuzzles\'
    15:54:19 Conflicting addon TRYK_Uniform in 'zara\', previous definition in 'tryk_unit\'
    15:54:22 Conflicting addon A3_Sounds_F in 'a3\sounds_f\', previous definition in 'mm_bank\sound\'
    15:54:23 Updating base class ->HouseBase, by ca\roads2\dam\config.bin/CfgVehicles/House/ (original ca\roads2\dam\config.bin)
    15:54:23 Updating base class None->, by Shemagh\config.bin/CfgGlasses/TRYK_headset_glasses/ (original ESSGoggles\config.bin)
    15:54:23 Updating base class ->ItemCore, by TRYK_uniforms\config.bin/cfgWeapons/Vest_Camo_Base/ (original TRYK_uniforms\config.bin)
    15:54:23 Updating base class ->InventoryItem_Base_F, by TRYK_uniforms\config.bin/cfgWeapons/VestItem/ (original TRYK_uniforms\config.bin)
    15:54:23 Updating base class ->NonStrategic, by a3\data_f\config.bin/CfgVehicles/HouseBase/ (original a3\data_f\config.bin)
    15:54:23 Updating base class ->HouseBase, by a3\data_f\config.bin/CfgVehicles/Ruins/ (original a3\data_f\config.bin)
    15:54:23 Updating base class ->DestructionEffects, by a3\data_f\config.bin/CfgVehicles/House/DestructionEffects/ (original a3\data_f\config.bin)
    15:54:23 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin)
    15:54:23 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin)
    15:54:23 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin)
    15:54:23 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin)
    15:54:23 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin)
    15:54:23 Updating base class ->ruins, by a3\structures_f\config.bin/CfgVehicles/Ruins_F/ (original a3\structures_f\config.bin)
    15:54:23 Updating base class ->ThingX, by a3\structures_f\items\config.bin/CfgVehicles/Items_base_F/ (original a3\structures_f\items\config.bin)
    15:54:24 Updating base class ->EtelkaMonospacePro, by a3\uifonts_f\config.bin/CfgFontFamilies/EtelkaMonospaceProBold/ (original ca\uifonts\config.bin)
    15:54:24 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesBasic/DefaultDie/ (original a3\anims_f\config\sdr\config.bin)
    15:54:24 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/Crew/ (original a3\anims_f\config\sdr\config.bin)
    15:54:24 Updating base class ->AmovPercMstpSnonWnonDnon, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/CutSceneAnimationBase/ (original a3\anims_f\config\sdr\config.bin)
    15:54:24 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin)
    15:54:24 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin)
    15:54:24 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin)
    15:54:24 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin)
    15:54:24 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin)
    15:54:24 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin)
    15:54:24 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin)
    15:54:24 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin)
    15:54:24 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin)
    15:54:24 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin)
    15:54:24 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin)
    15:54:24 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
    15:54:24 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin)
    15:54:24 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin)
    15:54:24 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin)
    15:54:24 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin)
    15:54:24 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin)
    15:54:24 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
    15:54:24 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
    15:54:24 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
    15:54:24 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
    15:54:24 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin)
    15:54:24 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin)
    15:54:24 Updating base class ->WeaponHolder, by a3\weapons_f\config.bin/CfgVehicles/Item_Base_F/ (original a3\weapons_f\config.bin)
    15:54:24 Updating base class ->Default, by a3\weapons_f\config.bin/CfgWeapons/ItemCore/ (original a3\weapons_f\config.bin)
    15:54:24 Updating base class ->ItemCore, by a3\weapons_f\config.bin/CfgWeapons/ItemWatch/ (original a3\weapons_f\config.bin)
    15:54:24 Updating base class ->Binocular, by a3\weapons_f\config.bin/CfgWeapons/NVGoggles/ (original a3\weapons_f\config.bin)
    15:54:24 Updating base class ->InventoryItem_Base_F, by a3\weapons_f\items\config.bin/CfgWeapons/UniformItem/ (original a3\weapons_f\items\config.bin)
    15:54:24 Updating base class ->SoldierWB, by a3\characters_f\config.bin/CfgVehicles/B_Soldier_base_F/ (original a3\characters_f\config.bin)
    15:54:24 Updating base class ->InventoryItem_Base_F, by a3\characters_f\config.bin/CfgWeapons/HeadgearItem/ (original a3\characters_f\config.bin)
    15:54:24 Updating base class ->All, by a3\sounds_f\config.bin/CfgVehicles/Sound/ (original a3\sounds_f\config.bin)
    15:54:24 Updating base class Turrets->Turrets, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/ (original CUP\WaterVehicles\CUP_WaterVehicles_Weapons\config.bin)
    15:54:24 Updating base class ->MainTurret, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/MainTurret/ (original a3\static_f\config.bin)
    15:54:24 Updating base class ItemCore->muzzle_snds_H, by a3\weapons_f\acc\config.bin/CfgWeapons/muzzle_snds_M/ (original hlc_core\config.bin)
    15:54:24 Updating base class ->ItemInfo, by a3\weapons_f\acc\config.bin/CfgWeapons/muzzle_snds_M/ItemInfo/ (original a3\weapons_f\acc\config.bin)
    15:54:24 Updating base class ZavoraAnim->House, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora/ (original ca\buildings_c\config.bin)
    15:54:24 Updating base class ZavoraAnim->Land_zavora_2, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora_2_a1/ (original ca\buildings_c\config.bin)
    15:54:24 Updating base class NewTurret->NewTurret, by a3\soft_f\config.bin/CfgVehicles/Car_F/Turrets/MainTurret/ (original a3\soft_f\config.bin)
    15:54:24 Updating base class ->Wreck_base_F, by a3\structures_f\wrecks\config.bin/CfgVehicles/Land_Wreck_Heli_Attack_01_F/ (original a3\structures_f\wrecks\config.bin)
    15:54:24 Updating base class OpenGate->, by ca\misc3_c\config.bin/CfgVehicles/ZavoraAnim/UserActions/CloseGate/ (original ca\buildings_c\config.bin)
    15:54:24 Updating base class Turrets->, by CUP\AirVehicles\CUP_AirVehicles_MH47E\config.bin/CfgVehicles/Helicopter_Base_F/Turrets/ (original (a3\air_f\config.bin - no unload))
    15:54:24 Updating base class ->Turrets, by a3\air_f_epb\heli_light_03\config.bin/CfgVehicles/Helicopter_Base_F/Turrets/ (original (a3\air_f\config.bin - no unload))
    15:54:24 Updating base class ->Crew, by a3\cargoposes_f\config.bin/CfgMovesMaleSdr/States/crew_tank01_in/ (original a3\cargoposes_f\config.bin)
    15:54:25 Updating base class ->asdg_SlotInfo, by CUP\Weapons\CUP_Weapons_G3\config.bin/asdg_UnderSlot/ (original CUP\Weapons\CUP_Weapons_G3\config.bin)
    15:54:25 Updating base class ->BulletBase, by a3\weapons_f_mark\config.bin/CfgAmmo/B_93x64_Ball/ (original a3\weapons_f_mark\config.bin)
    15:54:25 Updating base class ->SlotInfo, by a3\weapons_f_mark\config.bin/UnderBarrelSlot/ (original a3\weapons_f_mark\config.bin)
    15:54:25 Updating base class ->InventoryItem_Base_F, by a3\weapons_f_mark\acc\config.bin/CfgWeapons/InventoryUnderItem_Base_F/ (original a3\weapons_f_mark\acc\config.bin)
    15:54:25 Updating base class ->asdg_SlotInfo, by asdg_jointrails\config.bin/asdg_FrontSideRail/ (original asdg_jointrails\config.bin)
    15:54:25 Updating base class ->asdg_SlotInfo, by asdg_jointrails\config.bin/asdg_MuzzleSlot/ (original asdg_jointrails\config.bin)
    15:54:25 Updating base class ->asdg_OpticRail, by asdg_jointrails\config.bin/asdg_OpticRail1913/ (original asdg_jointrails\config.bin)
    15:54:25 Updating base class ->asdg_OpticRail1913, by asdg_jointrails\config.bin/asdg_OpticRail1913_short/ (original asdg_jointrails\config.bin)
    15:54:25 Updating base class ->asdg_OpticRail1913, by asdg_jointrails\config.bin/asdg_OpticRail1913_long/ (original asdg_jointrails\config.bin)
    15:54:25 Updating base class CowsSlot->asdg_OpticRail1913, by asdg_jointrails\longrangerifles\gm6\config.bin/CfgWeapons/srifle_GM6_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\longrangerifles\gm6\config.bin)
    15:54:25 Updating base class CowsSlot->asdg_OpticRail1913, by asdg_jointrails\longrangerifles\m320\config.bin/CfgWeapons/srifle_LRR_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\longrangerifles\m320\config.bin)
    15:54:25 Updating base class CowsSlot->asdg_OpticRail1913_short, by asdg_jointrails\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\machineguns\m200\config.bin)
    15:54:25 Updating base class PointerSlot->asdg_FrontSideRail, by asdg_jointrails\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\machineguns\m200\config.bin)
    15:54:25 Updating base class UnderBarrelSlot->asdg_UnderSlot, by asdg_jointrails\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_mark\machineguns\m200\config.bin)
    15:54:25 Updating base class CowsSlot->asdg_OpticRail1913_short, by asdg_jointrails\machineguns\zafir\config.bin/CfgWeapons/LMG_Zafir_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\machineguns\zafir\config.bin)
    15:54:25 Updating base class PointerSlot->asdg_FrontSideRail, by asdg_jointrails\machineguns\zafir\config.bin/CfgWeapons/LMG_Zafir_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\machineguns\zafir\config.bin)
    15:54:25 Updating base class MuzzleSlot->asdg_MuzzleSlot_556, by asdg_jointrails\rifles\mk20\config.bin/CfgWeapons/arifle_Mk20C_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mk20\config.bin)
    15:54:25 Updating base class MuzzleSlot->asdg_MuzzleSlot_556, by asdg_jointrails\rifles\mk20\config.bin/CfgWeapons/arifle_Mk20_GL_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mk20\config.bin)
    15:54:25 Updating base class CowsSlot->asdg_OpticRail1913, by asdg_jointrails\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:54:25 Updating base class PointerSlot->asdg_FrontSideRail, by asdg_jointrails\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:54:25 Updating base class MuzzleSlot->asdg_MuzzleSlot_556, by asdg_jointrails\rifles\trg20\config.bin/CfgWeapons/arifle_TRG20_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\trg20\config.bin)
    15:54:25 Updating base class CUP_Vmlauncher_FFAR_veh->RocketPods, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vmlauncher_CRV7_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin)
    15:54:25 Updating base class CUP_Vacannon_GAU12_veh->CannonCore, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vacannon_GAU22_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin)
    15:54:25 Updating base class ->asdg_OpticSideMount, by CUP\Weapons\CUP_Weapons_East_Attachments\config.bin/CUP_DovetailMount/ (original CUP\Weapons\CUP_Weapons_East_Attachments\config.bin)
    15:54:25 Updating base class ->asdg_MuzzleSlot_762R, by CUP\Weapons\CUP_Weapons_East_Attachments\config.bin/CUP_EastMuzzleSlot9mm/ (original CUP\Weapons\CUP_Weapons_East_Attachments\config.bin)
    15:54:25 Updating base class ->asdg_SlotInfo, by CUP\Weapons\CUP_Weapons_Glock17\config.bin/asdg_PistolUnderRail/ (original CUP\Weapons\CUP_Weapons_Glock17\config.bin)
    15:54:25 Updating base class ->asdg_OpticRail1913_long, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:54:25 Updating base class ->asdg_OpticRail1913_short, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopShortMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:54:25 Updating base class ->asdg_FrontSideRail, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnySideMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:54:25 Updating base class ->asdg_UnderSlot, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyUnderMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:54:25 Updating base class ->ItemCore, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CfgWeapons/CUP_acc_Flashlight/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:54:25 Updating base class ->hlc_rifle_g3a3, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3ka4/ (original hlc_wp_g3\config.bin)
    15:54:25 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:54:25 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:54:25 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin)
    15:54:25 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin)
    15:54:25 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin)
    15:54:25 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin)
    15:54:25 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin)
    15:54:25 Updating base class UnderBarrelSlot->asdg_UnderSlot, by asdg_jointrails\longrangerifles\dmr_01\config.bin/CfgWeapons/srifle_DMR_01_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_mark\longrangerifles\dmr_01\config.bin)
    15:54:25 Updating base class UnderBarrelSlot->asdg_UnderSlot, by asdg_jointrails\longrangerifles\ebr\config.bin/CfgWeapons/srifle_EBR_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_mark\longrangerifles\ebr\config.bin)
    15:54:25 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by asdg_jointrails\smgs\pdw2000\config.bin/CfgWeapons/pdw2000_base_F/ (original (a3\weapons_f\smgs\pdw2000\config.bin - no unload))
    15:54:25 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by asdg_jointrails\smgs\smg_01\config.bin/CfgWeapons/SMG_01_Base/ (original (a3\weapons_f\smgs\smg_01\config.bin - no unload))
    15:54:25 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by asdg_jointrails\smgs\smg_02\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
    15:54:25 Updating base class Offroad_01_military_base_F->Offroad_01_base_F, by task_force_radio_items\config.cpp/CfgVehicles/Offroad_01_armed_base_F/ (original a3\soft_f\offroad_01\config.bin)
    15:54:25 Updating base class Car->Car_F, by task_force_radio_items\config.cpp/CfgVehicles/HMMWV_Base/ (original (no unload))
    15:54:26 Updating base class ->HitPoints, by a3\soft_f_exp\lsv_01\config.bin/CfgVehicles/Car_F/HitPoints/ (original (a3\soft_f\config.bin - no unload))
    15:54:26 Updating base class Rifle_Base_F->Rifle_Short_Base_F, by a3\weapons_f_exp\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
    15:54:27 Updating base class ->magazine_Missile_AMRAAM_D_x1, by a3\weapons_f_jets\config.bin/CfgMagazines/PylonMissile_Missile_AMRAAM_D_INT_x1/ (original a3\weapons_f_jets\config.bin)
    15:54:28 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin)
    15:54:28 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin)
    15:54:28 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin)
    15:54:28 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin)
    15:54:28 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin)
    15:54:28 Updating base class ->MissileBase, by a3\weapons_f_tank\config.bin/CfgAmmo/M_Vorona_HEAT/ (original a3\weapons_f_tank\config.bin)
    15:54:28 Updating base class ->MissileLauncher, by a3\weapons_f_tank\config.bin/CfgWeapons/missiles_Vorona/ (original a3\weapons_f_tank\config.bin)
    15:54:28 Updating base class HitPoints->, by CUP\WheeledVehicles\CUP_WheeledVehicles_Coyote\config.bin/CfgVehicles/Car_F/HitPoints/ (original (a3\soft_f\config.bin - no unload))
    15:54:28 Updating base class ->ProxyRetex, by CUP\WheeledVehicles\CUP_WheeledVehicles_Ridgeback\config.bin/CfgNonAIVehicles/Proxywreck/ (original bin\config.bin)
    15:54:28 Updating base class Offroad_01_base_F->Offroad_01_military_base_F, by a3\soft_f_enoch\offroad_01\config.bin/CfgVehicles/Offroad_01_armed_base_F/ (original (a3\soft_f\offroad_01\config.bin - no unload))
    15:54:28 Updating base class ->StaticMGWeapon, by a3\static_f_sams\radar_system_01\config.bin/CfgVehicles/Radar_System_01_base_F/ (original a3\static_f_sams\radar_system_01\config.bin)
    15:54:28 Updating base class ->StaticMGWeapon, by a3\static_f_sams\sam_system_03\config.bin/CfgVehicles/SAM_System_03_base_F/ (original a3\static_f_sams\sam_system_03\config.bin)
    15:54:28 Updating base class ->32Rnd_155mm_Mo_shells, by a3\weapons_f_destroyer\config.bin/CfgMagazines/magazine_ShipCannon_120mm_HE_shells_x32/ (original a3\weapons_f_destroyer\config.bin)
    15:54:28 Updating base class ->6Rnd_155mm_Mo_smoke, by a3\weapons_f_destroyer\config.bin/CfgMagazines/magazine_ShipCannon_120mm_smoke_shells_x6/ (original a3\weapons_f_destroyer\config.bin)
    15:54:28 Updating base class ->mortar_155mm_AMOS, by a3\weapons_f_destroyer\config.bin/CfgWeapons/weapon_ShipCannon_120mm/ (original a3\weapons_f_destroyer\config.bin)
    15:54:28 Updating base class ->BulletBase, by a3\weapons_f_enoch\config.bin/CfgAmmo/B_12Gauge_Pellets_Submunition/ (original a3\weapons_f_enoch\config.bin)
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/arifle_MX_Base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\mx\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/arifle_Katiba_Base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\khaybar\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\machineguns\m200\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/arifle_MX_SW_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f_exp\config.bin)
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_556, by a3\weapons_f_enoch\config.bin/CfgWeapons/mk20_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\mk20\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_556, by a3\weapons_f_enoch\config.bin/CfgWeapons/Tavor_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\trg20\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/DMR_03_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f_mark\longrangerifles\dmr_03\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/DMR_06_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f_mark\longrangerifles\dmr_06\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/EBR_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\longrangerifles\ebr\config.bin - no unload))
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/DMR_01_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\longrangerifles\dmr_01\config.bin - no unload))
    15:54:28 Cannot update non class from class a3\weapons_f_enoch\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/compatibleItems/
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\rifles\ak12\config.bin/CfgWeapons/arifle_AK12_base_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f_exp\rifles\ak12\config.bin)
    15:54:28 Updating base class CowsSlot->CowsSlot_Rail, by a3\weapons_f_enoch\rifles\ak12\config.bin/CfgWeapons/arifle_AK12_base_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f_exp\rifles\ak12\config.bin)
    15:54:28 Updating base class UnderBarrelSlot->UnderBarrelSlot_rail, by a3\weapons_f_enoch\rifles\ak12\config.bin/CfgWeapons/arifle_AK12_base_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_exp\rifles\ak12\config.bin)
    15:54:28 Updating base class PointerSlot->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_Base_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:54:28 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:54:28 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:54:28 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_GL_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:54:28 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_SW_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:54:28 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXM_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:54:28 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXM_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:54:29 Updating base class Rifle_Base_F->Rifle_Short_Base_F, by x\cba\addons\jam\config.bin/CfgWeapons/SMG_01_Base/ (original (a3\weapons_f\smgs\smg_01\config.bin - no unload))
    15:54:29 Updating base class ->CBA_Extended_EventHandlers_base, by x\cba\addons\xeh\config.bin/CBA_Extended_EventHandlers/ (original x\cba\addons\xeh\config.bin)
    15:54:29 Updating base class ->EventHandlers, by rhsafrf\addons\rhs_aps\config.bin/CfgVehicles/LaserTarget/EventHandlers/ (original x\cba\addons\xeh\config.bin)
    15:54:29 Updating base class ->rhs_weap_hk416d10, by rhsusf\addons\rhsusf_c_weapons\config.bin/CfgWeapons/rhs_weap_hk416d145/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
    15:54:29 Updating base class ->rhs_weap_hk416d145, by rhsusf\addons\rhsusf_c_weapons\config.bin/CfgWeapons/rhs_weap_hk416d145_m320/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
    15:54:29 Updating base class ->rhsusf_weap_MP7A1_base_f, by rhsusf\addons\rhsusf_c_weapons\config.bin/CfgWeapons/rhsusf_weap_MP7A2/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
    15:54:29 Updating base class ->asdg_OpticRail1913_short, by x\cba\addons\jr\config.bin/asdg_OpticRail1913_short_MG/ (original x\cba\addons\jr\config.bin)
    15:54:29 Updating base class asdg_OpticRail1913->asdg_OpticRail1913_short_MG, by x\cba\addons\jr\config.bin/CfgWeapons/MMG_02_camo_F/WeaponSlotsInfo/CowsSlot/ (original asdg_jointrails\machineguns\mmg_02\config.bin)
    15:54:29 Updating base class Rifle_Base_F->Rifle_Short_Base_F, by x\cba\addons\jr\config.bin/CfgWeapons/pdw2000_base_F/ (original (a3\weapons_f\smgs\pdw2000\config.bin - no unload))
    15:54:30 Updating base class ->SoldierWB, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgVehicles/rhsusf_socom_uniform_base/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_socom_g3_m81_uniform, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgVehicles/rhsusf_infantry_socom_marsoc_base/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->Uniform_Base, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhs_uniform_g3_mc/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->Uniform_Base, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhs_uniform_g3_rgr/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_ach_helmet_ocp, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_opscore_01/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_opscore_01, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_opscore_cover/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_iotv_ocp_base, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_spc, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_rifleman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_corpsman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_crewman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_light/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_marksman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_mg/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_squadleader/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:54:30 Updating base class MuzzleSlot_65->asdg_MuzzleSlot_762MG, by z\ace\addons\flashsuppressors\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\machineguns\m200\config.bin - no unload))
    15:54:30 Cannot update non class from class z\ace\addons\flashsuppressors\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/compatibleItems/
    15:54:30 Updating base class EventHandlers->, by z\ace\addons\laser\config.bin/CfgVehicles/LaserTarget/EventHandlers/ (original (x\cba\addons\xeh\config.bin - no unload))
    15:54:31 Updating base class ->RHS_UH1Y, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_UH1Y_FFAR/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:54:31 Updating base class ->RHS_UH1Y, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_UH1Y_GS/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:54:31 Updating base class ->RHS_UH1Y_FFAR, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_UH1Y_UNARMED/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:54:31 Updating base class ->RHS_C130J_Base, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_C130J/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:54:31 Updating base class ->rhsusf_m109tank_base, by rhsusf\addons\rhsusf_c_m109\config.bin/CfgVehicles/rhsusf_m109_usarmy/ (original rhsusf\addons\rhsusf_c_m109\config.bin)
    15:54:31 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:54:31 Updating base class ->rhsusf_m113_usarmy, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_supply/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:54:31 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_unarmed/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:54:31 Updating base class ->rhsusf_m113_usarmy_unarmed, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_medical/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:54:31 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_M240/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:54:31 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_MK19/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:54:32 Updating base class ModuleBootcampStage_F->Module_F, by achilles\modules_f_achilles\config.bin/CfgVehicles/ModuleHint_F/ (original a3\modules_f_bootcamp\misc\config.bin)
    15:54:32 Updating base class rhs_ammo_rgd5->rhs_ammo_rgn_base, by z\ace\addons\compat_rhs_afrf3\config.bin/CfgAmmo/rhs_ammo_rgn/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
    15:54:32 Updating base class rhs_ammo_rgn->rhs_ammo_rgn_base, by z\ace\addons\compat_rhs_afrf3\config.bin/CfgAmmo/rhs_ammo_rgn_exp/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
    15:54:32 Updating base class rhs_acc_pso1m2->rhs_acc_sniper_base, by z\ace\addons\compat_rhs_afrf3\config.bin/CfgWeapons/rhs_acc_pso1m21/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
    15:54:33 Updating base class KIA_RHIB_Cargo->DefaultDie, by CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin/CfgMovesMaleSdr/States/Zodiac_Dead/ (original CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin)
    15:54:33 Updating base class Optics_Commander_02->Optics_Armored, by CUP\WheeledVehicles\CUP_WheeledVehicles_BTR90\config.bin/Optics_Commander_03/ (original a3\weapons_f\config.bin)
    15:54:33 Updating base class AnimationSources->AnimationSources, by CUP\WheeledVehicles\CUP_WheeledVehicles_Vodnik\config.bin/CfgVehicles/Wheeled_APC_F/AnimationSources/ (original a3\armor_f_beta\config.bin)
    15:54:35 Updating base class ->rhsgref_nat_base, by rhsgref\addons\rhsgref_c_troops\config.bin/CfgVehicles/rhsgref_nat_ERDL/ (original rhsgref\addons\rhsgref_c_troops\config.bin)
    15:54:35 Updating base class ->Uniform_Base, by rhsgref\addons\rhsgref_c_troops\config.bin/cfgWeapons/rhsgref_uniform_ERDL/ (original rhsgref\addons\rhsgref_c_troops\config.bin)
    15:54:41 Initializing Steam Manager
    15:54:41 unable to load subscribed content list. list will be updated from steam
    15:54:41 unable to load published content list. list will be updated from steam
    15:54:41 unable to load cached items meta info. save and update functionality will be broken
    15:54:41 Steam Manager initialized.
    15:54:41 
    15:54:41 ==== Loaded addons ====
    15:54:41 
    15:54:41 dta\bin.pbo - 145977
    15:54:41 dta\core.pbo - 129618
    15:54:41 dta\languagecore_f.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_accessory.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_ai.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_arrays.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_common.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_diagnostic.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_disposable.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_ee.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_events.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_hashes.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_help.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_jam.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_jr.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_keybinding.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_main.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_main_a3.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_modules.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_music.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_network.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_optics.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_settings.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_statemachine.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_strings.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_ui.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_vectors.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_versioning.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@450814997\addons\cba_xeh.pbo - 7c4e6bdd
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_advanced_ballistics.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_advanced_fatigue.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_advanced_throwing.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_ai.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_aircraft.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_apl.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_arsenal.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_atragmx.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_attach.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_backpacks.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_ballistics.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_captives.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_cargo.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_chemlights.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_common.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_concertina_wire.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_cookoff.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_dagr.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_disarming.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_disposable.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_dogtags.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_dragging.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_explosives.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_fastroping.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_fcs.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_finger.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_flashlights.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_flashsuppressors.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_fonts.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_frag.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_gestures.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_gforces.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_goggles.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_grenades.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_gunbag.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_hearing.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_hellfire.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_hitreactions.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_hot.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_huntir.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_interaction.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_interact_menu.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_inventory.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_javelin.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_kestrel4500.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_laser.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_laserpointer.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_logistics_uavbattery.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_logistics_wirecutter.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_magazinerepack.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_main.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_map.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_maptools.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_map_gestures.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_markers.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_maverick.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_medical.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_medical_ai.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_medical_blood.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_medical_menu.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_microdagr.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_minedetector.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_missileguidance.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_missionmodules.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_mk6mortar.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_modules.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_movement.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_mx2a.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_nametags.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_nightvision.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_nlaw.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_noidle.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_noradio.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_norearm.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_optics.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_optionsmenu.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_overheating.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_overpressure.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_parachute.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_pylons.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_quickmount.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_rangecard.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_realisticnames.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_realisticweights.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_rearm.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_recoil.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_refuel.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_reload.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_reloadlaunchers.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_repair.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_respawn.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_safemode.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_sandbag.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_scopes.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_slideshow.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_smallarms.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_spectator.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_spottingscope.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_switchunits.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_tacticalladder.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_tagging.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_thermals.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_trenches.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_tripod.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_ui.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_vector.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_vehiclelock.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_vehicles.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_viewdistance.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_weaponselect.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_weather.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_winddeflection.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_yardage450.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@463939057\addons\ace_zeus.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_a1always_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_a1_editorobjects.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_a2_editorobjects.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_aia_compat.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_baseconfig_f.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_buildings.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_a10_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_air2_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_air3_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_air_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_air_d_baf_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_air_e_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_air_pmc_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_animals2_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_buildings.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_buildings2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_buildings2_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_buildings_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_ca_acr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_ca_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_ca_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_ca_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_characters2_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_cti_buildings.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_data.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_data_baf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_data_baf_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_hotfix.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_hotfix_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_l39_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_language.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_languagemissions.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_languagemissions_baf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_languagemissions_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_languagemissions_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_language_acr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_language_baf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_language_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_language_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc3.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc3_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc_acr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc_acr_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc_baf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc_e_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_misc_rtm2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_mp_armory_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_plants.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_plants2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_plants_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_plants_e2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_plants_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_roads.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_roads2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_roads_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_roads_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_roads_rtm2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_rocks.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_rocks2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_rocks_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_signs.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_signs2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_signs_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_sounds_c_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_sounds_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_sounds_e_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_structures.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_structures_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_structures_e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_structures_e_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_structures_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_structures_pmc_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_tracked2_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_tracked_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_tracked_e_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_uifonts.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_ui_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_water2_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_water_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_weapons2_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_weapons_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_weapons_e_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_weapons_pmc_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_wheeled2_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_wheeled_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ca_wheeled_e_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_dbe1_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_dbe1_models_dbe1.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_dbe1_models_dbe1_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_editor_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_hsim_data_h_dummy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_hsim_languagemissions_h.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_hsim_language_h.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_ibr_plants.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_plants.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_roadfix.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_terrains_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_weather.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_winter_animals.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_winter_objects.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_winter_plants.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_winter_roads.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@583496184\addons\cup_terrains_worlds.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_civil_chernarus.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_civil_russia.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_civil_takistan.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_acr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_baf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_cdf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_chedaki.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_delta.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_dummyinfantryset.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_extra.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_germany.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_napa.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_racs.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_russia.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_sla.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_taki.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_takiinsurgents.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_usarmy.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_people_military_usmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_creatures_staticweapons.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_cz.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_cz_acr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_cz_acr_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_cz_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_en.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_en_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_gb_baf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_gb_baf_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_gb_pmc.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_gb_pmc_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_ru.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_ru_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_tk.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497661914\addons\cup_dubbing_radio_tk_c.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_baseconfigs.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_basedata.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_aa12.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_ak.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_ammoboxes.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_ammunition.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_as50.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_awm.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_backpacks.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_bizon.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_bren2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_colt1911.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_compact.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_compatibility.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_curator.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_cz750.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_cz805.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_deagle.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_duty.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_dynamicloadout.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_east_attachments.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_evo.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_fnfal.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_g3.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_g36.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_glock17.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_grenadelaunchers.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_grenades.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_groza.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_hk416.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_huntingrifle.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_igla.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_items.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_javelin.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_kozlice.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_ksvk.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_l129.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_l85.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_leeenfield.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m1014.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m107.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m110.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m136.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m14.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m14_dmr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m16.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m24.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m240.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m249.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m47.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m60e4.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m72a6.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_m9.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_maaws.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_mac10.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_makarov.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_manual.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_metis_at_13.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_mg3.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_microuzi.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_mk23.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_mk48.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_mp5.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_mp7.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_nlaw.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_nvg.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_pb_6p9.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_phantom.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_pk.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_pods.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_put.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_revolver.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_rpg18.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_rpg7.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_sa58.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_sa61.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_saiga12k.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_scar.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_shield.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_smaw.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_sounds.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_soundshaders.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_staticweapons.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_steyr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_stinger.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_strela_2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_svd.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_tec9.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_uk59.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_vehicleweapons.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_vss.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_weaponscore.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_weaponsdata.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_west_attachments.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_x95.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@497660133\addons\cup_weapons_xm8.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_a10.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ah1z.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ah6.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ah64.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ambientplanes.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_an2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_av8b.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_aw159.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_c130j.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ch47.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ch53e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_dc3.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_f35.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_hc3.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ka50.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ka52.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_ka60.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_l39.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mh47e.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mh60s.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mi24.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mi35.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mi6.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mi8.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_motorplane.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mq9.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_mv22.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_pchela1t.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_sa330.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_staticline.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_su25.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_su34.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_uh1h.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_uh1y.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_airvehicles_uh60.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_2s6m.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_aav.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_bmp.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_bmp3.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_bradley.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_bulldog.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_challengerii.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_fv510.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_lcac.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_leopard2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_m113.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_m1_abrams.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_m270.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_m60.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_mcv80.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_mtlb.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_sounds.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_t34.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_t55.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_t72.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_t90.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_trackedvehicles_zsu23.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_vehicles_cfggroups.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_vehicles_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_vehicles_fastrope.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_vehicles_towing.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_fishing_boat.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_fregata.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_lcu1600.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_lcvp.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_lhd.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_lpd.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_mk10.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_pbx.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_rhib.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_seafox.pbo - 1
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_weapons.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_watervehicles_zodiac.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_brdm2.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_btr40.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_btr60.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_btr90.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_core.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_coyote.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_datsun.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_dingo.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_hmmwv.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_ikarus.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_jackal.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_kamaz.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_lada.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_lav25.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_lr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_lsv_02.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_m1030.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_mastiff.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_matv.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_mtvr.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_octavia.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_offroad_02.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_rg31.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_ridgeback.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_rm70.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_s1203.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_skoda.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_strider.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_stryker.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_suv.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_t810.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_towingtractor.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_tractor.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_tt650.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_uaz.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_uphmmwv.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_ural.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_v3s.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_van02.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_vodnik.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_volha.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_vwgolf.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@541888371\addons\cup_wheeledvehicles_wolfhound.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_2s1.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_2s3.pbo - RedHammerStudios.0.4.9.5184.r3914
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_2s3_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_a2port_air.pbo - RedHammerStudios.0.4.9.5220.r3945
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_a2port_armor.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_a2port_armor_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_a2port_car.pbo - RedHammerStudios.0.4.9.5219.r3944
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_a2port_car_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_a3retex.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_accessory.pbo - RedHammerStudios.0.4.9.4887.r3754
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_air.pbo - RedHammerStudios.0.4.9.5196.r3924
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_airweapons.pbo - RedHammerStudios.0.4.9.5196.r3924
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_aps.pbo - RedHammerStudios.0.4.9.5200.r3928
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_bmd.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_bmd_34.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_bmd_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_bmp.pbo - RedHammerStudios.0.4.9.5149.r3888
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_bmp3.pbo - RedHammerStudios.0.4.9.5183.r3913
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_bmp3_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_bmp_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_btr70.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_btr70_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_btr80.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_btr80_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_2s1.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_2s3.pbo - RedHammerStudios.0.4.9.5002.r3822
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_a2port_air.pbo - RedHammerStudios.0.4.9.5235.r3956
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_a2port_armor.pbo - RedHammerStudios.0.4.9.5052.r3847
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_a2port_car.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_a3retex.pbo - RedHammerStudios.0.4.9.5110.r3862
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_air.pbo - RedHammerStudios.0.4.9.4881.r3749
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_airweapons.pbo - RedHammerStudios.0.4.9.5143.r3883
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_bmd.pbo - RedHammerStudios.0.4.9.5048.r3845
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_bmd_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_bmp.pbo - RedHammerStudios.0.4.9.5048.r3845
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_bmp3.pbo - RedHammerStudios.0.4.9.4919.r3776
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_btr.pbo - RedHammerStudios.0.4.9.5052.r3847
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_btr70_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_cars.pbo - RedHammerStudios.0.4.9.5001.r3821
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_cti_indep.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_heavyweapons.pbo - RedHammerStudios.0.4.9.5228.r3952
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_identity.pbo - RedHammerStudios.0.4.9.4661.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_kamaz.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_mi28.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_mig29.pbo - RedHammerStudios.0.4.9.5158.r3893
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_pts.pbo - RedHammerStudios.0.4.9.4824.r3712
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_radars.pbo - RedHammerStudios.0.4.9.4936.r3783
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_radio.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_rva.pbo - RedHammerStudios.0.4.9.4896.r3762
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_sprut.pbo - RedHammerStudios.0.4.9.5159.r3894
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_t14.pbo - RedHammerStudios.0.4.9.5240.r3960
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_t72.pbo - RedHammerStudios.0.4.9.5226.r3950
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_tanks.pbo - RedHammerStudios.0.4.9.5151.r3889
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_troops.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_trucks.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_vehiclesounds.pbo - RedHammerStudios.0.4.9.5243.r3963
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_weapons.pbo - RedHammerStudios.0.4.9.5166.r3898
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_weaponsounds.pbo - RedHammerStudios.0.4.9.4920.r3777
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_c_zil131.pbo - RedHammerStudios.0.4.9.5219.r3944
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_decals.pbo - RedHammerStudios.0.4.9.5189.r3918
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_editorpreviews.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_gaz66.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_gaz66_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_heavyweapons.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_identity.pbo - RedHammerStudios.0.4.9.4661.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_infantry.pbo - RedHammerStudios.0.4.9.5224.r3948
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_infantry2.pbo - RedHammerStudios.0.4.9.5225.r3949
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_inventoryicons.pbo - RedHammerStudios.0.4.9.5181.r3912
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_kamaz.pbo - RedHammerStudios.0.4.9.5193.r3922
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_main.pbo - RedHammerStudios.0.4.9.5228.r3952
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_mi28.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_mig29.pbo - RedHammerStudios.0.4.9.5196.r3924
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_missions.pbo - RedHammerStudios.0.4.9.5204.r3931
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_mtlb.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_muzzleflash.pbo - RedHammerStudios.0.4.9.4862.r3737
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_optics.pbo - RedHammerStudios.0.4.9.5177.r3908
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_props.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_pts.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_radars.pbo - RedHammerStudios.0.4.9.5237.r3958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_servicemenu.pbo - RedHammerStudios.0.4.9.4824.r3712
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_sounds.pbo - RedHammerStudios.0.4.9.5003.r3823
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_sprut.pbo - RedHammerStudios.0.4.9.5159.r3894
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_ss21.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_ss21_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_s_radio.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_s_weaponsounds.pbo - RedHammerStudios.0.4.9.4597.r3610
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_t14.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_t72.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_t72_camo.pbo - RedHammerStudios.0.4.9.4590.r3605
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_t80.pbo - RedHammerStudios.0.4.9.5239.r3959
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_t80u.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_t80u_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_tigr.pbo - RedHammerStudios.0.4.9.5199.r3927
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_vehiclesounds.pbo - RedHammerStudios.0.4.9.5239.r3959
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_vehicle_sounds.pbo - RedHammerStudios.0.4.9.5244.r3964
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_weapons.pbo - RedHammerStudios.0.4.9.5229.r3954
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_weapons2.pbo - RedHammerStudios.0.4.9.5236.r3957
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_weapons3.pbo - RedHammerStudios.0.4.9.5236.r3957
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_weapon_sounds.pbo - RedHammerStudios.0.4.6.4059.r3276
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843425103\addons\rhs_zil131.pbo - RedHammerStudios.0.4.9.5208.r3934
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_a2port_air.pbo - RedHammerStudios.0.4.9.5348.r3659
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_a2port_air2.pbo - RedHammerStudios.0.4.9.5329.r3644
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_a2port_armor.pbo - RedHammerStudios.0.4.9.5088.r3535
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_a2port_car.pbo - RedHammerStudios.0.4.9.5102.r3543
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_airweapons.pbo - RedHammerStudios.0.4.9.5329.r3644
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_caiman.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_cars.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_ch53.pbo - RedHammerStudios.0.4.9.5329.r3644
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_commskit.pbo - RedHammerStudios.0.4.9.4820.r3363
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_cougar.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_a2port_air.pbo - RedHammerStudios.0.4.9.5309.r3626
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_a2port_armor.pbo - RedHammerStudios.0.4.9.5150.r3571
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_a2port_car.pbo - RedHammerStudios.0.4.9.5102.r3543
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_airweapons.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_caiman.pbo - RedHammerStudios.0.4.9.5271.r3602
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_ch53.pbo - RedHammerStudios.0.4.9.5288.r3611
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_commskit.pbo - RedHammerStudios.0.4.9.4820.r3363
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_cougar.pbo - RedHammerStudios.0.4.9.5303.r3622
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_f22.pbo - RedHammerStudios.0.4.9.5292.r3614
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_fmtv.pbo - RedHammerStudios.0.4.9.5341.r3654
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_heavyweapons.pbo - RedHammerStudios.0.4.9.5292.r3614
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_hemtt_a2.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_hemtt_a4.pbo - RedHammerStudios.0.4.9.5322.r3638
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_himars.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_hmmwv.pbo - RedHammerStudios.0.4.9.5340.r3653
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_identity.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_m109.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_m1117.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_m113.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_m1a1.pbo - RedHammerStudios.0.4.9.5150.r3571
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_m1a2.pbo - RedHammerStudios.0.4.9.5147.r3570
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_m252.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_markvsoc.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_melb.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_mrzr.pbo - RedHammerStudios.0.4.9.5351.r3661
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_mtvr.pbo - RedHammerStudios.0.4.9.4966.r3441
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_radio.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_rg33.pbo - RedHammerStudios.0.4.9.5080.r3531
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_rg33l.pbo - RedHammerStudios.0.4.9.5271.r3602
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_socomauv.pbo - RedHammerStudios.0.4.9.5080.r3531
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_statics.pbo - RedHammerStudios.0.4.9.5342.r3655
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_stryker.pbo - RedHammerStudios.0.4.9.5358.r3665
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_troops.pbo - RedHammerStudios.0.4.9.5312.r3629
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_uav.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_vehiclesounds.pbo - RedHammerStudios.0.4.9.5063.r3518
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_weapons.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_c_weaponsounds.pbo - RedHammerStudios.0.4.9.5034.r3495
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_decals.pbo - RedHammerStudios.0.4.9.5317.r3633
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_editorpreviews.pbo - RedHammerStudios.0.4.9.5306.r3624
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_f22.pbo - RedHammerStudios.0.4.9.5328.r3643
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_fmtv.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_heavyweapons.pbo - RedHammerStudios.0.4.9.5337.r3650
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_hemtt_a2.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_hemtt_a4.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_himars.pbo - RedHammerStudios.0.4.9.5323.r3639
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_hmmwv.pbo - RedHammerStudios.0.4.9.5326.r3641
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_infantry.pbo - RedHammerStudios.0.4.9.5352.r3662
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_infantry2.pbo - RedHammerStudios.0.4.9.5349.r3660
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_infantry3.pbo - RedHammerStudios.0.4.9.5312.r3629
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_inventoryicons.pbo - RedHammerStudios.0.4.9.5046.r3506
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_m109.pbo - RedHammerStudios.0.4.8.4554.r3215
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_m1117.pbo - RedHammerStudios.0.4.9.5297.r3617
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_m113.pbo - RedHammerStudios.0.4.9.5303.r3622
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_m1a1.pbo - RedHammerStudios.0.4.9.5300.r3619
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_m1a2.pbo - RedHammerStudios.0.4.9.5147.r3570
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_m252.pbo - RedHammerStudios.0.4.9.5343.r3656
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_main.pbo - RedHammerStudios.0.4.9.5334.r3648
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_markvsoc.pbo - RedHammerStudios.0.4.6.4405.r3113
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_melb.pbo - RedHammerStudios.0.4.6.4433.r3127
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_mrzr.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_mtvr.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_mtvr_tx.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_muzzleflash.pbo - RedHammerStudios.0.4.6.4404.r3112
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_optics.pbo - RedHammerStudios.0.4.9.5118.r3552
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_radio.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_rg33.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_rg33l.pbo - RedHammerStudios.0.4.9.5316.r3632
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_scopes.pbo - RedHammerStudios.0.4.9.5345.r3657
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_socomauv.pbo - RedHammerStudios.0.4.9.5314.r3630
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_sounds.pbo - RedHammerStudios.0.4.9.5277.r3605
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_stryker.pbo - RedHammerStudios.0.4.9.5333.r3647
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_s_radio.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_s_vehiclesounds.pbo - RedHammerStudios.0.4.9.4787.r3341
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_s_weaponsounds.pbo - RedHammerStudios.0.4.9.4919.r3424
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_uav.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_weapons.pbo - RedHammerStudios.0.4.9.5345.r3657
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_weapons2.pbo - RedHammerStudios.0.4.9.5239.r3596
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_weapons3.pbo - RedHammerStudios.0.4.9.5352.r3662
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_weapon_sounds.pbo - RedHammerStudios.0.4.9.4722.r3322
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843577117\addons\rhsusf_xmas.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_a2port_armor.pbo - RedHammerStudios.0.4.9.2367.r1089
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_air.pbo - RedHammerStudios.0.4.9.2354.r1082
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_airweapons.pbo - RedHammerStudios.0.4.9.2372.r1092
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_canoe.pbo - RedHammerStudios.0.4.9.2364.r1088
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_a2port_armor.pbo - RedHammerStudios.0.4.9.2157.r985
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_air.pbo - RedHammerStudios.0.4.9.2361.r1086
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_airweapons.pbo - RedHammerStudios.0.4.9.2354.r1082
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_canoe.pbo - RedHammerStudios.0.4.9.2349.r1079
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_radar.pbo - RedHammerStudios.0.4.9.2139.r980
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_radio.pbo - RedHammerStudios.0.4.9.2139.r980
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_tohport_air.pbo - RedHammerStudios.0.4.9.2351.r1080
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_troops.pbo - RedHammerStudios.0.4.9.2362.r1087
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_vehicles_ret.pbo - RedHammerStudios.0.4.9.2352.r1081
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_c_weapons.pbo - RedHammerStudios.0.4.9.2361.r1086
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_editorpreviews.pbo - RedHammerStudios.0.4.9.2361.r1086
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_infantry.pbo - RedHammerStudios.0.4.9.2380.r1097
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_inventoryicons.pbo - RedHammerStudios.0.4.9.2362.r1087
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_main.pbo - RedHammerStudios.0.4.9.2179.r992
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_muzzleflash.pbo - RedHammerStudios.0.4.9.2180.r993
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_radar.pbo - RedHammerStudios.0.4.8.1872.r921
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_sounds.pbo - RedHammerStudios.0.4.6.1553.r763
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_s_radio.pbo - RedHammerStudios.0.4.6.1550.r760
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_tohport_air.pbo - RedHammerStudios.0.4.9.2373.r1093
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_vehicles_ret.pbo - RedHammerStudios.0.4.9.2237.r1028
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_weapons.pbo - RedHammerStudios.0.4.9.2290.r1053
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_weapons2.pbo - RedHammerStudios.0.4.9.2334.r1071
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_weapons3.pbo - RedHammerStudios.0.4.9.2336.r1072
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843593391\addons\rhsgref_weapon_sounds.pbo - RedHammerStudios.0.4.9.2338.r1073
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_backpacks.pbo - RedHammerStudios.0.4.9.1417.r523
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_binoculars.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_c_gear.pbo - RedHammerStudios.0.4.9.1583.r566
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_c_troops.pbo - RedHammerStudios.0.4.9.1567.r559
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_c_vehicles.pbo - RedHammerStudios.0.4.9.1567.r559
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_c_weapons.pbo - RedHammerStudios.0.4.9.1569.r560
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_editorpreviews.pbo - RedHammerStudios.0.4.9.1565.r558
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_inventoryicons.pbo - RedHammerStudios.0.4.9.1571.r561
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_main.pbo - RedHammerStudios.0.4.9.1567.r559
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_muzzleflash.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_explosives.pbo - RedHammerStudios.0.4.9.1417.r523
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_headgear_beret.pbo - RedHammerStudios.0.4.9.1580.r564
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_headgear_m59.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_headgear_m97.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_headgear_veil.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_uniform_m10.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_uniform_m93.pbo - RedHammerStudios.0.4.9.1443.r527
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_uniform_mdt.pbo - RedHammerStudios.0.4.9.1443.r527
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_uniform_pilot.pbo - RedHammerStudios.0.4.9.1443.r527
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_vest_m12.pbo - RedHammerStudios.0.4.9.1582.r565
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_vest_m98.pbo - RedHammerStudios.0.4.9.1582.r565
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_vest_m99.pbo - RedHammerStudios.0.4.9.1582.r565
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_g36.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_m21.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_m70.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_m70c.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_m76.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_m80.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_m84.pbo - RedHammerStudios.0.4.9.1425.r524
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_m92.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_scar.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_m_weapon_scorpion.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_sounds.pbo - RedHammerStudios.0.4.9.1417.r523
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_explosives.pbo - RedHammerStudios.0.4.7.1140.r476
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_gear_a3.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_headgear_beret.pbo - RedHammerStudios.0.4.9.1580.r564
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_headgear_m59.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_headgear_m97.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_headgear_ret.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_headgear_veil.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_uniform_m10.pbo - RedHammerStudios.0.4.9.1575.r562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_uniform_m93.pbo - RedHammerStudios.0.4.9.1369.r510
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_uniform_mdt.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_uniform_pilot.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_vehicle_ret.pbo - RedHammerStudios.0.4.9.1565.r558
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_vest_m12.pbo - RedHammerStudios.0.4.9.1582.r565
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_vest_m98.pbo - RedHammerStudios.0.4.9.1582.r565
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_vest_m99.pbo - RedHammerStudios.0.4.9.1582.r565
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_g36.pbo - RedHammerStudios.0.4.6.974.r420
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_m21.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_m70.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_m70c.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_m76.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_m80.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_m84.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_m92.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_scar.pbo - RedHammerStudios.0.4.9.1379.r513
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@843632231\addons\rhssaf_t_weapon_scorpion.pbo - RedHammerStudios
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@623475643\addons\3denenhanced.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@549676314\addons\cup_weapons_ace_compat.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1375890861\addons\cup_terrains_ace_compat.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@621650475\addons\cup_vehicles_ace_compat.pbo - 00000000
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_bank.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_buildings.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_buildings2.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_buildings3.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_buildings4.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_objects.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_post.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_residential.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_residential2.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_shopping.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@539126468\addons\mm_showroom.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\data_f_achilles.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\data_f_ares.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\functions_f_achilles.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\functions_f_ares.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\language_f.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\modules_f_achilles.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\modules_f_ares.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\settings_f.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@723217262\addons\ui_f.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\apl_c130.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\asdg_jointrails.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\charlieco89_t5.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\hafm_nh90.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\hafm_nh90_config.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\hlc_core.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\hlc_wp_g3.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\hlc_wp_saw.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_air.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_backpacks.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_core.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_facemasks.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_headgear.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_insignias.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_m07.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_m113.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_troops.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_uniforms.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_units.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_vehicles.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_vests.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@886409446\addons\norg_weapons.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@914182380\addons\earplugs.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@686802825\addons\3den_objects.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@498740884\addons\stui_autobrightness.pbo - STUI_1
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@498740884\addons\stui_core.pbo - 9c4a32c
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@498740884\addons\stui_grouphud.pbo - 9c4a32c
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@498740884\addons\stui_groupindicators.pbo - 9c4a32c
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@498740884\addons\stui_nametags.pbo - 9c4a32c
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@498740884\addons\stui_stamina.pbo - 9c4a32c
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@940841212\addons\umi_bomb_vest.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@940841212\addons\umi_electronics.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@940841212\addons\umi_inventory.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@940841212\addons\umi_mod.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@940841212\addons\umi_static.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@940841212\addons\umi_wearable.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_ai.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_area_markers.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_attributes.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_camera.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_common.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_context_actions.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_context_menu.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_custom_modules.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_dialog.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_doors.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_editor.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_garage.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_inventory.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_main.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_markers_tree.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_modules.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_music.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_remote_control.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_visibility.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1779063631\addons\zen_vision.pbo - c7a791a0
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@779520435\addons\essgoggles.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@779520435\addons\kio_balaclava.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@779520435\addons\shemagh.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@779520435\addons\tryk_backpack.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@779520435\addons\tryk_uniforms.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@779520435\addons\tryk_unit.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@779520435\addons\zara.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1835439845\addons\ace_compat_rhs_afrf3.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1835439845\addons\ace_compat_rhs_gref3.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@1835439845\addons\ace_compat_rhs_usf3.pbo - 7d9a4f47
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@620019431\addons\task_force_radio.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\@620019431\addons\task_force_radio_items.pbo - unknown
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\air_f_enoch.ebo - 145904
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\anims_f_enoch.ebo - 145118
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\armor_f_enoch.ebo - 145904
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\cargoposes_f_enoch.ebo - 142478
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\characters_f_enoch.ebo - 146165
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\data_f_enoch.ebo - 146350
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\dubbing_radio_f_enoch.ebo - 146457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\dubbing_radio_f_enoch_data.ebo - 145776
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\editorpreviews_f_enoch.ebo - 145440
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\functions_f_enoch.ebo - 146457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\languagemissions_f_enoch.ebo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\language_f_enoch.ebo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch.ebo - 146183
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch_data.ebo - 145274
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch_data_layers.ebo - 146184
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch_scenes_f.ebo - 143336
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\missions_f_enoch.ebo - 146307
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\props_f_enoch.ebo - 146202
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\rocks_f_enoch.ebo - 145483
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\soft_f_enoch.ebo - 146254
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\sounds_f_enoch.ebo - 146250
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\static_f_enoch.ebo - 145904
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch.ebo - 145599
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_civilian.ebo - 145482
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_commercial.ebo - 145483
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_cultural.ebo - 145483
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_data.ebo - 145599
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_furniture.ebo - 146303
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_industrial.ebo - 146062
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_infrastructure.ebo - 145637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_military.ebo - 145970
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\supplies_f_enoch.ebo - 146009
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\ui_f_enoch.ebo - 146374
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\vegetation_f_enoch.ebo - 145483
    15:54:41 x:\TCAFiles\Users\vidarp\9428\enoch\addons\weapons_f_enoch.ebo - 146062
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\armor_f_tank.pbo - 141930
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\cargoposes_f_tank.pbo - 128283
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\characters_f_tank.pbo - 144271
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\data_f_tank.pbo - 128203
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\dubbing_f_tank.pbo - 127958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\editorpreviews_f_tank.pbo - 137875
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\functions_f_tank.pbo - 125996
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\languagemissions_f_tank.pbo - 145955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\language_f_tank.pbo - 145959
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\missions_f_tank.pbo - 145022
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\missions_f_tank_data.pbo - 128937
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\modules_f_tank.pbo - 129574
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\music_f_tank.pbo - 127912
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\props_f_tank.pbo - 131702
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\sounds_f_tank.pbo - 143095
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\structures_f_tank.pbo - 137876
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\ui_f_tank.pbo - 132532
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tank\addons\weapons_f_tank.pbo - 144328
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\characters_f_tacops.ebo - 129739
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\data_f_tacops.ebo - 126731
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\dubbing_f_tacops.ebo - 129340
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\functions_f_tacops.ebo - 138026
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\languagemissions_f_tacops.ebo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\language_f_tacops.ebo - 145956
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\missions_f_tacops.ebo - 144976
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\modules_f_tacops.ebo - 145155
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\music_f_tacops.ebo - 124064
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\sounds_f_tacops.ebo - 123795
    15:54:41 x:\TCAFiles\Users\vidarp\9428\tacops\addons\ui_f_tacops.ebo - 124116
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\air_f_orange.pbo - 140132
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\cargoposes_f_orange.pbo - 126225
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\characters_f_orange.pbo - 144813
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\data_f_orange.pbo - 144284
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\dubbing_f_orange.pbo - 121689
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\editorpreviews_f_orange.pbo - 123173
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\functions_f_orange.pbo - 144706
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\languagemissions_f_orange.pbo - 145955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\language_f_orange.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\missions_f_orange.pbo - 141718
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\modules_f_orange.pbo - 143632
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\music_f_orange.pbo - 120725
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\props_f_orange.pbo - 129371
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\soft_f_orange.pbo - 145695
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\sounds_f_orange.pbo - 145695
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\structures_f_orange.pbo - 145776
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\supplies_f_orange.pbo - 129371
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\ui_f_orange.pbo - 123398
    15:54:41 x:\TCAFiles\Users\vidarp\9428\orange\addons\weapons_f_orange.pbo - 145507
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\armor_f_argo.pbo - 129739
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\characters_f_patrol.pbo - 141307
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\data_f_argo.pbo - 128209
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\data_f_patrol.pbo - 141307
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\editorpreviews_f_argo.pbo - 142758
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\functions_f_patrol.pbo - 141510
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\languagemissions_f_patrol.pbo - 145956
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\language_f_argo.pbo - 145959
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\language_f_patrol.pbo - 145955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden.pbo - 135888
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden_data.pbo - 135888
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden_data_layers.pbo - 135888
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden_scenes_f.pbo - 120026
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\missions_f_patrol.pbo - 126663
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\modules_f_patrol.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\music_f_argo.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\props_f_argo.pbo - 129371
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\rocks_f_argo.pbo - 123488
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\sounds_f_patrol.pbo - 119477
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\structures_f_argo.pbo - 142622
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\ui_f_patrol.pbo - 141307
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\vegetation_f_argo.pbo - 137806
    15:54:41 x:\TCAFiles\Users\vidarp\9428\argo\addons\weapons_f_patrol.pbo - 141307
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\air_f_jets.pbo - 143253
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\anims_f_jets.pbo - 123210
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\boat_f_destroyer.pbo - 143297
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\boat_f_jets.pbo - 139711
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\cargoposes_f_jets.pbo - 126225
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\characters_f_jets.pbo - 129739
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\data_f_destroyer.pbo - 132156
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\data_f_jets.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\data_f_sams.pbo - 132140
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\dubbing_f_jets.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\editorpreviews_f_destroyer.pbo - 132141
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\editorpreviews_f_jets.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\editorpreviews_f_sams.pbo - 132141
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\functions_f_destroyer.pbo - 132353
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\functions_f_jets.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\languagemissions_f_jets.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\language_f_destroyer.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\language_f_jets.pbo - 145956
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\language_f_sams.pbo - 145955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\missions_f_jets.pbo - 130755
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\modules_f_jets.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\music_f_jets.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\props_f_destroyer.pbo - 132141
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\props_f_jets.pbo - 129371
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\sounds_f_jets.pbo - 141706
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\static_f_destroyer.pbo - 140243
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\static_f_jets.pbo - 140455
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\static_f_sams.pbo - 140243
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\ui_f_jets.pbo - 126137
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\weapons_f_destroyer.pbo - 132268
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\weapons_f_jets.pbo - 131383
    15:54:41 x:\TCAFiles\Users\vidarp\9428\jets\addons\weapons_f_sams.pbo - 132352
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\air_f_exp.pbo - 140647
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\anims_f_exp.pbo - 126506
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\armor_f_exp.pbo - 141671
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\boat_f_exp.pbo - 129747
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\cargoposes_f_exp.pbo - 126224
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\characters_f_exp.pbo - 145283
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\data_f_exp.pbo - 144298
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_f_exp.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp.pbo - 119458
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\editorpreviews_f_exp.pbo - 144976
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\functions_f_exp.pbo - 144006
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\languagemissions_f_exp.pbo - 145954
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\language_f_exp.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_data_exp.pbo - 136265
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka.pbo - 136265
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka_data.pbo - 135884
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka_data_layers.pbo - 121192
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoa_scenes_f.pbo - 123527
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\missions_f_exp.pbo - 144315
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\missions_f_exp_data.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\missions_f_exp_video.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\modules_f_exp.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\music_f_exp.pbo - 119477
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\music_f_exp_music.pbo - 119477
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\props_f_exp.pbo - 141671
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\rocks_f_exp.pbo - 129683
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\soft_f_exp.pbo - 143031
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\sounds_f_exp.pbo - 145970
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\static_f_exp.pbo - 119478
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp.pbo - 145512
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_civilian.pbo - 145522
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_commercial.pbo - 145522
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_cultural.pbo - 145522
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_data.pbo - 145525
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_industrial.pbo - 145509
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_infrastructure.pbo - 145509
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\supplies_f_exp.pbo - 141575
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\ui_f_exp.pbo - 123398
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\vegetation_f_exp.pbo - 135745
    15:54:41 x:\TCAFiles\Users\vidarp\9428\expansion\addons\weapons_f_exp.pbo - 145053
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\anims_f_mark.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\characters_f_mark.pbo - 129739
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\data_f_mark.pbo - 129371
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\dubbing_f_mark.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\dubbing_f_mp_mark.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\functions_f_mark.pbo - 145637
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\functions_f_mp_mark.pbo - 129434
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\languagemissions_f_mark.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\languagemissions_f_mp_mark.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\language_f_mark.pbo - 145955
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\language_f_mp_mark.pbo - 145959
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mark.pbo - 122301
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mark_data.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mark_video.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mp_mark.pbo - 141704
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mp_mark_data.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\modules_f_mark.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\modules_f_mp_mark.pbo - 143568
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\music_f_mark.pbo - 119477
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\music_f_mark_music.pbo - 119477
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\sounds_f_mark.pbo - 143218
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\static_f_mark.pbo - 140455
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\structures_f_mark.pbo - 140584
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\supplies_f_mark.pbo - 140562
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\ui_f_mark.pbo - 119478
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\ui_f_mp_mark.pbo - 119478
    15:54:41 x:\TCAFiles\Users\vidarp\9428\mark\addons\weapons_f_mark.pbo - 143190
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\air_f_heli.pbo - 140243
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\anims_f_heli.pbo - 123210
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\boat_f_heli.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\cargoposes_f_heli.pbo - 126231
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\data_f_heli.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\dubbing_f_heli.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\functions_f_heli.pbo - 123022
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\languagemissions_f_heli.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\language_f_heli.pbo - 145956
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\missions_f_heli.pbo - 129397
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\missions_f_heli_data.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\missions_f_heli_video.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\modules_f_heli.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\music_f_heli.pbo - 119477
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\music_f_heli_music.pbo - 119477
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\soft_f_heli.pbo - 129742
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\sounds_f_heli.pbo - 119478
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\structures_f_heli.pbo - 141968
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\supplies_f_heli.pbo - 145695
    15:54:41 x:\TCAFiles\Users\vidarp\9428\heli\addons\ui_f_heli.pbo - 119478
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\anims_f_kart.pbo - 123210
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\characters_f_kart.pbo - 133719
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\data_f_kart.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\languagemissions_f_kart.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\language_f_kart.pbo - 145956
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\missions_f_kart.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\missions_f_kart_data.pbo - 119459
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\modules_f_kart.pbo - 128288
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\modules_f_kart_data.pbo - 124178
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\soft_f_kart.pbo - 143035
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\sounds_f_kart.pbo - 125381
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\structures_f_kart.pbo - 123419
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\ui_f_kart.pbo - 119478
    15:54:41 x:\TCAFiles\Users\vidarp\9428\kart\addons\weapons_f_kart.pbo - 138461
    15:54:41 x:\TCAFiles\Users\vidarp\9428\curator\addons\data_f_curator.pbo - 141307
    15:54:41 x:\TCAFiles\Users\vidarp\9428\curator\addons\data_f_curator_music.pbo - 119457
    15:54:41 x:\TCAFiles\Users\vidarp\9428\curator\addons\functions_f_curator.pbo - 144973
    15:54:41 x:\TCAFiles\Users\vidarp\9428\curator\addons\language_f_curator.pbo - 145958
    15:54:41 x:\TCAFiles\Users\vidarp\9428\curator\addons\missions_f_curator.pbo - 121570
    15:54:41 x:\TCAFiles\Users\vidarp\9428\curator\addons\modules_f_curator.pbo - 144810
    15:54:41 x:\TCAFiles\Users\vidarp\9428\curator\addons\ui_f_curator.pbo - 144159
    15:54:41 addons\3den.pbo - 144284
    15:54:41 addons\3den_language.pbo - 145959
    15:54:41 addons\a3.pbo - unknown
    15:54:41 addons\air_f.pbo - 142793
    15:54:41 addons\air_f_beta.pbo - 141933
    15:54:41 addons\air_f_epb.pbo - 145119
    15:54:41 addons\air_f_epc.pbo - 129848
    15:54:41 addons\air_f_gamma.pbo - 130580
    15:54:41 addons\animals_f.pbo - 145321
    15:54:41 addons\animals_f_beta.pbo - 123208
    15:54:41 addons\anims_f.pbo - 146149
    15:54:41 addons\anims_f_bootcamp.pbo - 123209
    15:54:41 addons\anims_f_data.pbo - 144977
    15:54:41 addons\anims_f_epa.pbo - 134499
    15:54:41 addons\anims_f_epc.pbo - 121358
    15:54:41 addons\anims_f_exp_a.pbo - 123209
    15:54:41 addons\anims_f_mod.pbo - 135280
    15:54:41 addons\armor_f.pbo - 129739
    15:54:41 addons\armor_f_beta.pbo - 144321
    15:54:41 addons\armor_f_epb.pbo - 143562
    15:54:41 addons\armor_f_epc.pbo - 135661
    15:54:41 addons\armor_f_gamma.pbo - 143501
    15:54:41 addons\baseconfig_f.pbo - 119457
    15:54:41 addons\boat_f.pbo - 140243
    15:54:41 addons\boat_f_beta.pbo - 132036
    15:54:41 addons\boat_f_epc.pbo - 131911
    15:54:41 addons\boat_f_gamma.pbo - 127529
    15:54:41 addons\cargoposes_f.pbo - 145204
    15:54:41 addons\characters_f.pbo - 146190
    15:54:41 addons\characters_f_beta.pbo - 143051
    15:54:41 addons\characters_f_bootcamp.pbo - 133719
    15:54:41 addons\characters_f_epa.pbo - 143695
    15:54:41 addons\characters_f_epb.pbo - 133719
    15:54:41 addons\characters_f_epc.pbo - 133719
    15:54:41 addons\characters_f_gamma.pbo - 144978
    15:54:41 addons\data_f.pbo - 145327
    15:54:41 addons\data_f_bootcamp.pbo - 129618
    15:54:41 addons\data_f_exp_a.pbo - 119457
    15:54:41 addons\data_f_exp_b.pbo - 119457
    15:54:41 addons\data_f_mod.pbo - 131534
    15:54:41 addons\data_f_warlords.pbo - 142057
    15:54:41 addons\drones_f.pbo - 141085
    15:54:41 addons\dubbing_f.pbo - 119457
    15:54:41 addons\dubbing_f_beta.pbo - 119457
    15:54:41 addons\dubbing_f_bootcamp.pbo - 119457
    15:54:41 addons\dubbing_f_epa.pbo - 119457
    15:54:41 addons\dubbing_f_epb.pbo - 119457
    15:54:41 addons\dubbing_f_epc.pbo - 119457
    15:54:41 addons\dubbing_f_gamma.pbo - 122449
    15:54:41 addons\dubbing_f_warlords.pbo - 136700
    15:54:41 addons\dubbing_radio_f.pbo - 119457
    15:54:41 addons\dubbing_radio_f_data_eng.pbo - 119457
    15:54:41 addons\dubbing_radio_f_data_engb.pbo - 119458
    15:54:41 addons\dubbing_radio_f_data_gre.pbo - 119458
    15:54:41 addons\dubbing_radio_f_data_per.pbo - 119458
    15:54:41 addons\dubbing_radio_f_data_vr.pbo - 119458
    15:54:41 addons\editorpreviews_f.pbo - 142598
    15:54:41 addons\editor_f.pbo - 121103
    15:54:41 addons\functions_f.pbo - 145821
    15:54:41 addons\functions_f_bootcamp.pbo - 146564
    15:54:41 addons\functions_f_epa.pbo - 138704
    15:54:41 addons\functions_f_epc.pbo - 119458
    15:54:41 addons\functions_f_exp_a.pbo - 122619
    15:54:41 addons\functions_f_warlords.pbo - 146489
    15:54:41 addons\languagemissions_f.pbo - 145955
    15:54:41 addons\languagemissions_f_beta.pbo - 145955
    15:54:41 addons\languagemissions_f_bootcamp.pbo - 145958
    15:54:41 addons\languagemissions_f_epa.pbo - 145955
    15:54:41 addons\languagemissions_f_epb.pbo - 145955
    15:54:41 addons\languagemissions_f_epc.pbo - 145955
    15:54:41 addons\languagemissions_f_exp_a.pbo - 145959
    15:54:41 addons\languagemissions_f_gamma.pbo - 145955
    15:54:41 addons\language_f.pbo - 145959
    15:54:41 addons\language_f_beta.pbo - 145957
    15:54:41 addons\language_f_bootcamp.pbo - 145955
    15:54:41 addons\language_f_epa.pbo - 145957
    15:54:41 addons\language_f_epb.pbo - 145957
    15:54:41 addons\language_f_epc.pbo - 145958
    15:54:41 addons\language_f_exp_a.pbo - 145954
    15:54:41 addons\language_f_exp_b.pbo - 145955
    15:54:41 addons\language_f_gamma.pbo - 145956
    15:54:41 addons\language_f_mod.pbo - 145959
    15:54:41 addons\language_f_warlords.pbo - 145954
    15:54:41 addons\map_altis.pbo - 135915
    15:54:41 addons\map_altis_data.pbo - 135904
    15:54:41 addons\map_altis_data_layers.pbo - 135913
    15:54:41 addons\map_altis_data_layers_00_00.pbo - 0000
    15:54:41 addons\map_altis_data_layers_00_01.pbo - 0000
    15:54:41 addons\map_altis_data_layers_01_00.pbo - 0000
    15:54:41 addons\map_altis_data_layers_01_01.pbo - 0000
    15:54:41 addons\map_altis_scenes_f.pbo - 119459
    15:54:41 addons\map_data.pbo - 134124
    15:54:41 addons\map_stratis.pbo - 143708
    15:54:41 addons\map_stratis_data.pbo - 135888
    15:54:41 addons\map_stratis_data_layers.pbo - 135888
    15:54:41 addons\map_stratis_scenes_f.pbo - 119459
    15:54:41 addons\map_vr.pbo - 135900
    15:54:41 addons\map_vr_scenes_f.pbo - 119459
    15:54:41 addons\misc_f.pbo - 119459
    15:54:41 addons\missions_f.pbo - 141704
    15:54:41 addons\missions_f_beta.pbo - 122470
    15:54:41 addons\missions_f_beta_data.pbo - 119459
    15:54:41 addons\missions_f_beta_video.pbo - 119459
    15:54:41 addons\missions_f_bootcamp.pbo - 145509
    15:54:41 addons\missions_f_bootcamp_data.pbo - 119459
    15:54:41 addons\missions_f_bootcamp_video.pbo - 119459
    15:54:41 addons\missions_f_data.pbo - 119459
    15:54:41 addons\missions_f_epa.pbo - 144315
    15:54:41 addons\missions_f_epa_data.pbo - 119459
    15:54:41 addons\missions_f_epa_video.pbo - 119459
    15:54:41 addons\missions_f_epb.pbo - 119459
    15:54:41 addons\missions_f_epc.pbo - 141704
    15:54:41 addons\missions_f_exp_a.pbo - 141704
    15:54:41 addons\missions_f_exp_a_data.pbo - 119459
    15:54:41 addons\missions_f_gamma.pbo - 133233
    15:54:41 addons\missions_f_gamma_data.pbo - 119459
    15:54:41 addons\missions_f_gamma_video.pbo - 119459
    15:54:41 addons\missions_f_video.pbo - 119459
    15:54:41 addons\missions_f_warlords.pbo - 145437
    15:54:41 addons\modules_f.pbo - 142774
    15:54:41 addons\modules_f_beta.pbo - 119459
    15:54:41 addons\modules_f_beta_data.pbo - 119459
    15:54:41 addons\modules_f_bootcamp.pbo - 119459
    15:54:41 addons\modules_f_data.pbo - 122470
    15:54:41 addons\modules_f_epb.pbo - 134655
    15:54:41 addons\modules_f_exp_a.pbo - 119459
    15:54:41 addons\modules_f_warlords.pbo - 144205
    15:54:41 addons\music_f.pbo - 119459
    15:54:41 addons\music_f_bootcamp.pbo - 119459
    15:54:41 addons\music_f_bootcamp_music.pbo - 119459
    15:54:41 addons\music_f_epa.pbo - 119459
    15:54:41 addons\music_f_epa_music.pbo - 119459
    15:54:41 addons\music_f_epb.pbo - 119459
    15:54:41 addons\music_f_epb_music.pbo - 119459
    15:54:41 addons\music_f_epc.pbo - 119459
    15:54:41 addons\music_f_epc_music.pbo - 119477
    15:54:41 addons\music_f_music.pbo - 119477
    15:54:41 addons\plants_f.pbo - 126807
    15:54:41 addons\props_f_exp_a.pbo - 141672
    15:54:41 addons\roads_f.pbo - 127271
    15:54:41 addons\rocks_f.pbo - 143714
    15:54:41 addons\signs_f.pbo - 136481
    15:54:41 addons\soft_f.pbo - 145695
    15:54:41 addons\soft_f_beta.pbo - 146241
    15:54:41 addons\soft_f_bootcamp.pbo - 140052
    15:54:41 addons\soft_f_epc.pbo - 140053
    15:54:41 addons\soft_f_gamma.pbo - 146254
    15:54:41 addons\sounds_f.pbo - 145970
    15:54:41 addons\sounds_f_arsenal.pbo - 143218
    15:54:41 addons\sounds_f_bootcamp.pbo - 119477
    15:54:41 addons\sounds_f_characters.pbo - 143095
    15:54:41 addons\sounds_f_environment.pbo - 143095
    15:54:41 addons\sounds_f_epb.pbo - 126923
    15:54:41 addons\sounds_f_epc.pbo - 125380
    15:54:41 addons\sounds_f_exp_a.pbo - 119477
    15:54:41 addons\sounds_f_mod.pbo - 131534
    15:54:41 addons\sounds_f_sfx.pbo - 143211
    15:54:41 addons\sounds_f_vehicles.pbo - 143097
    15:54:41 addons\static_f.pbo - 140243
    15:54:41 addons\static_f_beta.pbo - 132365
    15:54:41 addons\static_f_gamma.pbo - 122615
    15:54:41 addons\structures_f.pbo - 145694
    15:54:41 addons\structures_f_bootcamp.pbo - 143436
    15:54:41 addons\structures_f_data.pbo - 145525
    15:54:41 addons\structures_f_epa.pbo - 135441
    15:54:41 addons\structures_f_epb.pbo - 126137
    15:54:41 addons\structures_f_epc.pbo - 137806
    15:54:41 addons\structures_f_exp_a.pbo - 132665
    15:54:41 addons\structures_f_households.pbo - 145509
    15:54:41 addons\structures_f_ind.pbo - 145509
    15:54:41 addons\structures_f_mil.pbo - 145694
    15:54:41 addons\structures_f_wrecks.pbo - 145523
    15:54:41 addons\uifonts_f.pbo - 119478
    15:54:41 addons\uifonts_f_data.pbo - 128439
    15:54:41 addons\ui_f.pbo - 145821
    15:54:41 addons\ui_f_bootcamp.pbo - 119478
    15:54:41 addons\ui_f_data.pbo - 139876
    15:54:41 addons\ui_f_exp_a.pbo - 119478
    15:54:41 addons\weapons_f.pbo - 146011
    15:54:41 addons\weapons_f_beta.pbo - 145053
    15:54:41 addons\weapons_f_bootcamp.pbo - 141713
    15:54:41 addons\weapons_f_epa.pbo - 144416
    15:54:41 addons\weapons_f_epb.pbo - 137810
    15:54:41 addons\weapons_f_epc.pbo - 130416
    15:54:41 addons\weapons_f_gamma.pbo - 138461
    15:54:41 addons\weapons_f_mod.pbo - 143522
    15:54:41 
    15:54:41 =======================
    15:54:41 
    15:54:41 ============================================================================================= List of mods ===============================================================================================
    15:54:41 modsReadOnly = true
    15:54:41 safeModsActivated = false
    15:54:41 customMods = true
    15:54:41 hash = '846F7F63D3D0BBE5EA1F11FCE6C3EF2E2D2D7C0C'
    15:54:41 hashShort = 'efd1b409'
    15:54:41                                               name |               modDir |    default |   official |               origin |                                     hash | hashShort | fullPath
    15:54:41 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    15:54:41                      Community Base Addons v3.12.2 |           @450814997 |      false |      false |             GAME DIR | 596849612fd8a689a8413031f103f05b964e468f |  da88ce76 | x:\TCAFiles\Users\vidarp\9428\@450814997
    15:54:41                 Advanced Combat Environment 3.12.6 |           @463939057 |      false |      false |             GAME DIR | 51cca4bbb26be976f46cc89ad3d53f1a243bfbcf |  ccf3ed89 | x:\TCAFiles\Users\vidarp\9428\@463939057
    15:54:41                         CUP Terrains - Core 1.13.0 |           @583496184 |      false |      false |             GAME DIR | 47925a60114c38cc42c3c4e2aa5956cf133ffa18 |  e2c189e9 | x:\TCAFiles\Users\vidarp\9428\@583496184
    15:54:41                                   CUP Units 1.13.0 |           @497661914 |      false |      false |             GAME DIR | 7db1c11fbdf235ef8d6c2a58830aac6281293b68 |   b58a1d6 | x:\TCAFiles\Users\vidarp\9428\@497661914
    15:54:41                                 CUP Weapons 1.13.1 |           @497660133 |      false |      false |             GAME DIR | 769121ff9ac48a71aca6579198fe3f4d8e235eed |    aad991 | x:\TCAFiles\Users\vidarp\9428\@497660133
    15:54:41                                CUP Vehicles 1.13.0 |           @541888371 |      false |      false |             GAME DIR | 44f9cb9dc2a173a8709ab53892394a14fd7d675e |  2dcd48d3 | x:\TCAFiles\Users\vidarp\9428\@541888371
    15:54:41        RHS: Armed Forces of the Russian Federation |           @843425103 |      false |      false |             GAME DIR | 65dc37a4bb75421a8375b7fc0cbb27efba8887ce |  4a2dbedd | x:\TCAFiles\Users\vidarp\9428\@843425103
    15:54:41                          RHS: United States Forces |           @843577117 |      false |      false |             GAME DIR | 4e2f069e091fb4b5b47a43b1c86da0b57e09cf20 |  d65fa4c1 | x:\TCAFiles\Users\vidarp\9428\@843577117
    15:54:41                                          RHS: GREF |           @843593391 |      false |      false |             GAME DIR | 48eaf48c96d0e86236ef52f4b6046e1e21d0b77f |  3fef452a | x:\TCAFiles\Users\vidarp\9428\@843593391
    15:54:41                          RHS: Serbian Armed Forces |           @843632231 |      false |      false |             GAME DIR | a82b47d2441c7312a8f8cbca87ff63b08bf0fbdd |  c5eb4f57 | x:\TCAFiles\Users\vidarp\9428\@843632231
    15:54:41                                      3den Enhanced |           @623475643 |      false |      false |             GAME DIR | d0c618f30bc4844c501355a9b9e25d56c06f3fd2 |  eeda09b0 | x:\TCAFiles\Users\vidarp\9428\@623475643
    15:54:41               CUP Weapons ACE Compatibility 1.13.0 |           @549676314 |      false |      false |             GAME DIR | a465e6083a74e311852532601fedbc4e1c9e2798 |   fa09d95 | x:\TCAFiles\Users\vidarp\9428\@549676314
    15:54:41              CUP Terrains ACE Compatibility 1.12.0 |          @1375890861 |      false |      false |             GAME DIR | 79a824a59c6b76928b391ce0fbb45da2c98b8432 |  419ceee3 | x:\TCAFiles\Users\vidarp\9428\@1375890861
    15:54:41              CUP Vehicles ACE Compatibility 1.12.0 |           @621650475 |      false |      false |             GAME DIR | fd3a4baec5e402939d9d150a69b7727e1c788e06 |  7cab8285 | x:\TCAFiles\Users\vidarp\9428\@621650475
    15:54:41                            Mattaust Buildings Pack |           @539126468 |      false |      false |             GAME DIR | b102c31ca5f775825dee4615f5482da659d62a60 |   b72655e | x:\TCAFiles\Users\vidarp\9428\@539126468
    15:54:41                                   Achilles (1.2.2) |           @723217262 |      false |      false |             GAME DIR | 233199092d6643240eb75db9d8e7ddb50c812a2d |  71d00e09 | x:\TCAFiles\Users\vidarp\9428\@723217262
    15:54:41                        NorG Norwegian Armed Forces |           @886409446 |      false |      false |             GAME DIR | f9bebc4d229ae78021571ac75b5bd43704e51adb |  6c6963b6 | x:\TCAFiles\Users\vidarp\9428\@886409446
    15:54:41                                           Earplugs |           @914182380 |      false |      false |             GAME DIR | ce6c175f76fecb77cad8b8587047bfc232582bb0 |  992d72b5 | x:\TCAFiles\Users\vidarp\9428\@914182380
    15:54:41                                       Eden Objects |           @686802825 |      false |      false |             GAME DIR | 49ce2c4fe64e3b55ac5b04f1e890d0779bac0452 |  c134cf53 | x:\TCAFiles\Users\vidarp\9428\@686802825
    15:54:41                            ShackTac User Interface |           @498740884 |      false |      false |             GAME DIR | 6017b07d0a32d8dfb2015dd952868b5764015fd3 |  ab7edfbc | x:\TCAFiles\Users\vidarp\9428\@498740884
    15:54:41                              Uriki's Mission Items |           @940841212 |      false |      false |             GAME DIR | 6697def80bbdf3f02d1b88a486f24a4502fb3789 |  6f18ad5d | x:\TCAFiles\Users\vidarp\9428\@940841212
    15:54:41                                Zeus Enhanced 1.5.0 |          @1779063631 |      false |      false |             GAME DIR | 1a2f15c32105c54a63a608ee8da66e9231fc2f78 |  3071f83e | x:\TCAFiles\Users\vidarp\9428\@1779063631
    15:54:41                   TRYK's Multi-Play Unifrom's pack |           @779520435 |      false |      false |             GAME DIR | aba46385af3be7b2cb5b2b50bbf92ba1438672c6 |   2118b09 | x:\TCAFiles\Users\vidarp\9428\@779520435
    15:54:41                                        @1835439845 |          @1835439845 |      false |      false |             GAME DIR | 58c99f65c360f9b1f4f318bad3da4b8b35cd90f0 |   837c802 | x:\TCAFiles\Users\vidarp\9428\@1835439845
    15:54:41                  Task Force Arrowhead Radio 0.9.12 |           @620019431 |      false |      false |             GAME DIR | 3028ba91015d709af11bfe12a4c851569d259050 |  ebed631c | x:\TCAFiles\Users\vidarp\9428\@620019431
    15:54:41                          Arma 3 Contact (Platform) |                enoch |       true |       true |             GAME DIR | 5b9e0db7bbf98b33af6040057f7649b015aa922b |  34e25305 | x:\TCAFiles\Users\vidarp\9428\enoch
    15:54:41                                       Arma 3 Tanks |                 tank |       true |       true |             GAME DIR | b7f107a06a03a38d56a8201c4069df69b99759e6 |  51009ca8 | x:\TCAFiles\Users\vidarp\9428\tank
    15:54:41                                     Arma 3 Tac-Ops |               tacops |       true |       true |             GAME DIR | 3eb069414b2dbd7c64de025923878a5acfb883dc |  5ce485e3 | x:\TCAFiles\Users\vidarp\9428\tacops
    15:54:41                                 Arma 3 Laws of War |               orange |       true |       true |             GAME DIR | 1b9219ec97f1a7028faa1e13ad9450d106947640 |  25002cff | x:\TCAFiles\Users\vidarp\9428\orange
    15:54:41                                      Arma 3 Malden |                 argo |       true |       true |             GAME DIR | 7c29900f98565c65eabd39a9d7340b60d52079f1 |  a9053a9d | x:\TCAFiles\Users\vidarp\9428\argo
    15:54:41                                        Arma 3 Jets |                 jets |       true |       true |             GAME DIR | ccb26e587e0c23be821351644773c1a12df5992b |  e04bdd03 | x:\TCAFiles\Users\vidarp\9428\jets
    15:54:41                                        Arma 3 Apex |            expansion |       true |       true |             GAME DIR | fa404bbaaa12f63d31c4ded1b5a6b4ed9353e8c3 |  4597cc77 | x:\TCAFiles\Users\vidarp\9428\expansion
    15:54:41                                    Arma 3 Marksmen |                 mark |       true |       true |             GAME DIR | 1f3d8ddf59fd654c4a5e7ff8a7b16abb24818ad2 |  e557b21c | x:\TCAFiles\Users\vidarp\9428\mark
    15:54:41                                 Arma 3 Helicopters |                 heli |       true |       true |             GAME DIR | cfd7efb0d32702bff71bf12dab6e1f8fb9e03e56 |  1ad66e9e | x:\TCAFiles\Users\vidarp\9428\heli
    15:54:41                                       Arma 3 Karts |                 kart |       true |       true |             GAME DIR | 0ee6edab33dbf94732f9ab3788e9e51281044eda |  315c8631 | x:\TCAFiles\Users\vidarp\9428\kart
    15:54:41                                        Arma 3 Zeus |              curator |       true |       true |             GAME DIR | 8d431a7f57bafbf66308f31629b9b66cede44316 |  8e0683d7 | x:\TCAFiles\Users\vidarp\9428\curator
    15:54:41                                             Arma 3 |                   A3 |       true |       true |            NOT FOUND |                                          |           | 
    15:54:41 ==========================================================================================================================================================================================================
    15:54:41 InitSound ...
    15:54:41 InitSound - complete
    15:54:41 PhysX3 SDK Init started ...
    15:54:41 PhysX3 SDK Init ended.
    15:54:45 [0,37.627,0,"XEH: PreStart started."]
    15:54:45 [CBA] (settings) INFO: Userconfig: Ignored.
    15:54:47 String STR_CUP_dn_US_BDUv2 not found
    15:54:47 String STR_CUP_dn_US_BDUv2_dirty_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll_dirty_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll2_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll2_dirty_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_gloves_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_gloves_dirty_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll_gloves_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll_gloves_dirty_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll2_gloves_base not found
    15:54:47 String STR_CUP_dn_US_BDUv2_roll2_gloves_dirty_base not found
    15:54:47 String STR_CUP_C_dn_EngineeringBag not found
    15:54:58 [0,50.741,0,"XEH: PreStart finished."]
    15:54:58 [XEH]: Cabinet_NATO_F does not support Extended Event Handlers! Addon: @686802825
    15:54:58 [XEH]: Chemlight_Box_F does not support Extended Event Handlers! Addon: @686802825
    15:54:58 [XEH]: KA60_Wreck_F does not support Extended Event Handlers! Addon: @686802825
    15:54:58 [XEH]: Metal_Locker_F does not support Extended Event Handlers! Addon: @686802825
    15:54:58 [XEH]: HAFM_NH90Wreck does not support Extended Event Handlers! Addon: @886409446
    15:54:58 [XEH]: n_tmbn_soldier_base_w does not support Extended Event Handlers! Addon: @886409446
    15:54:58 [XEH]: n_tmbn_at_m72_w does not support Extended Event Handlers! Addon: @886409446
    15:54:58 [XEH]: n_tmbn_armoured_m04_w does not support Extended Event Handlers! Addon: @886409446
    15:54:58 [XEH]: n_tmbn_squad_w does not support Extended Event Handlers! Addon: @886409446
    15:54:58 [XEH]: rhsgred_hidf_cessna_o3a does not support Extended Event Handlers! Addon: @843593391
    15:55:00 core\skyobject\skyobject.p3d: No geometry and no visual shape
    15:55:00 a3\data_f\krater.p3d: No geometry and no visual shape
    15:55:00 a3\data_f\koule.p3d: No geometry and no visual shape
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.scope'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: Error: creating weapon ItemInfo with scope=private
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.displayName'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.nameSound'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.type'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.picture'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.Library'.
    15:55:00 Warning Message: No entry '.libTextDesc'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.model'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.simulation'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightDuration'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightIntensity'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightDiffuse'.
    15:55:00 Warning Message: Size: '/' not an array
    15:55:00 Warning Message: Size: '/' not an array
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightAmbient'.
    15:55:00 Warning Message: Size: '/' not an array
    15:55:00 Warning Message: Size: '/' not an array
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.weaponLockDelay'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.weaponLockSystem'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.cmImmunity'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.weight'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.lockingTargetSound'.
    15:55:00 Warning Message: Size: '/' not an array
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.lockedTargetSound'.
    15:55:00 Warning Message: Size: '/' not an array
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.detectRange'.
    15:55:00 Warning Message: '/' is not a value
    15:55:00 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.muzzles'.
    15:55:00 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.scope'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.model'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.simulation'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.accuracy'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.camouflage'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.audible'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.displayName'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.textSingular'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.speechSingular'.
    15:55:01 unable to load bin\config.bin/CfgVehicles/AnimationSources.speechSingular
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.textPlural'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.speechPlural'.
    15:55:01 unable to load bin\config.bin/CfgVehicles/AnimationSources.speechPlural
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.maxDetectRange'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.detectSkill'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.mineAlertIconRange'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.weaponSlots'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.spotableNightLightsOff'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.spotableDarkNightLightsOff'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.spotableNightLightsOn'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nameSound'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.side'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.destrType'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.picture'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.portrait'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.icon'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.cost'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.fuelCapacity'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.fuelConsumptionRate'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.armor'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.crewCrashProtection'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.damageResistance'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.maxSpeed'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.limitedSpeedCoef'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.secondaryExplosion'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.sensitivity'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.sensitivityEar'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.brakeDistance'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.precision'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.formationX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.formationZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.formationTime'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.steerAheadSimul'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.steerAheadPlan'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.ViewPilot'.
    15:55:01 Warning Message: No entry '.initFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.HeadLimits'.
    15:55:01 Warning Message: No entry '.rotZRadius'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.PilotSpec'.
    15:55:01 Warning Message: No entry '.showHeadPhones'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.predictTurnSimul'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.predictTurnPlan'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.minFireTime'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.enableWatch'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.enableRadio'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportFuel'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportRepair'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportAmmo'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportMaxWeapons'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportMaxMagazines'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportMaxBackpacks'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.allowTabLock'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.showAllTargets'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.TransportWeapons'.
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.TransportMagazines'.
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.alwaysTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irScanToEyeFactor'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irScanRangeMin'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irScanRangeMax'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nightVision'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.laserScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.laserTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nvTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.artilleryTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.artilleryScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nvScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.commanderCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.driverCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.gunnerCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.radarType'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.attendant'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.engineer'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.uavHacker'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.preferRoads'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.hideUnitInfo'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngine'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundDammage'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGetIn'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGetOut'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundServo'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOnInt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOffInt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOnExt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOffExt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundLocked'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundIncommingMissile'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGearUp'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGearDown'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundLandCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundWaterCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundWoodCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundBushCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundBuildingCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundArmorCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.weapons'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.magazines'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.threat'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.type'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.scope'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.model'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.simulation'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.accuracy'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.camouflage'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.audible'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.displayName'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.textSingular'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechSingular'.
    15:55:01 unable to load bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechSingular
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.textPlural'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechPlural'.
    15:55:01 unable to load bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechPlural
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.maxDetectRange'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.detectSkill'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.mineAlertIconRange'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.weaponSlots'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.spotableNightLightsOff'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.spotableDarkNightLightsOff'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.spotableNightLightsOn'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nameSound'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.side'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.destrType'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.picture'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.portrait'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.icon'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.cost'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.fuelCapacity'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.fuelConsumptionRate'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.armor'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.crewCrashProtection'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.damageResistance'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.maxSpeed'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.limitedSpeedCoef'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.secondaryExplosion'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.sensitivity'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.sensitivityEar'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.brakeDistance'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.precision'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.formationX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.formationZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.formationTime'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.steerAheadSimul'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.steerAheadPlan'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.ViewPilot'.
    15:55:01 Warning Message: No entry '.initFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.HeadLimits'.
    15:55:01 Warning Message: No entry '.rotZRadius'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.PilotSpec'.
    15:55:01 Warning Message: No entry '.showHeadPhones'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.predictTurnSimul'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.predictTurnPlan'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.minFireTime'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.enableWatch'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.enableRadio'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportFuel'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportRepair'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportAmmo'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportMaxWeapons'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportMaxMagazines'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportMaxBackpacks'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.allowTabLock'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.showAllTargets'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.TransportWeapons'.
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.TransportMagazines'.
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.alwaysTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irScanToEyeFactor'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irScanRangeMin'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irScanRangeMax'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nightVision'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.laserScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.laserTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nvTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.artilleryTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.artilleryScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nvScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.commanderCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.driverCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.gunnerCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.radarType'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.attendant'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.engineer'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.uavHacker'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.preferRoads'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.hideUnitInfo'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngine'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundDammage'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGetIn'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGetOut'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundServo'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOnInt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOffInt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOnExt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOffExt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundLocked'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundIncommingMissile'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGearUp'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGearDown'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundLandCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundWaterCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundWoodCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundBushCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundBuildingCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundArmorCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.weapons'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.magazines'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.threat'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.type'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.scope'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.model'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.simulation'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.accuracy'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.camouflage'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.audible'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.displayName'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.textSingular'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.speechSingular'.
    15:55:01 unable to load bin\config.bin/CfgVehicles/EventHandlers.speechSingular
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.textPlural'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.speechPlural'.
    15:55:01 unable to load bin\config.bin/CfgVehicles/EventHandlers.speechPlural
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.maxDetectRange'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.detectSkill'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.mineAlertIconRange'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.weaponSlots'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.spotableNightLightsOff'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.spotableDarkNightLightsOff'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.spotableNightLightsOn'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nameSound'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.side'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.destrType'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.picture'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.portrait'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.icon'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.cost'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.fuelCapacity'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.fuelConsumptionRate'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.armor'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.crewCrashProtection'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.damageResistance'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.groupCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.extCameraPosition'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.maxSpeed'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.limitedSpeedCoef'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.secondaryExplosion'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.sensitivity'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.sensitivityEar'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.brakeDistance'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.precision'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.formationX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.formationZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.formationTime'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.steerAheadSimul'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.steerAheadPlan'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.ViewPilot'.
    15:55:01 Warning Message: No entry '.initFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxFov'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.HeadLimits'.
    15:55:01 Warning Message: No entry '.rotZRadius'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleY'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.initAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleX'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.minAngleZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry '.maxAngleZ'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.PilotSpec'.
    15:55:01 Warning Message: No entry '.showHeadPhones'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.predictTurnSimul'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.predictTurnPlan'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.minFireTime'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.enableWatch'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.enableRadio'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportFuel'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportRepair'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportAmmo'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportMaxWeapons'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportMaxMagazines'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportMaxBackpacks'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.allowTabLock'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.showAllTargets'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.TransportWeapons'.
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.TransportMagazines'.
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.alwaysTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irScanToEyeFactor'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irScanRangeMin'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irScanRangeMax'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nightVision'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.laserScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.laserTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nvTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.artilleryTarget'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.artilleryScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nvScanner'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.commanderCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.driverCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.gunnerCanSee'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.radarType'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.attendant'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.engineer'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.uavHacker'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.preferRoads'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.hideUnitInfo'.
    15:55:01 Warning Message: '/' is not a value
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngine'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundDammage'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGetIn'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGetOut'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundServo'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOnInt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOffInt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOnExt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOffExt'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundLocked'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundIncommingMissile'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGearUp'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGearDown'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundLandCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundWaterCrashes'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundWoodCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundBushCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundBuildingCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundArmorCrash'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.weapons'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.magazines'.
    15:55:01 Warning Message: Size: '/' not an array
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.threat'.
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: []: '/' not an array
    15:55:01 Cannot evaluate '' - no file
    15:55:01 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.type'.
    15:55:01 Warning Message: '/' is not a value
    15:55:05 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
    a3_characters_f
    15:55:05 Loading movesType CfgGesturesMale
    15:55:05 Creating action map cache
    15:55:05 MovesType CfgGesturesMale load time 143 ms
    15:55:05 Loading movesType CfgMovesMaleSdr
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/HubBriefing_loop.InterpolateTo: Bad move Acts_Briefing_Intro2_Major_2_temp
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_Driver_in.interpolateTo: Bad move RHS_Stryker_M1126_Driver_in_Dead
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_Driver_out.InterpolateTo: Bad move RHS_Stryker_M1126_Driver_in_Dead
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_gunner_turnout.ConnectTo: Bad move vehicle_turnout_2
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_TC_turnout.ConnectTo: Bad move vehicle_turnout_2
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_AG_in.interpolateTo: Bad move RHS_Stryker_M1126_AG_in_Dead
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_AG_turnout.ConnectTo: Bad move vehicle_turnout_2
    15:55:05   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_AG_turnin.interpolateTo: Bad move RHS_Stryker_M1126_AG_in_Dead
    15:55:05 Reading cached action map data
    15:55:06 Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\briefing\hubbriefing_loop.rtm differs (looped now 0)! MoveName: hubbriefing_ext
    15:55:08 MovesType CfgMovesMaleSdr load time 2985 ms
    15:55:08 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape
    15:55:08 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
    15:55:08 Steam AppId from steam_appid.txt: 107410
    15:55:09 Connected to Steam servers
    15:55:46 Unsupported language English in stringtable
    15:56:06 Admin logged in, player: Vidar Pedersen, playerUID: 76561197982947143, IP: 10.0.0.34:2304.
    15:56:07 Unsupported language English in stringtable
    15:56:09 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item23/Entities/Item2.type: Unknown enum value SeekAndDestroy
    15:56:09 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item23/Entities/Item3.type: Unknown enum value SeekAndDestroy
    15:56:09 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item24/Entities/Item2.type: Unknown enum value SeekAndDestroy
    15:56:09 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item24/Entities/Item3.type: Unknown enum value SeekAndDestroy
    15:56:09 Mission MP_HC_Warlords.Tanoa: Number of roles (16) is different from 'description.ext::Header::maxPlayer' (10)
    15:56:19 Starting mission:
    15:56:19  Mission file: MP_HC_Warlords (__cur_mp)
    15:56:19  Mission world: Tanoa
    15:56:19  Mission directory: mpmissions\__cur_mp.Tanoa\
    15:56:20 a3\data_f\blesk1.p3d: No geometry and no visual shape
    15:56:20 a3\data_f\blesk2.p3d: No geometry and no visual shape
    15:56:20 a3\data_f\raindrop.p3d: No geometry and no visual shape
    15:56:20 a3\map_tanoabuka\data\skydome.p3d: No geometry and no visual shape
    15:56:20 a3\data_f\stars.p3d: No geometry and no visual shape
    15:56:20 a3\map_tanoabuka\data\horizon.p3d: No geometry and no visual shape
    15:56:20 a3\data_f\rainbow.p3d: No geometry and no visual shape
    15:56:23 No more slot to add connection at 015030 (1523.6,3012.8)
    15:56:24 a3\structures_f_exp\signs\companies\cornerads_01_v4_f.p3d: No geometry and no visual shape
    15:56:25 Strange convex component70 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:56:25 Strange convex component75 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:56:25 Strange convex component76 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:56:25 Strange convex component77 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:56:25 Strange convex component78 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:56:25 a3\structures_f_exp\signs\companies\cornerads_01_v1_f.p3d: No geometry and no visual shape
    15:56:26 a3\structures_f_exp\signs\companies\cornerads_01_v3_f.p3d: No geometry and no visual shape
    15:56:27 [16000,139.124,0,"XEH: PreInit started. v"]
    15:56:27 [XEH]: One or more children of class CAManBase do not support Extended Event Handlers. Fall back to loop.
    15:56:27 [CBA] (settings) INFO: Reading settings from settings file.
    15:56:27 [CBA] (settings) INFO: Finished reading settings from settings file.
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M72A6_Loaded and mass of magazine CUP_M72A6_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_M72A6 (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M72A6_Special_Loaded and mass of magazine CUP_M72A6_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_M72A6_Special (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_Igla_Loaded and mass of magazine CUP_Igla_M (156.5+219=375.5) is different from mass of loaded launcher CUP_launch_Igla (156.5). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [CBA] (disposable) WARNING: Mass of launcher CUP_launch_M136_Loaded (147.4) is different from mass of used launcher CUP_launch_M136_Used (107.4). x\cba\addons\disposable\XEH_preInit.sqf:58
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M136_Loaded and mass of magazine CUP_M136_M (147.4+40=187.4) is different from mass of loaded launcher CUP_launch_M136 (147.4). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_NLAW_Loaded and mass of magazine CUP_NLAW_M (169.5+153=322.5) is different from mass of loaded launcher CUP_launch_NLAW (169.5). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [CBA] (disposable) WARNING: Mass of launcher CUP_launch_RPG18_Loaded (57.3) is different from mass of used launcher CUP_launch_RPG18_Used (17.3). x\cba\addons\disposable\XEH_preInit.sqf:58
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_RPG18_Loaded and mass of magazine CUP_RPG18_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_RPG18 (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_FIM92Stinger_Loaded and mass of magazine CUP_Stinger_M (112.2+219=331.2) is different from mass of loaded launcher CUP_launch_FIM92Stinger (112.2). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_9K32Strela_Loaded and mass of magazine CUP_Strela_2_M (114.6+219=333.6) is different from mass of loaded launcher CUP_launch_9K32Strela (114.6). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:27 [ACE] (common) INFO: Parsed Settings Configs [125.0 ms]
    15:56:27 CallExtension loaded: ace_medical (x:\TCAFiles\Users\vidarp\9428\@463939057\ace_medical.dll) [ࠠh
    ]

    15:56:27 "SquadBarDefault: false"
    15:56:27 String STR_RHS_FAC_VDV_45 not found
    15:56:27 String STR_RHS_FAC_VDV_45 not found
    15:56:27 [16000,139.776,0,"XEH: PreInit finished."]
    15:56:28 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape
    15:56:28 Duplicate HitPoint name 'HitGun' in 'B_HMG_01_A_F'
    15:56:28 Duplicate HitPoint name 'HitTurret' in 'B_HMG_01_A_F'
    15:56:28 Dimensions in class B_HMG_01_A_F should be an array of size 2.
    15:56:28 Duplicate HitPoint name 'HitGun' in 'B_static_AT_F'
    15:56:28 Duplicate HitPoint name 'HitTurret' in 'B_static_AT_F'
    15:56:28 Dimensions in class B_static_AT_F should be an array of size 2.
    15:56:28 Duplicate HitPoint name 'HitGun' in 'B_T_Mortar_01_F'
    15:56:28 Duplicate HitPoint name 'HitTurret' in 'B_T_Mortar_01_F'
    15:56:28 Dimensions in class B_T_Mortar_01_F should be an array of size 2.
    15:56:28 Duplicate HitPoint name 'HitGun' in 'B_T_Static_AA_F'
    15:56:28 Duplicate HitPoint name 'HitTurret' in 'B_T_Static_AA_F'
    15:56:28 Dimensions in class B_T_Static_AA_F should be an array of size 2.
    15:56:28 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape
    15:56:28 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape
    15:56:28 z\ace\addons\medical\data\ivbag_1000ml.p3d: No geometry and no visual shape
    15:56:28 z\ace\addons\medical\data\ivbag_500ml.p3d: No geometry and no visual shape
    15:56:28 z\ace\addons\medical\data\ivbag_250ml.p3d: No geometry and no visual shape
    15:56:28 Duplicate HitPoint name 'HitGun' in 'B_HMG_01_F'
    15:56:28 Duplicate HitPoint name 'HitTurret' in 'B_HMG_01_F'
    15:56:28 Dimensions in class B_HMG_01_F should be an array of size 2.
    15:56:28 Duplicate HitPoint name 'HitGun' in 'B_HMG_01_high_F'
    15:56:28 Duplicate HitPoint name 'HitTurret' in 'B_HMG_01_high_F'
    15:56:28 Dimensions in class B_HMG_01_high_F should be an array of size 2.
    15:56:28 a3\structures_f_heli\ind\airport\windsock_01_f.p3d: No geometry and no visual shape
    15:56:28 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape
    15:56:28 z\ace\addons\attach\data\ace_irstrobe.p3d: No geometry and no visual shape
    15:56:28 a3\weapons_f\binocular\nvg_tna_proxy_f.p3d: No geometry and no visual shape
    15:56:28 a3\weapons_f\binocular\nvg_tna_proxy_f.p3d: No geometry and no visual shape
    15:56:28 a3\weapons_f\binocular\nvg_tna_proxy_off_f.p3d: No geometry and no visual shape
    15:56:28 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape
    15:56:28 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.scope'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: Error: creating weapon G_Bandanna_khk with scope=private
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.displayName'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.nameSound'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.type'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.picture'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.Library'.
    15:56:28 Warning Message: No entry '.libTextDesc'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.model'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.simulation'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.fireLightDuration'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.fireLightIntensity'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.fireLightDiffuse'.
    15:56:28 Warning Message: Size: '/' not an array
    15:56:28 Warning Message: Size: '/' not an array
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.fireLightAmbient'.
    15:56:28 Warning Message: Size: '/' not an array
    15:56:28 Warning Message: Size: '/' not an array
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.weaponLockDelay'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.weaponLockSystem'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.cmImmunity'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.weight'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.lockingTargetSound'.
    15:56:28 Warning Message: Size: '/' not an array
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.lockedTargetSound'.
    15:56:28 Warning Message: Size: '/' not an array
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.detectRange'.
    15:56:28 Warning Message: '/' is not a value
    15:56:28 Warning Message: No entry 'bin\config.bin/CfgWeapons/G_Bandanna_khk.muzzles'.
    15:56:28 Warning Message: Size: '/' not an array
    15:56:28 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape
    15:56:30 Unsupported language English in stringtable
    15:56:30 Creation of object C Alpha 1-1 failed, state LOGGED IN
    15:56:30 Creation of object C Alpha 1-1:<Empty main subgroup> failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c269260.
    15:56:30 Client: Nonnetwork object 6c01ec00.
    15:56:30 Ref to nonnetwork object C Alpha 1-1:1
    15:56:30 Creation of object C Alpha 1-1:1 failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c01ec00.
    15:56:30 Creation of object C Alpha 1-2 failed, state LOGGED IN
    15:56:30 Creation of object C Alpha 1-2:<Empty main subgroup> failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c2699e0.
    15:56:30 Client: Nonnetwork object 6c01e980.
    15:56:30 Ref to nonnetwork object C Alpha 1-2:1
    15:56:30 Creation of object C Alpha 1-2:1 failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c01e980.
    15:56:30 Creation of object C Alpha 1-3 failed, state LOGGED IN
    15:56:30 Creation of object C Alpha 1-3:<Empty main subgroup> failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c26a020.
    15:56:30 Client: Nonnetwork object 6c01e700.
    15:56:30 Ref to nonnetwork object C Alpha 1-3:1
    15:56:30 Creation of object C Alpha 1-3:1 failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c01e700.
    15:56:30 Creation of object C Alpha 1-4 failed, state LOGGED IN
    15:56:30 Creation of object C Alpha 1-4:<Empty main subgroup> failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6aee4f40.
    15:56:30 Client: Nonnetwork object 6c01e480.
    15:56:30 Ref to nonnetwork object C Alpha 1-4:1
    15:56:30 Creation of object C Alpha 1-4:1 failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c01e480.
    15:56:30 Creation of object C Alpha 1-5 failed, state LOGGED IN
    15:56:30 Creation of object C Alpha 1-5:<Empty main subgroup> failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6aee5b20.
    15:56:30 Client: Nonnetwork object 6c01e200.
    15:56:30 Ref to nonnetwork object C Alpha 1-5:1
    15:56:30 Creation of object C Alpha 1-5:1 failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c01e200.
    15:56:30 Creation of object C Alpha 1-6 failed, state LOGGED IN
    15:56:30 Creation of object C Alpha 1-6:<Empty main subgroup> failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6aee4220.
    15:56:30 Client: Nonnetwork object 6c01df80.
    15:56:30 Ref to nonnetwork object C Alpha 1-6:1
    15:56:30 Creation of object C Alpha 1-6:1 failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c01df80.
    15:56:30 Creation of object C Alpha 2-1 failed, state LOGGED IN
    15:56:30 Creation of object C Alpha 2-1:<Empty main subgroup> failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6aee5120.
    15:56:30 Client: Nonnetwork object 6c01da80.
    15:56:30 Ref to nonnetwork object C Alpha 2-1:1
    15:56:30 Creation of object C Alpha 2-1:1 failed, state LOGGED IN
    15:56:30 Client: Nonnetwork object 6c01da80.
    15:56:30 "TFAR - No units set for Frequency Module"
    15:56:43 EPE manager release (0|93|0)
    15:56:43 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item23/Entities/Item2.type: Unknown enum value SeekAndDestroy
    15:56:43 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item23/Entities/Item3.type: Unknown enum value SeekAndDestroy
    15:56:43 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item24/Entities/Item2.type: Unknown enum value SeekAndDestroy
    15:56:43 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item24/Entities/Item3.type: Unknown enum value SeekAndDestroy
    15:56:43 Mission MP_HC_Warlords.Tanoa: Number of roles (16) is different from 'description.ext::Header::maxPlayer' (10)
    15:56:48 Starting mission:
    15:56:48  Mission file: MP_HC_Warlords (__cur_mp)
    15:56:48  Mission world: Tanoa
    15:56:48  Mission directory: mpmissions\__cur_mp.Tanoa\
    15:56:48 [16864,160.849,0,"XEH: PreInit started. v"]
    15:56:49 [XEH]: One or more children of class CAManBase do not support Extended Event Handlers. Fall back to loop.
    15:56:49 [CBA] (settings) INFO: Reading settings from settings file.
    15:56:49 [CBA] (settings) INFO: Finished reading settings from settings file.
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M72A6_Loaded and mass of magazine CUP_M72A6_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_M72A6 (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M72A6_Special_Loaded and mass of magazine CUP_M72A6_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_M72A6_Special (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_Igla_Loaded and mass of magazine CUP_Igla_M (156.5+219=375.5) is different from mass of loaded launcher CUP_launch_Igla (156.5). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [CBA] (disposable) WARNING: Mass of launcher CUP_launch_M136_Loaded (147.4) is different from mass of used launcher CUP_launch_M136_Used (107.4). x\cba\addons\disposable\XEH_preInit.sqf:58
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M136_Loaded and mass of magazine CUP_M136_M (147.4+40=187.4) is different from mass of loaded launcher CUP_launch_M136 (147.4). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_NLAW_Loaded and mass of magazine CUP_NLAW_M (169.5+153=322.5) is different from mass of loaded launcher CUP_launch_NLAW (169.5). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [CBA] (disposable) WARNING: Mass of launcher CUP_launch_RPG18_Loaded (57.3) is different from mass of used launcher CUP_launch_RPG18_Used (17.3). x\cba\addons\disposable\XEH_preInit.sqf:58
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_RPG18_Loaded and mass of magazine CUP_RPG18_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_RPG18 (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_FIM92Stinger_Loaded and mass of magazine CUP_Stinger_M (112.2+219=331.2) is different from mass of loaded launcher CUP_launch_FIM92Stinger (112.2). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_9K32Strela_Loaded and mass of magazine CUP_Strela_2_M (114.6+219=333.6) is different from mass of loaded launcher CUP_launch_9K32Strela (114.6). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:56:49 [ACE] (common) INFO: Parsed Settings Configs [88.0 ms]
    15:56:49 "SquadBarDefault: false"
    15:56:49 String STR_RHS_FAC_VDV_45 not found
    15:56:49 String STR_RHS_FAC_VDV_45 not found
    15:56:49 [16864,161.386,0,"XEH: PreInit finished."]
    15:56:49 c:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
    15:56:50 Attempt to override final function - bis_fnc_storeparamsvalues_data
    15:56:50 "TFAR - No units set for Frequency Module"
    15:56:51 Server: Object 2:1266 not found (message Type_274)
    15:56:51 Server: Object 2:1267 not found (message Type_274)
    15:56:51 Server: Object 2:1270 not found (message Type_274)
    15:56:51 Server: Object 2:1271 not found (message Type_274)
    15:57:17  Mission id: 3ff5afd866de68e2aef091ba00d79eb5a0ec235d
    15:57:17 "WL kill log: Vidar Pedersen (76561197982947143) killed by Vidar Pedersen (76561197982947143) at [2781.25,5713.07,0.00143242]"
    15:57:17 Ragdoll - loading of ragdoll source "Soldier" started.
    15:57:17 Ragdoll - loading of ragdoll source "Soldier" finished successfully.
    15:57:18 "WL FF pool :: []"
    15:57:42 Setting invalid pitch -772952223549620660000000000.0000 for C Alpha 2-2:1 REMOTE
    15:57:46 Admin logged out, player: Vidar Pedersen, playerUID: 76561197982947143, IP: 10.0.0.34:2304.
     

     


  12. Trying to set up TFAR on my mission. I have had no issues with it in the past. Suddenly, I get this error message: "No task force radio deployed on server!". Still, I get put in the TFAR-channel in TeamSpeak, but nothing happens in game. 
    What am I doing wrong?

     

    Spoiler
    Spoiler

    =====================================================================
    == x:\TCAFiles\Users\vidarp\9428\arma3server.exe
    == "x:\TCAFiles\Users\vidarp\9428\arma3server.exe" -ip=83.143.83.100 -port=2302 -noPause -noSound "-cfg=A3DS\basic.cfg" "-config=A3DS\server.cfg" "-profiles=A3DS\Profiles" -world=empty "-mod=" "-servermod=" "-mod=@CBA_A3;@ace;@task_force_radio;@cup_core;@CUP_U;@CUP_W;@CUP_V;@RHSAFRF;@RHSUSAF;@3den;@acecup_v;@acecup_w;@a3_custombuild;@achilles;@norgear;@earplugs;@edenobject;@shacktack;@uriki;@zeusen;@multiuni;" "-servermod=@task_force_radio;"  -exThreads=7 

    Original output filename: Arma3Retail_Server
    Exe timestamp: 2019/08/03 03:28:07
    Current time:  2019/10/25 15:32:51

    Type: Public
    Build: Stable
    Version: 1.94.145977

    Allocator: x:\TCAFiles\Users\vidarp\9428\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0]
    PhysMem: 128 GiB, VirtMem : 4.0 GiB, AvailPhys : 67 GiB, AvailVirt : 3.9 GiB, AvailPage : 52 GiB
    =====================================================================

    15:32:51 SteamAPI initialization failed. Steam features won't be accessible!
    15:32:52 Initializing stats manager.
    15:32:52 Stats config disabled.
    15:32:52 sessionID: 180f313e75ef676dc9d70d0338cbbbb8514f1a6e
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unexpected stringtable format inside <Text ID="STR_CUP_ddn_acc_LLM01"><Original>
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Unsupported language English in stringtable
    15:32:56 Item str_dn_2b14 listed twice
    15:32:56 Item str_mn_pg9 listed twice
    15:32:56 Item str_mn_og9 listed twice
    15:32:56 Item str_mn_igla listed twice
    15:32:56 Item str_dn_ags30 listed twice
    15:32:56 Item str_mn_at13 listed twice
    15:32:56 Item str_mn_9k32 listed twice
    15:32:56 Item str_dn_at13 listed twice
    15:32:56 Item str_dn_at13launchersingle listed twice
    15:32:56 Item STR_DN_D30 listed twice
    15:32:56 Item str_dn_dshkm listed twice
    15:32:56 Item str_dn_dshkm_minitripod listed twice
    15:32:56 Item str_lib_m2_mg listed twice
    15:32:56 Item str_lib_m119 listed twice
    15:32:56 Item str_lib_kord listed twice
    15:32:56 Item str_lib_dshkm listed twice
    15:32:56 Item STR_LIB_D30 listed twice
    15:32:56 Item str_lib_ags30 listed twice
    15:32:56 Item str_dn_igla_aa_pod_east listed twice
    15:32:56 Item str_dn_igla_twice listed twice
    15:32:56 Item str_dn_kord listed twice
    15:32:56 Item str_dn_kord_low listed twice
    15:32:56 Item str_dn_m119 listed twice
    15:32:56 Item str_dn_tow_tripod listed twice
    15:32:56 Item str_dn_tow listed twice
    15:32:56 Item str_dn_spg9 listed twice
    15:32:56 Item str_dn_m252 listed twice
    15:32:56 Item str_dn_m2hd_minitripod listed twice
    15:32:56 Item str_dn_m2_mg listed twice
    15:32:56 Item str_dn_mk19_tripod listed twice
    15:32:56 Item str_dn_zu23 listed twice
    15:32:56 Item str_lib_2b14 listed twice
    15:32:56 Item str_lib_at13 listed twice
    15:32:56 Item str_lib_m252 listed twice
    15:32:56 Item str_lib_spg9 listed twice
    15:32:57 Unsupported language English in stringtable
    15:32:58 Unsupported language English in stringtable
    15:32:58 Unsupported language English in stringtable
    15:33:00 Conflicting addon TRYK_Uniform in 'zara\', previous definition in 'tryk_unit\'
    15:33:00 Conflicting addon A3_Sounds_F in 'mm_buildings\prison\sounds\', previous definition in 'mm_bank\sound\'
    15:33:00 Conflicting addon Mattaust_Objects in 'MM_Shopping\', previous definition in 'MM_objects\'
    15:33:00 File 3denEnhanced\GUI\functionsViewer.hpp, line 24: '/Enh_FunctionsViewer/Controls/Header.h': Missing ';' at the end of line
    15:33:00 File 3denEnhanced\GUI\extraction.hpp, line 164: '/Enh_Extraction/Controls/VehicleImage.h': Missing ';' at the end of line
    15:33:03 Conflicting addon asdg_jointrails in 'x\cba\addons\jr\asdg_jointrails\', previous definition in 'asdg_jointrails\'
    15:33:03 Conflicting addon asdg_jointmuzzles in 'x\cba\addons\jr\asdg_jointmuzzles\', previous definition in 'asdg_jointrails\'
    15:33:05 Conflicting addon A3_Sounds_F in 'a3\sounds_f\', previous definition in 'mm_bank\sound\'
    15:33:07 Updating base class ->HouseBase, by ca\roads2\dam\config.bin/CfgVehicles/House/ (original ca\roads2\dam\config.bin)
    15:33:07 Updating base class None->, by Shemagh\config.bin/CfgGlasses/TRYK_headset_glasses/ (original ESSGoggles\config.bin)
    15:33:07 Updating base class ->ItemCore, by TRYK_uniforms\config.bin/cfgWeapons/Vest_Camo_Base/ (original TRYK_uniforms\config.bin)
    15:33:07 Updating base class ->InventoryItem_Base_F, by TRYK_uniforms\config.bin/cfgWeapons/VestItem/ (original TRYK_uniforms\config.bin)
    15:33:07 Updating base class ->NonStrategic, by a3\data_f\config.bin/CfgVehicles/HouseBase/ (original a3\data_f\config.bin)
    15:33:07 Updating base class ->HouseBase, by a3\data_f\config.bin/CfgVehicles/Ruins/ (original a3\data_f\config.bin)
    15:33:07 Updating base class ->DestructionEffects, by a3\data_f\config.bin/CfgVehicles/House/DestructionEffects/ (original a3\data_f\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin)
    15:33:07 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin)
    15:33:07 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin)
    15:33:07 Updating base class ->ruins, by a3\structures_f\config.bin/CfgVehicles/Ruins_F/ (original a3\structures_f\config.bin)
    15:33:07 Updating base class ->ThingX, by a3\structures_f\items\config.bin/CfgVehicles/Items_base_F/ (original a3\structures_f\items\config.bin)
    15:33:07 Updating base class ->EtelkaMonospacePro, by a3\uifonts_f\config.bin/CfgFontFamilies/EtelkaMonospaceProBold/ (original ca\uifonts\config.bin)
    15:33:07 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesBasic/DefaultDie/ (original a3\anims_f\config\sdr\config.bin)
    15:33:07 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/Crew/ (original a3\anims_f\config\sdr\config.bin)
    15:33:07 Updating base class ->AmovPercMstpSnonWnonDnon, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/CutSceneAnimationBase/ (original a3\anims_f\config\sdr\config.bin)
    15:33:07 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin)
    15:33:07 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin)
    15:33:07 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin)
    15:33:07 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin)
    15:33:07 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin)
    15:33:07 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin)
    15:33:07 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin)
    15:33:07 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin)
    15:33:07 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin)
    15:33:07 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin)
    15:33:07 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin)
    15:33:07 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
    15:33:07 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin)
    15:33:07 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin)
    15:33:07 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin)
    15:33:07 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin)
    15:33:07 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin)
    15:33:07 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
    15:33:07 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
    15:33:07 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
    15:33:07 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
    15:33:07 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin)
    15:33:07 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin)
    15:33:07 Updating base class ->WeaponHolder, by a3\weapons_f\config.bin/CfgVehicles/Item_Base_F/ (original a3\weapons_f\config.bin)
    15:33:07 Updating base class ->Default, by a3\weapons_f\config.bin/CfgWeapons/ItemCore/ (original a3\weapons_f\config.bin)
    15:33:07 Updating base class ->ItemCore, by a3\weapons_f\config.bin/CfgWeapons/ItemWatch/ (original a3\weapons_f\config.bin)
    15:33:07 Updating base class ->Binocular, by a3\weapons_f\config.bin/CfgWeapons/NVGoggles/ (original a3\weapons_f\config.bin)
    15:33:07 Updating base class ->InventoryItem_Base_F, by a3\weapons_f\items\config.bin/CfgWeapons/UniformItem/ (original a3\weapons_f\items\config.bin)
    15:33:07 Updating base class ->SoldierWB, by a3\characters_f\config.bin/CfgVehicles/B_Soldier_base_F/ (original a3\characters_f\config.bin)
    15:33:07 Updating base class ->InventoryItem_Base_F, by a3\characters_f\config.bin/CfgWeapons/HeadgearItem/ (original a3\characters_f\config.bin)
    15:33:08 Updating base class ->All, by a3\sounds_f\config.bin/CfgVehicles/Sound/ (original a3\sounds_f\config.bin)
    15:33:08 Updating base class Turrets->Turrets, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/ (original CUP\WaterVehicles\CUP_WaterVehicles_Weapons\config.bin)
    15:33:08 Updating base class ->MainTurret, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/MainTurret/ (original a3\static_f\config.bin)
    15:33:08 Updating base class ItemCore->muzzle_snds_H, by a3\weapons_f\acc\config.bin/CfgWeapons/muzzle_snds_M/ (original hlc_core\config.bin)
    15:33:08 Updating base class ->ItemInfo, by a3\weapons_f\acc\config.bin/CfgWeapons/muzzle_snds_M/ItemInfo/ (original a3\weapons_f\acc\config.bin)
    15:33:08 Updating base class ZavoraAnim->House, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora/ (original ca\buildings_c\config.bin)
    15:33:08 Updating base class ZavoraAnim->Land_zavora_2, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora_2_a1/ (original ca\buildings_c\config.bin)
    15:33:08 Updating base class NewTurret->NewTurret, by a3\soft_f\config.bin/CfgVehicles/Car_F/Turrets/MainTurret/ (original a3\soft_f\config.bin)
    15:33:08 Updating base class ->Wreck_base_F, by a3\structures_f\wrecks\config.bin/CfgVehicles/Land_Wreck_Heli_Attack_01_F/ (original a3\structures_f\wrecks\config.bin)
    15:33:08 Updating base class OpenGate->, by ca\misc3_c\config.bin/CfgVehicles/ZavoraAnim/UserActions/CloseGate/ (original ca\buildings_c\config.bin)
    15:33:08 Updating base class Turrets->, by CUP\AirVehicles\CUP_AirVehicles_MH47E\config.bin/CfgVehicles/Helicopter_Base_F/Turrets/ (original (a3\air_f\config.bin - no unload))
    15:33:08 Updating base class ->Turrets, by a3\air_f_epb\heli_light_03\config.bin/CfgVehicles/Helicopter_Base_F/Turrets/ (original (a3\air_f\config.bin - no unload))
    15:33:08 Updating base class ->Crew, by a3\cargoposes_f\config.bin/CfgMovesMaleSdr/States/crew_tank01_in/ (original a3\cargoposes_f\config.bin)
    15:33:08 Updating base class ->asdg_SlotInfo, by CUP\Weapons\CUP_Weapons_G3\config.bin/asdg_UnderSlot/ (original CUP\Weapons\CUP_Weapons_G3\config.bin)
    15:33:08 Updating base class ->BulletBase, by a3\weapons_f_mark\config.bin/CfgAmmo/B_93x64_Ball/ (original a3\weapons_f_mark\config.bin)
    15:33:08 Updating base class ->SlotInfo, by a3\weapons_f_mark\config.bin/UnderBarrelSlot/ (original a3\weapons_f_mark\config.bin)
    15:33:08 Updating base class ->InventoryItem_Base_F, by a3\weapons_f_mark\acc\config.bin/CfgWeapons/InventoryUnderItem_Base_F/ (original a3\weapons_f_mark\acc\config.bin)
    15:33:08 Updating base class ->asdg_SlotInfo, by asdg_jointrails\config.bin/asdg_FrontSideRail/ (original asdg_jointrails\config.bin)
    15:33:08 Updating base class ->asdg_SlotInfo, by asdg_jointrails\config.bin/asdg_MuzzleSlot/ (original asdg_jointrails\config.bin)
    15:33:08 Updating base class ->asdg_OpticRail, by asdg_jointrails\config.bin/asdg_OpticRail1913/ (original asdg_jointrails\config.bin)
    15:33:08 Updating base class ->asdg_OpticRail1913, by asdg_jointrails\config.bin/asdg_OpticRail1913_short/ (original asdg_jointrails\config.bin)
    15:33:08 Updating base class ->asdg_OpticRail1913, by asdg_jointrails\config.bin/asdg_OpticRail1913_long/ (original asdg_jointrails\config.bin)
    15:33:08 Updating base class CowsSlot->asdg_OpticRail1913, by asdg_jointrails\longrangerifles\gm6\config.bin/CfgWeapons/srifle_GM6_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\longrangerifles\gm6\config.bin)
    15:33:08 Updating base class CowsSlot->asdg_OpticRail1913, by asdg_jointrails\longrangerifles\m320\config.bin/CfgWeapons/srifle_LRR_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\longrangerifles\m320\config.bin)
    15:33:08 Updating base class CowsSlot->asdg_OpticRail1913_short, by asdg_jointrails\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\machineguns\m200\config.bin)
    15:33:08 Updating base class PointerSlot->asdg_FrontSideRail, by asdg_jointrails\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\machineguns\m200\config.bin)
    15:33:08 Updating base class UnderBarrelSlot->asdg_UnderSlot, by asdg_jointrails\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_mark\machineguns\m200\config.bin)
    15:33:08 Updating base class CowsSlot->asdg_OpticRail1913_short, by asdg_jointrails\machineguns\zafir\config.bin/CfgWeapons/LMG_Zafir_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\machineguns\zafir\config.bin)
    15:33:08 Updating base class PointerSlot->asdg_FrontSideRail, by asdg_jointrails\machineguns\zafir\config.bin/CfgWeapons/LMG_Zafir_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\machineguns\zafir\config.bin)
    15:33:08 Updating base class MuzzleSlot->asdg_MuzzleSlot_556, by asdg_jointrails\rifles\mk20\config.bin/CfgWeapons/arifle_Mk20C_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mk20\config.bin)
    15:33:08 Updating base class MuzzleSlot->asdg_MuzzleSlot_556, by asdg_jointrails\rifles\mk20\config.bin/CfgWeapons/arifle_Mk20_GL_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mk20\config.bin)
    15:33:08 Updating base class CowsSlot->asdg_OpticRail1913, by asdg_jointrails\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:33:08 Updating base class PointerSlot->asdg_FrontSideRail, by asdg_jointrails\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:33:08 Updating base class MuzzleSlot->asdg_MuzzleSlot_556, by asdg_jointrails\rifles\trg20\config.bin/CfgWeapons/arifle_TRG20_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\trg20\config.bin)
    15:33:08 Updating base class CUP_Vmlauncher_FFAR_veh->RocketPods, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vmlauncher_CRV7_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin)
    15:33:08 Updating base class CUP_Vacannon_GAU12_veh->CannonCore, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vacannon_GAU22_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin)
    15:33:08 Updating base class ->asdg_OpticSideMount, by CUP\Weapons\CUP_Weapons_East_Attachments\config.bin/CUP_DovetailMount/ (original CUP\Weapons\CUP_Weapons_East_Attachments\config.bin)
    15:33:08 Updating base class ->asdg_MuzzleSlot_762R, by CUP\Weapons\CUP_Weapons_East_Attachments\config.bin/CUP_EastMuzzleSlot9mm/ (original CUP\Weapons\CUP_Weapons_East_Attachments\config.bin)
    15:33:08 Updating base class ->asdg_SlotInfo, by CUP\Weapons\CUP_Weapons_Glock17\config.bin/asdg_PistolUnderRail/ (original CUP\Weapons\CUP_Weapons_Glock17\config.bin)
    15:33:08 Updating base class ->asdg_OpticRail1913_long, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:33:08 Updating base class ->asdg_OpticRail1913_short, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopShortMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:33:08 Updating base class ->asdg_FrontSideRail, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnySideMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:33:08 Updating base class ->asdg_UnderSlot, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyUnderMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:33:08 Updating base class ->ItemCore, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CfgWeapons/CUP_acc_Flashlight/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin)
    15:33:08 Updating base class ->hlc_rifle_g3a3, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3ka4/ (original hlc_wp_g3\config.bin)
    15:33:09 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
    15:33:09 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
    15:33:09 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin)
    15:33:09 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin)
    15:33:09 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin)
    15:33:09 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin)
    15:33:09 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin)
    15:33:09 Updating base class UnderBarrelSlot->asdg_UnderSlot, by asdg_jointrails\longrangerifles\dmr_01\config.bin/CfgWeapons/srifle_DMR_01_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_mark\longrangerifles\dmr_01\config.bin)
    15:33:09 Updating base class UnderBarrelSlot->asdg_UnderSlot, by asdg_jointrails\longrangerifles\ebr\config.bin/CfgWeapons/srifle_EBR_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_mark\longrangerifles\ebr\config.bin)
    15:33:09 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by asdg_jointrails\smgs\pdw2000\config.bin/CfgWeapons/pdw2000_base_F/ (original (a3\weapons_f\smgs\pdw2000\config.bin - no unload))
    15:33:09 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by asdg_jointrails\smgs\smg_01\config.bin/CfgWeapons/SMG_01_Base/ (original (a3\weapons_f\smgs\smg_01\config.bin - no unload))
    15:33:09 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by asdg_jointrails\smgs\smg_02\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
    15:33:09 Updating base class Offroad_01_military_base_F->Offroad_01_base_F, by task_force_radio_items\config.cpp/CfgVehicles/Offroad_01_armed_base_F/ (original a3\soft_f\offroad_01\config.bin)
    15:33:09 Updating base class Car->Car_F, by task_force_radio_items\config.cpp/CfgVehicles/HMMWV_Base/ (original (no unload))
    15:33:09 Updating base class ->HitPoints, by a3\soft_f_exp\lsv_01\config.bin/CfgVehicles/Car_F/HitPoints/ (original (a3\soft_f\config.bin - no unload))
    15:33:10 Updating base class Rifle_Base_F->Rifle_Short_Base_F, by a3\weapons_f_exp\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
    15:33:11 Updating base class ->magazine_Missile_AMRAAM_D_x1, by a3\weapons_f_jets\config.bin/CfgMagazines/PylonMissile_Missile_AMRAAM_D_INT_x1/ (original a3\weapons_f_jets\config.bin)
    15:33:11 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin)
    15:33:11 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin)
    15:33:11 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin)
    15:33:11 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin)
    15:33:11 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin)
    15:33:11 Updating base class ->MissileBase, by a3\weapons_f_tank\config.bin/CfgAmmo/M_Vorona_HEAT/ (original a3\weapons_f_tank\config.bin)
    15:33:11 Updating base class ->MissileLauncher, by a3\weapons_f_tank\config.bin/CfgWeapons/missiles_Vorona/ (original a3\weapons_f_tank\config.bin)
    15:33:11 Updating base class HitPoints->, by CUP\WheeledVehicles\CUP_WheeledVehicles_Coyote\config.bin/CfgVehicles/Car_F/HitPoints/ (original (a3\soft_f\config.bin - no unload))
    15:33:11 Updating base class ->ProxyRetex, by CUP\WheeledVehicles\CUP_WheeledVehicles_Ridgeback\config.bin/CfgNonAIVehicles/Proxywreck/ (original bin\config.bin)
    15:33:12 Updating base class Offroad_01_base_F->Offroad_01_military_base_F, by a3\soft_f_enoch\offroad_01\config.bin/CfgVehicles/Offroad_01_armed_base_F/ (original (a3\soft_f\offroad_01\config.bin - no unload))
    15:33:12 Updating base class ->StaticMGWeapon, by a3\static_f_sams\radar_system_01\config.bin/CfgVehicles/Radar_System_01_base_F/ (original a3\static_f_sams\radar_system_01\config.bin)
    15:33:12 Updating base class ->StaticMGWeapon, by a3\static_f_sams\sam_system_03\config.bin/CfgVehicles/SAM_System_03_base_F/ (original a3\static_f_sams\sam_system_03\config.bin)
    15:33:12 Updating base class ->32Rnd_155mm_Mo_shells, by a3\weapons_f_destroyer\config.bin/CfgMagazines/magazine_ShipCannon_120mm_HE_shells_x32/ (original a3\weapons_f_destroyer\config.bin)
    15:33:12 Updating base class ->6Rnd_155mm_Mo_smoke, by a3\weapons_f_destroyer\config.bin/CfgMagazines/magazine_ShipCannon_120mm_smoke_shells_x6/ (original a3\weapons_f_destroyer\config.bin)
    15:33:12 Updating base class ->mortar_155mm_AMOS, by a3\weapons_f_destroyer\config.bin/CfgWeapons/weapon_ShipCannon_120mm/ (original a3\weapons_f_destroyer\config.bin)
    15:33:12 Updating base class ->BulletBase, by a3\weapons_f_enoch\config.bin/CfgAmmo/B_12Gauge_Pellets_Submunition/ (original a3\weapons_f_enoch\config.bin)
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/arifle_MX_Base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\mx\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/arifle_Katiba_Base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\khaybar\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\machineguns\m200\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\config.bin/CfgWeapons/arifle_MX_SW_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f_exp\config.bin)
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_556, by a3\weapons_f_enoch\config.bin/CfgWeapons/mk20_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\mk20\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_556, by a3\weapons_f_enoch\config.bin/CfgWeapons/Tavor_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\rifles\trg20\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/DMR_03_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f_mark\longrangerifles\dmr_03\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/DMR_06_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f_mark\longrangerifles\dmr_06\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/EBR_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\longrangerifles\ebr\config.bin - no unload))
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\config.bin/CfgWeapons/DMR_01_base_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\longrangerifles\dmr_01\config.bin - no unload))
    15:33:12 Cannot update non class from class a3\weapons_f_enoch\machineguns\m200\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/compatibleItems/
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_762, by a3\weapons_f_enoch\rifles\ak12\config.bin/CfgWeapons/arifle_AK12_base_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f_exp\rifles\ak12\config.bin)
    15:33:12 Updating base class CowsSlot->CowsSlot_Rail, by a3\weapons_f_enoch\rifles\ak12\config.bin/CfgWeapons/arifle_AK12_base_F/WeaponSlotsInfo/CowsSlot/ (original a3\weapons_f_exp\rifles\ak12\config.bin)
    15:33:12 Updating base class UnderBarrelSlot->UnderBarrelSlot_rail, by a3\weapons_f_enoch\rifles\ak12\config.bin/CfgWeapons/arifle_AK12_base_F/WeaponSlotsInfo/UnderBarrelSlot/ (original a3\weapons_f_exp\rifles\ak12\config.bin)
    15:33:12 Updating base class PointerSlot->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_Base_F/WeaponSlotsInfo/PointerSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:33:12 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXC_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:33:12 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:33:12 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_GL_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:33:12 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MX_SW_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:33:12 Updating base class MuzzleSlot->MuzzleSlot_65, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXM_F/WeaponSlotsInfo/MuzzleSlot/ (original a3\weapons_f\rifles\mx\config.bin)
    15:33:12 Updating base class asdg_FrontSideRail->PointerSlot_Rail, by a3\weapons_f_enoch\rifles\mx\config.bin/CfgWeapons/arifle_MXM_F/WeaponSlotsInfo/PointerSlot/ (original asdg_jointrails\rifles\mx\config.bin)
    15:33:12 Updating base class Rifle_Base_F->Rifle_Short_Base_F, by x\cba\addons\jam\config.bin/CfgWeapons/SMG_01_Base/ (original (a3\weapons_f\smgs\smg_01\config.bin - no unload))
    15:33:12 Updating base class ->CBA_Extended_EventHandlers_base, by x\cba\addons\xeh\config.bin/CBA_Extended_EventHandlers/ (original x\cba\addons\xeh\config.bin)
    15:33:12 Updating base class ->EventHandlers, by rhsafrf\addons\rhs_aps\config.bin/CfgVehicles/LaserTarget/EventHandlers/ (original x\cba\addons\xeh\config.bin)
    15:33:13 Updating base class ->rhs_weap_hk416d10, by rhsusf\addons\rhsusf_c_weapons\config.bin/CfgWeapons/rhs_weap_hk416d145/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
    15:33:13 Updating base class ->rhs_weap_hk416d145, by rhsusf\addons\rhsusf_c_weapons\config.bin/CfgWeapons/rhs_weap_hk416d145_m320/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
    15:33:13 Updating base class ->rhsusf_weap_MP7A1_base_f, by rhsusf\addons\rhsusf_c_weapons\config.bin/CfgWeapons/rhsusf_weap_MP7A2/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
    15:33:13 Updating base class ->asdg_OpticRail1913_short, by x\cba\addons\jr\config.bin/asdg_OpticRail1913_short_MG/ (original x\cba\addons\jr\config.bin)
    15:33:13 Updating base class asdg_OpticRail1913->asdg_OpticRail1913_short_MG, by x\cba\addons\jr\config.bin/CfgWeapons/MMG_02_camo_F/WeaponSlotsInfo/CowsSlot/ (original asdg_jointrails\machineguns\mmg_02\config.bin)
    15:33:13 Updating base class Rifle_Base_F->Rifle_Short_Base_F, by x\cba\addons\jr\config.bin/CfgWeapons/pdw2000_base_F/ (original (a3\weapons_f\smgs\pdw2000\config.bin - no unload))
    15:33:13 Updating base class ->SoldierWB, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgVehicles/rhsusf_socom_uniform_base/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_socom_g3_m81_uniform, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgVehicles/rhsusf_infantry_socom_marsoc_base/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->Uniform_Base, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhs_uniform_g3_mc/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->Uniform_Base, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhs_uniform_g3_rgr/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_ach_helmet_ocp, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_opscore_01/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_opscore_01, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_opscore_cover/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_iotv_ocp_base, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_spc, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_rifleman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_corpsman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_crewman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_light/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_marksman/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_mg/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class ->rhsusf_spc_rifleman, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgWeapons/rhsusf_spc_squadleader/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
    15:33:14 Updating base class MuzzleSlot_65->asdg_MuzzleSlot_762MG, by z\ace\addons\flashsuppressors\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/ (original (a3\weapons_f\machineguns\m200\config.bin - no unload))
    15:33:14 Cannot update non class from class z\ace\addons\flashsuppressors\config.bin/CfgWeapons/LMG_Mk200_F/WeaponSlotsInfo/MuzzleSlot/compatibleItems/
    15:33:14 Updating base class EventHandlers->, by z\ace\addons\laser\config.bin/CfgVehicles/LaserTarget/EventHandlers/ (original (x\cba\addons\xeh\config.bin - no unload))
    15:33:14 Updating base class ->RHS_UH1Y, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_UH1Y_FFAR/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:33:14 Updating base class ->RHS_UH1Y, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_UH1Y_GS/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:33:14 Updating base class ->RHS_UH1Y_FFAR, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_UH1Y_UNARMED/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:33:14 Updating base class ->RHS_C130J_Base, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/RHS_C130J/ (original rhsusf\addons\rhsusf_c_a2port_air\config.bin)
    15:33:15 Updating base class ->rhsusf_m109tank_base, by rhsusf\addons\rhsusf_c_m109\config.bin/CfgVehicles/rhsusf_m109_usarmy/ (original rhsusf\addons\rhsusf_c_m109\config.bin)
    15:33:15 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:33:15 Updating base class ->rhsusf_m113_usarmy, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_supply/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:33:15 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_unarmed/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:33:15 Updating base class ->rhsusf_m113_usarmy_unarmed, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_medical/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:33:15 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_M240/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:33:15 Updating base class ->rhsusf_m113tank_base, by rhsusf\addons\rhsusf_c_m113\config.bin/CfgVehicles/rhsusf_m113_usarmy_MK19/ (original rhsusf\addons\rhsusf_c_m113\config.bin)
    15:33:15 Updating base class ModuleBootcampStage_F->Module_F, by achilles\modules_f_achilles\config.bin/CfgVehicles/ModuleHint_F/ (original a3\modules_f_bootcamp\misc\config.bin)
    15:33:17 Updating base class KIA_RHIB_Cargo->DefaultDie, by CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin/CfgMovesMaleSdr/States/Zodiac_Dead/ (original CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin)
    15:33:17 Updating base class Optics_Commander_02->Optics_Armored, by CUP\WheeledVehicles\CUP_WheeledVehicles_BTR90\config.bin/Optics_Commander_03/ (original a3\weapons_f\config.bin)
    15:33:17 Updating base class AnimationSources->AnimationSources, by CUP\WheeledVehicles\CUP_WheeledVehicles_Vodnik\config.bin/CfgVehicles/Wheeled_APC_F/AnimationSources/ (original a3\armor_f_beta\config.bin)
    15:33:22 Initializing Steam Manager
    15:33:22 unable to load subscribed content list. list will be updated from steam
    15:33:22 unable to load published content list. list will be updated from steam
    15:33:22 unable to load cached items meta info. save and update functionality will be broken
    15:33:22 Steam Manager initialized.
    15:33:22 
    15:33:22 ==== Loaded addons ====
    15:33:22 
    15:33:22 dta\bin.pbo - 145977
    15:33:22 dta\core.pbo - 129618
    15:33:22 dta\languagecore_f.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@multiuni\addons\essgoggles.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@multiuni\addons\kio_balaclava.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@multiuni\addons\shemagh.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@multiuni\addons\tryk_backpack.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@multiuni\addons\tryk_uniforms.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@multiuni\addons\tryk_unit.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@multiuni\addons\zara.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_ai.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_area_markers.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_attributes.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_camera.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_common.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_context_actions.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_context_menu.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_custom_modules.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_dialog.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_doors.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_editor.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_garage.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_inventory.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_main.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_markers_tree.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_modules.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_music.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_remote_control.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_visibility.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@zeusen\addons\zen_vision.pbo - c7a791a0
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@uriki\addons\umi_bomb_vest.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@uriki\addons\umi_electronics.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@uriki\addons\umi_inventory.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@uriki\addons\umi_mod.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@uriki\addons\umi_static.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@uriki\addons\umi_wearable.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@shacktack\addons\stui_autobrightness.pbo - STUI_1
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@shacktack\addons\stui_core.pbo - 9c4a32c
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@shacktack\addons\stui_grouphud.pbo - 9c4a32c
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@shacktack\addons\stui_groupindicators.pbo - 9c4a32c
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@shacktack\addons\stui_nametags.pbo - 9c4a32c
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@shacktack\addons\stui_stamina.pbo - 9c4a32c
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@edenobject\addons\3den_objects.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@earplugs\addons\earplugs.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\apl_c130.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\asdg_jointrails.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\charlieco89_t5.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\hafm_nh90.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\hafm_nh90_config.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\hlc_core.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\hlc_wp_g3.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\hlc_wp_saw.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_air.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_backpacks.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_core.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_facemasks.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_headgear.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_insignias.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_m07.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_m113.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_troops.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_uniforms.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_units.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_vehicles.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_vests.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@norgear\addons\norg_weapons.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\data_f_achilles.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\data_f_ares.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\functions_f_achilles.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\functions_f_ares.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\language_f.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\modules_f_achilles.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\modules_f_ares.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\settings_f.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@achilles\addons\ui_f.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_bank.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_buildings.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_buildings2.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_buildings3.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_buildings4.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_objects.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_post.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_residential.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_residential2.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_shopping.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@a3_custombuild\addons\mm_showroom.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@acecup_w\addons\cup_weapons_ace_compat.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@acecup_v\addons\cup_vehicles_ace_compat.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@3den\addons\3denenhanced.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_a2port_air.pbo - RedHammerStudios.0.4.9.5348.r3659
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_a2port_air2.pbo - RedHammerStudios.0.4.9.5329.r3644
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_a2port_armor.pbo - RedHammerStudios.0.4.9.5088.r3535
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_a2port_car.pbo - RedHammerStudios.0.4.9.5102.r3543
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_airweapons.pbo - RedHammerStudios.0.4.9.5329.r3644
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_caiman.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_cars.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_ch53.pbo - RedHammerStudios.0.4.9.5329.r3644
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_commskit.pbo - RedHammerStudios.0.4.9.4820.r3363
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_cougar.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_a2port_air.pbo - RedHammerStudios.0.4.9.5309.r3626
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_a2port_armor.pbo - RedHammerStudios.0.4.9.5150.r3571
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_a2port_car.pbo - RedHammerStudios.0.4.9.5102.r3543
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_airweapons.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_caiman.pbo - RedHammerStudios.0.4.9.5271.r3602
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_ch53.pbo - RedHammerStudios.0.4.9.5288.r3611
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_commskit.pbo - RedHammerStudios.0.4.9.4820.r3363
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_cougar.pbo - RedHammerStudios.0.4.9.5303.r3622
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_f22.pbo - RedHammerStudios.0.4.9.5292.r3614
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_fmtv.pbo - RedHammerStudios.0.4.9.5341.r3654
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_heavyweapons.pbo - RedHammerStudios.0.4.9.5292.r3614
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_hemtt_a2.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_hemtt_a4.pbo - RedHammerStudios.0.4.9.5322.r3638
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_himars.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_hmmwv.pbo - RedHammerStudios.0.4.9.5340.r3653
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_identity.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_m109.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_m1117.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_m113.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_m1a1.pbo - RedHammerStudios.0.4.9.5150.r3571
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_m1a2.pbo - RedHammerStudios.0.4.9.5147.r3570
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_m252.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_markvsoc.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_melb.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_mrzr.pbo - RedHammerStudios.0.4.9.5351.r3661
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_mtvr.pbo - RedHammerStudios.0.4.9.4966.r3441
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_radio.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_rg33.pbo - RedHammerStudios.0.4.9.5080.r3531
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_rg33l.pbo - RedHammerStudios.0.4.9.5271.r3602
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_socomauv.pbo - RedHammerStudios.0.4.9.5080.r3531
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_statics.pbo - RedHammerStudios.0.4.9.5342.r3655
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_stryker.pbo - RedHammerStudios.0.4.9.5358.r3665
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_troops.pbo - RedHammerStudios.0.4.9.5312.r3629
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_uav.pbo - RedHammerStudios.0.4.9.5117.r3551
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_vehiclesounds.pbo - RedHammerStudios.0.4.9.5063.r3518
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_weapons.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_c_weaponsounds.pbo - RedHammerStudios.0.4.9.5034.r3495
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_decals.pbo - RedHammerStudios.0.4.9.5317.r3633
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_editorpreviews.pbo - RedHammerStudios.0.4.9.5306.r3624
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_f22.pbo - RedHammerStudios.0.4.9.5328.r3643
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_fmtv.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_heavyweapons.pbo - RedHammerStudios.0.4.9.5337.r3650
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_hemtt_a2.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_hemtt_a4.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_himars.pbo - RedHammerStudios.0.4.9.5323.r3639
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_hmmwv.pbo - RedHammerStudios.0.4.9.5326.r3641
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_infantry.pbo - RedHammerStudios.0.4.9.5352.r3662
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_infantry2.pbo - RedHammerStudios.0.4.9.5349.r3660
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_infantry3.pbo - RedHammerStudios.0.4.9.5312.r3629
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_inventoryicons.pbo - RedHammerStudios.0.4.9.5046.r3506
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_m109.pbo - RedHammerStudios.0.4.8.4554.r3215
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_m1117.pbo - RedHammerStudios.0.4.9.5297.r3617
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_m113.pbo - RedHammerStudios.0.4.9.5303.r3622
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_m1a1.pbo - RedHammerStudios.0.4.9.5300.r3619
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_m1a2.pbo - RedHammerStudios.0.4.9.5147.r3570
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_m252.pbo - RedHammerStudios.0.4.9.5343.r3656
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_main.pbo - RedHammerStudios.0.4.9.5334.r3648
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_markvsoc.pbo - RedHammerStudios.0.4.6.4405.r3113
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_melb.pbo - RedHammerStudios.0.4.6.4433.r3127
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_mrzr.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_mtvr.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_mtvr_tx.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_muzzleflash.pbo - RedHammerStudios.0.4.6.4404.r3112
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_optics.pbo - RedHammerStudios.0.4.9.5118.r3552
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_radio.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_rg33.pbo - RedHammerStudios.0.4.9.5321.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_rg33l.pbo - RedHammerStudios.0.4.9.5316.r3632
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_scopes.pbo - RedHammerStudios.0.4.9.5345.r3657
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_socomauv.pbo - RedHammerStudios.0.4.9.5314.r3630
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_sounds.pbo - RedHammerStudios.0.4.9.5277.r3605
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_stryker.pbo - RedHammerStudios.0.4.9.5333.r3647
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_s_radio.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_s_vehiclesounds.pbo - RedHammerStudios.0.4.9.4787.r3341
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_s_weaponsounds.pbo - RedHammerStudios.0.4.9.4919.r3424
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_uav.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_weapons.pbo - RedHammerStudios.0.4.9.5345.r3657
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_weapons2.pbo - RedHammerStudios.0.4.9.5239.r3596
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_weapons3.pbo - RedHammerStudios.0.4.9.5352.r3662
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_weapon_sounds.pbo - RedHammerStudios.0.4.9.4722.r3322
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSUSAF\addons\rhsusf_xmas.pbo - RedHammerStudios.0.4.6.4058.r2865
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_2s1.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_2s3.pbo - RedHammerStudios.0.4.9.5184.r3914
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_2s3_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_a2port_air.pbo - RedHammerStudios.0.4.9.5220.r3945
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_a2port_armor.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_a2port_armor_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_a2port_car.pbo - RedHammerStudios.0.4.9.5219.r3944
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_a2port_car_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_a3retex.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_accessory.pbo - RedHammerStudios.0.4.9.4887.r3754
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_air.pbo - RedHammerStudios.0.4.9.5196.r3924
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_airweapons.pbo - RedHammerStudios.0.4.9.5196.r3924
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_aps.pbo - RedHammerStudios.0.4.9.5200.r3928
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_bmd.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_bmd_34.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_bmd_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_bmp.pbo - RedHammerStudios.0.4.9.5149.r3888
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_bmp3.pbo - RedHammerStudios.0.4.9.5183.r3913
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_bmp3_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_bmp_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_btr70.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_btr70_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_btr80.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_btr80_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_2s1.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_2s3.pbo - RedHammerStudios.0.4.9.5002.r3822
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_a2port_air.pbo - RedHammerStudios.0.4.9.5235.r3956
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_a2port_armor.pbo - RedHammerStudios.0.4.9.5052.r3847
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_a2port_car.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_a3retex.pbo - RedHammerStudios.0.4.9.5110.r3862
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_air.pbo - RedHammerStudios.0.4.9.4881.r3749
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_airweapons.pbo - RedHammerStudios.0.4.9.5143.r3883
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_bmd.pbo - RedHammerStudios.0.4.9.5048.r3845
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_bmd_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_bmp.pbo - RedHammerStudios.0.4.9.5048.r3845
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_bmp3.pbo - RedHammerStudios.0.4.9.4919.r3776
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_btr.pbo - RedHammerStudios.0.4.9.5052.r3847
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_btr70_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_cars.pbo - RedHammerStudios.0.4.9.5001.r3821
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_cti_indep.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_heavyweapons.pbo - RedHammerStudios.0.4.9.5228.r3952
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_identity.pbo - RedHammerStudios.0.4.9.4661.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_kamaz.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_mi28.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_mig29.pbo - RedHammerStudios.0.4.9.5158.r3893
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_pts.pbo - RedHammerStudios.0.4.9.4824.r3712
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_radars.pbo - RedHammerStudios.0.4.9.4936.r3783
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_radio.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_rva.pbo - RedHammerStudios.0.4.9.4896.r3762
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_sprut.pbo - RedHammerStudios.0.4.9.5159.r3894
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_t14.pbo - RedHammerStudios.0.4.9.5240.r3960
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_t72.pbo - RedHammerStudios.0.4.9.5226.r3950
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_tanks.pbo - RedHammerStudios.0.4.9.5151.r3889
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_troops.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_trucks.pbo - RedHammerStudios.0.4.9.5155.r3892
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_vehiclesounds.pbo - RedHammerStudios.0.4.9.5243.r3963
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_weapons.pbo - RedHammerStudios.0.4.9.5166.r3898
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_weaponsounds.pbo - RedHammerStudios.0.4.9.4920.r3777
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_c_zil131.pbo - RedHammerStudios.0.4.9.5219.r3944
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_decals.pbo - RedHammerStudios.0.4.9.5189.r3918
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_editorpreviews.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_gaz66.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_gaz66_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_heavyweapons.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_identity.pbo - RedHammerStudios.0.4.9.4661.r3637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_infantry.pbo - RedHammerStudios.0.4.9.5224.r3948
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_infantry2.pbo - RedHammerStudios.0.4.9.5225.r3949
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_inventoryicons.pbo - RedHammerStudios.0.4.9.5181.r3912
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_kamaz.pbo - RedHammerStudios.0.4.9.5193.r3922
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_main.pbo - RedHammerStudios.0.4.9.5228.r3952
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_mi28.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_mig29.pbo - RedHammerStudios.0.4.9.5196.r3924
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_missions.pbo - RedHammerStudios.0.4.9.5204.r3931
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_mtlb.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_muzzleflash.pbo - RedHammerStudios.0.4.9.4862.r3737
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_optics.pbo - RedHammerStudios.0.4.9.5177.r3908
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_props.pbo - RedHammerStudios.0.4.9.5180.r3911
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_pts.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_radars.pbo - RedHammerStudios.0.4.9.5237.r3958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_servicemenu.pbo - RedHammerStudios.0.4.9.4824.r3712
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_sounds.pbo - RedHammerStudios.0.4.9.5003.r3823
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_sprut.pbo - RedHammerStudios.0.4.9.5159.r3894
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_ss21.pbo - RedHammerStudios.0.4.9.5136.r3877
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_ss21_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_s_radio.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_s_weaponsounds.pbo - RedHammerStudios.0.4.9.4597.r3610
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_t14.pbo - RedHammerStudios.0.4.9.5232.r3955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_t72.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_t72_camo.pbo - RedHammerStudios.0.4.9.4590.r3605
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_t80.pbo - RedHammerStudios.0.4.9.5239.r3959
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_t80u.pbo - RedHammerStudios.0.4.9.5198.r3926
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_t80u_camo.pbo - RedHammerStudios.0.4.6.4052.r3269
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_tigr.pbo - RedHammerStudios.0.4.9.5199.r3927
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_vehiclesounds.pbo - RedHammerStudios.0.4.9.5239.r3959
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_vehicle_sounds.pbo - RedHammerStudios.0.4.9.5244.r3964
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_weapons.pbo - RedHammerStudios.0.4.9.5229.r3954
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_weapons2.pbo - RedHammerStudios.0.4.9.5236.r3957
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_weapons3.pbo - RedHammerStudios.0.4.9.5236.r3957
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_weapon_sounds.pbo - RedHammerStudios.0.4.6.4059.r3276
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@RHSAFRF\addons\rhs_zil131.pbo - RedHammerStudios.0.4.9.5208.r3934
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_a10.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ah1z.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ah6.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ah64.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ambientplanes.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_an2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_av8b.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_aw159.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_c130j.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ch47.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ch53e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_dc3.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_f35.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_hc3.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ka50.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ka52.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_ka60.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_l39.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mh47e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mh60s.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mi24.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mi35.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mi6.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mi8.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_motorplane.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mq9.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_mv22.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_pchela1t.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_sa330.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_staticline.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_su25.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_su34.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_uh1h.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_uh1y.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_airvehicles_uh60.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_2s6m.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_aav.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_bmp.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_bmp3.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_bradley.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_bulldog.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_challengerii.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_fv510.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_lcac.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_leopard2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_m113.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_m1_abrams.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_m270.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_m60.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_mcv80.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_mtlb.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_sounds.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_t34.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_t55.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_t72.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_t90.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_trackedvehicles_zsu23.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_vehicles_cfggroups.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_vehicles_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_vehicles_fastrope.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_vehicles_towing.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_fishing_boat.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_fregata.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_lcu1600.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_lcvp.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_lhd.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_lpd.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_mk10.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_pbx.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_rhib.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_seafox.pbo - 1
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_weapons.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_watervehicles_zodiac.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_brdm2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_btr40.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_btr60.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_btr90.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_coyote.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_datsun.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_dingo.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_hmmwv.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_ikarus.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_jackal.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_kamaz.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_lada.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_lav25.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_lr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_lsv_02.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_m1030.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_mastiff.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_matv.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_mtvr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_octavia.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_offroad_02.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_rg31.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_ridgeback.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_rm70.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_s1203.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_skoda.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_strider.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_stryker.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_suv.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_t810.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_towingtractor.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_tractor.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_tt650.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_uaz.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_uphmmwv.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_ural.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_v3s.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_van02.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_vodnik.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_volha.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_vwgolf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_V\addons\cup_wheeledvehicles_wolfhound.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_baseconfigs.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_basedata.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_aa12.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_ak.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_ammoboxes.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_ammunition.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_as50.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_awm.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_backpacks.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_bizon.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_bren2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_colt1911.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_compact.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_compatibility.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_curator.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_cz750.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_cz805.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_deagle.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_duty.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_dynamicloadout.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_east_attachments.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_evo.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_fnfal.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_g3.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_g36.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_glock17.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_grenadelaunchers.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_grenades.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_groza.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_hk416.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_huntingrifle.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_igla.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_items.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_javelin.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_kozlice.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_ksvk.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_l129.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_l85.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_leeenfield.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m1014.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m107.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m110.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m136.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m14.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m14_dmr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m16.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m24.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m240.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m249.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m47.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m60e4.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m72a6.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_m9.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_maaws.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_mac10.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_makarov.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_manual.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_metis_at_13.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_mg3.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_microuzi.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_mk23.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_mk48.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_mp5.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_mp7.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_nlaw.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_nvg.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_pb_6p9.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_phantom.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_pk.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_pods.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_put.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_revolver.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_rpg18.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_rpg7.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_sa58.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_sa61.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_saiga12k.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_scar.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_shield.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_smaw.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_sounds.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_soundshaders.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_staticweapons.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_steyr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_stinger.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_strela_2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_svd.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_tec9.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_uk59.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_vehicleweapons.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_vss.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_weaponscore.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_weaponsdata.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_west_attachments.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_x95.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_W\addons\cup_weapons_xm8.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_civil_chernarus.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_civil_russia.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_civil_takistan.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_acr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_baf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_cdf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_chedaki.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_delta.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_dummyinfantryset.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_extra.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_germany.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_napa.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_racs.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_russia.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_sla.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_taki.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_takiinsurgents.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_usarmy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_people_military_usmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_creatures_staticweapons.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_cz.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_cz_acr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_cz_acr_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_cz_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_en.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_en_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_gb_baf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_gb_baf_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_gb_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_gb_pmc_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_ru.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_ru_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_tk.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CUP_U\addons\cup_dubbing_radio_tk_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_a1always_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_a1_editorobjects.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_a2_editorobjects.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_aia_compat.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_baseconfig_f.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_buildings.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_a10_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_air2_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_air3_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_air_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_air_d_baf_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_air_e_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_air_pmc_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_animals2_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_buildings.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_buildings2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_buildings2_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_buildings_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_ca_acr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_ca_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_ca_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_ca_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_characters2_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_cti_buildings.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_data.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_data_baf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_data_baf_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_hotfix.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_hotfix_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_l39_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_language.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_languagemissions.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_languagemissions_baf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_languagemissions_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_languagemissions_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_language_acr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_language_baf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_language_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_language_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc3.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc3_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc_acr.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc_acr_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc_baf.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc_e_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_misc_rtm2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_mp_armory_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_plants.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_plants2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_plants_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_plants_e2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_plants_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_roads.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_roads2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_roads_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_roads_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_roads_rtm2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_rocks.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_rocks2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_rocks_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_signs.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_signs2.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_signs_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_sounds_c_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_sounds_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_sounds_e_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_structures.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_structures_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_structures_e.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_structures_e_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_structures_pmc.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_structures_pmc_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_tracked2_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_tracked_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_tracked_e_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_uifonts.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_ui_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_water2_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_water_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_weapons2_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_weapons_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_weapons_e_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_weapons_pmc_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_wheeled2_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_wheeled_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ca_wheeled_e_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_dbe1_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_dbe1_models_dbe1.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_dbe1_models_dbe1_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_editor_c.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_hsim_data_h_dummy.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_hsim_languagemissions_h.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_hsim_language_h.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_ibr_plants.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_plants.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_roadfix.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_terrains_core.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_weather.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_winter_animals.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_winter_objects.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_winter_plants.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_winter_roads.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@cup_core\addons\cup_terrains_worlds.pbo - 00000000
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@task_force_radio\addons\task_force_radio.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@task_force_radio\addons\task_force_radio_items.pbo - unknown
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_advanced_ballistics.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_advanced_fatigue.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_advanced_throwing.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_ai.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_aircraft.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_apl.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_arsenal.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_atragmx.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_attach.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_backpacks.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_ballistics.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_captives.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_cargo.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_chemlights.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_common.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_concertina_wire.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_cookoff.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_dagr.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_disarming.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_disposable.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_dogtags.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_dragging.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_explosives.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_fastroping.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_fcs.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_finger.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_flashlights.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_flashsuppressors.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_fonts.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_frag.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_gestures.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_gforces.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_goggles.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_grenades.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_gunbag.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_hearing.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_hellfire.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_hitreactions.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_hot.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_huntir.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_interaction.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_interact_menu.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_inventory.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_javelin.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_kestrel4500.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_laser.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_laserpointer.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_logistics_uavbattery.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_logistics_wirecutter.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_magazinerepack.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_main.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_map.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_maptools.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_map_gestures.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_markers.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_maverick.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_medical.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_medical_ai.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_medical_blood.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_medical_menu.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_microdagr.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_minedetector.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_missileguidance.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_missionmodules.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_mk6mortar.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_modules.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_movement.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_mx2a.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_nametags.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_nightvision.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_nlaw.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_noidle.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_noradio.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_norearm.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_optics.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_optionsmenu.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_overheating.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_overpressure.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_parachute.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_pylons.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_quickmount.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_rangecard.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_realisticnames.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_realisticweights.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_rearm.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_recoil.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_refuel.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_reload.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_reloadlaunchers.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_repair.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_respawn.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_safemode.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_sandbag.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_scopes.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_slideshow.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_smallarms.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_spectator.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_spottingscope.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_switchunits.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_tacticalladder.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_tagging.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_thermals.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_trenches.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_tripod.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_ui.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_vector.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_vehiclelock.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_vehicles.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_viewdistance.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_weaponselect.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_weather.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_winddeflection.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_yardage450.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@ace\addons\ace_zeus.pbo - 7d9a4f47
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_accessory.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_ai.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_arrays.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_common.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_diagnostic.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_disposable.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_ee.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_events.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_hashes.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_help.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_jam.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_jr.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_keybinding.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_main.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_main_a3.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_modules.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_music.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_network.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_optics.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_settings.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_statemachine.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_strings.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_ui.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_vectors.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_versioning.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\@CBA_A3\addons\cba_xeh.pbo - 7c4e6bdd
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\air_f_enoch.ebo - 145904
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\anims_f_enoch.ebo - 145118
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\armor_f_enoch.ebo - 145904
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\cargoposes_f_enoch.ebo - 142478
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\characters_f_enoch.ebo - 146165
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\data_f_enoch.ebo - 146350
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\dubbing_radio_f_enoch.ebo - 146457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\dubbing_radio_f_enoch_data.ebo - 145776
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\editorpreviews_f_enoch.ebo - 145440
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\functions_f_enoch.ebo - 146457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\languagemissions_f_enoch.ebo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\language_f_enoch.ebo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch.ebo - 146183
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch_data.ebo - 145274
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch_data_layers.ebo - 146184
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\map_enoch_scenes_f.ebo - 143336
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\missions_f_enoch.ebo - 146307
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\props_f_enoch.ebo - 146202
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\rocks_f_enoch.ebo - 145483
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\soft_f_enoch.ebo - 146254
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\sounds_f_enoch.ebo - 146250
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\static_f_enoch.ebo - 145904
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch.ebo - 145599
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_civilian.ebo - 145482
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_commercial.ebo - 145483
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_cultural.ebo - 145483
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_data.ebo - 145599
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_furniture.ebo - 146303
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_industrial.ebo - 146062
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_infrastructure.ebo - 145637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\structures_f_enoch_military.ebo - 145970
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\supplies_f_enoch.ebo - 146009
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\ui_f_enoch.ebo - 146374
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\vegetation_f_enoch.ebo - 145483
    15:33:22 x:\TCAFiles\Users\vidarp\9428\enoch\addons\weapons_f_enoch.ebo - 146062
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\armor_f_tank.pbo - 141930
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\cargoposes_f_tank.pbo - 128283
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\characters_f_tank.pbo - 144271
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\data_f_tank.pbo - 128203
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\dubbing_f_tank.pbo - 127958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\editorpreviews_f_tank.pbo - 137875
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\functions_f_tank.pbo - 125996
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\languagemissions_f_tank.pbo - 145955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\language_f_tank.pbo - 145959
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\missions_f_tank.pbo - 145022
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\missions_f_tank_data.pbo - 128937
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\modules_f_tank.pbo - 129574
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\music_f_tank.pbo - 127912
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\props_f_tank.pbo - 131702
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\sounds_f_tank.pbo - 143095
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\structures_f_tank.pbo - 137876
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\ui_f_tank.pbo - 132532
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tank\addons\weapons_f_tank.pbo - 144328
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\characters_f_tacops.ebo - 129739
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\data_f_tacops.ebo - 126731
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\dubbing_f_tacops.ebo - 129340
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\functions_f_tacops.ebo - 138026
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\languagemissions_f_tacops.ebo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\language_f_tacops.ebo - 145956
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\missions_f_tacops.ebo - 144976
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\modules_f_tacops.ebo - 145155
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\music_f_tacops.ebo - 124064
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\sounds_f_tacops.ebo - 123795
    15:33:22 x:\TCAFiles\Users\vidarp\9428\tacops\addons\ui_f_tacops.ebo - 124116
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\air_f_orange.pbo - 140132
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\cargoposes_f_orange.pbo - 126225
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\characters_f_orange.pbo - 144813
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\data_f_orange.pbo - 144284
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\dubbing_f_orange.pbo - 121689
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\editorpreviews_f_orange.pbo - 123173
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\functions_f_orange.pbo - 144706
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\languagemissions_f_orange.pbo - 145955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\language_f_orange.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\missions_f_orange.pbo - 141718
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\modules_f_orange.pbo - 143632
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\music_f_orange.pbo - 120725
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\props_f_orange.pbo - 129371
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\soft_f_orange.pbo - 145695
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\sounds_f_orange.pbo - 145695
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\structures_f_orange.pbo - 145776
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\supplies_f_orange.pbo - 129371
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\ui_f_orange.pbo - 123398
    15:33:22 x:\TCAFiles\Users\vidarp\9428\orange\addons\weapons_f_orange.pbo - 145507
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\armor_f_argo.pbo - 129739
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\characters_f_patrol.pbo - 141307
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\data_f_argo.pbo - 128209
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\data_f_patrol.pbo - 141307
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\editorpreviews_f_argo.pbo - 142758
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\functions_f_patrol.pbo - 141510
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\languagemissions_f_patrol.pbo - 145956
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\language_f_argo.pbo - 145959
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\language_f_patrol.pbo - 145955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden.pbo - 135888
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden_data.pbo - 135888
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden_data_layers.pbo - 135888
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\map_malden_scenes_f.pbo - 120026
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\missions_f_patrol.pbo - 126663
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\modules_f_patrol.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\music_f_argo.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\props_f_argo.pbo - 129371
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\rocks_f_argo.pbo - 123488
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\sounds_f_patrol.pbo - 119477
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\structures_f_argo.pbo - 142622
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\ui_f_patrol.pbo - 141307
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\vegetation_f_argo.pbo - 137806
    15:33:22 x:\TCAFiles\Users\vidarp\9428\argo\addons\weapons_f_patrol.pbo - 141307
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\air_f_jets.pbo - 143253
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\anims_f_jets.pbo - 123210
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\boat_f_destroyer.pbo - 143297
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\boat_f_jets.pbo - 139711
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\cargoposes_f_jets.pbo - 126225
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\characters_f_jets.pbo - 129739
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\data_f_destroyer.pbo - 132156
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\data_f_jets.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\data_f_sams.pbo - 132140
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\dubbing_f_jets.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\editorpreviews_f_destroyer.pbo - 132141
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\editorpreviews_f_jets.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\editorpreviews_f_sams.pbo - 132141
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\functions_f_destroyer.pbo - 132353
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\functions_f_jets.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\languagemissions_f_jets.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\language_f_destroyer.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\language_f_jets.pbo - 145956
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\language_f_sams.pbo - 145955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\missions_f_jets.pbo - 130755
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\modules_f_jets.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\music_f_jets.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\props_f_destroyer.pbo - 132141
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\props_f_jets.pbo - 129371
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\sounds_f_jets.pbo - 141706
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\static_f_destroyer.pbo - 140243
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\static_f_jets.pbo - 140455
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\static_f_sams.pbo - 140243
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\ui_f_jets.pbo - 126137
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\weapons_f_destroyer.pbo - 132268
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\weapons_f_jets.pbo - 131383
    15:33:22 x:\TCAFiles\Users\vidarp\9428\jets\addons\weapons_f_sams.pbo - 132352
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\air_f_exp.pbo - 140647
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\anims_f_exp.pbo - 126506
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\armor_f_exp.pbo - 141671
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\boat_f_exp.pbo - 129747
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\cargoposes_f_exp.pbo - 126224
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\characters_f_exp.pbo - 145283
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\data_f_exp.pbo - 144298
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_f_exp.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp.pbo - 119458
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\editorpreviews_f_exp.pbo - 144976
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\functions_f_exp.pbo - 144006
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\languagemissions_f_exp.pbo - 145954
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\language_f_exp.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_data_exp.pbo - 136265
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka.pbo - 136265
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka_data.pbo - 135884
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka_data_layers.pbo - 121192
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\map_tanoa_scenes_f.pbo - 123527
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\missions_f_exp.pbo - 144315
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\missions_f_exp_data.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\missions_f_exp_video.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\modules_f_exp.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\music_f_exp.pbo - 119477
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\music_f_exp_music.pbo - 119477
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\props_f_exp.pbo - 141671
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\rocks_f_exp.pbo - 129683
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\soft_f_exp.pbo - 143031
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\sounds_f_exp.pbo - 145970
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\static_f_exp.pbo - 119478
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp.pbo - 145512
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_civilian.pbo - 145522
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_commercial.pbo - 145522
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_cultural.pbo - 145522
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_data.pbo - 145525
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_industrial.pbo - 145509
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\structures_f_exp_infrastructure.pbo - 145509
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\supplies_f_exp.pbo - 141575
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\ui_f_exp.pbo - 123398
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\vegetation_f_exp.pbo - 135745
    15:33:22 x:\TCAFiles\Users\vidarp\9428\expansion\addons\weapons_f_exp.pbo - 145053
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\anims_f_mark.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\characters_f_mark.pbo - 129739
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\data_f_mark.pbo - 129371
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\dubbing_f_mark.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\dubbing_f_mp_mark.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\functions_f_mark.pbo - 145637
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\functions_f_mp_mark.pbo - 129434
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\languagemissions_f_mark.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\languagemissions_f_mp_mark.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\language_f_mark.pbo - 145955
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\language_f_mp_mark.pbo - 145959
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mark.pbo - 122301
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mark_data.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mark_video.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mp_mark.pbo - 141704
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\missions_f_mp_mark_data.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\modules_f_mark.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\modules_f_mp_mark.pbo - 143568
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\music_f_mark.pbo - 119477
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\music_f_mark_music.pbo - 119477
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\sounds_f_mark.pbo - 143218
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\static_f_mark.pbo - 140455
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\structures_f_mark.pbo - 140584
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\supplies_f_mark.pbo - 140562
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\ui_f_mark.pbo - 119478
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\ui_f_mp_mark.pbo - 119478
    15:33:22 x:\TCAFiles\Users\vidarp\9428\mark\addons\weapons_f_mark.pbo - 143190
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\air_f_heli.pbo - 140243
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\anims_f_heli.pbo - 123210
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\boat_f_heli.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\cargoposes_f_heli.pbo - 126231
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\data_f_heli.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\dubbing_f_heli.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\functions_f_heli.pbo - 123022
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\languagemissions_f_heli.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\language_f_heli.pbo - 145956
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\missions_f_heli.pbo - 129397
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\missions_f_heli_data.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\missions_f_heli_video.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\modules_f_heli.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\music_f_heli.pbo - 119477
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\music_f_heli_music.pbo - 119477
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\soft_f_heli.pbo - 129742
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\sounds_f_heli.pbo - 119478
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\structures_f_heli.pbo - 141968
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\supplies_f_heli.pbo - 145695
    15:33:22 x:\TCAFiles\Users\vidarp\9428\heli\addons\ui_f_heli.pbo - 119478
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\anims_f_kart.pbo - 123210
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\characters_f_kart.pbo - 133719
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\data_f_kart.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\languagemissions_f_kart.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\language_f_kart.pbo - 145956
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\missions_f_kart.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\missions_f_kart_data.pbo - 119459
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\modules_f_kart.pbo - 128288
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\modules_f_kart_data.pbo - 124178
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\soft_f_kart.pbo - 143035
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\sounds_f_kart.pbo - 125381
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\structures_f_kart.pbo - 123419
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\ui_f_kart.pbo - 119478
    15:33:22 x:\TCAFiles\Users\vidarp\9428\kart\addons\weapons_f_kart.pbo - 138461
    15:33:22 x:\TCAFiles\Users\vidarp\9428\curator\addons\data_f_curator.pbo - 141307
    15:33:22 x:\TCAFiles\Users\vidarp\9428\curator\addons\data_f_curator_music.pbo - 119457
    15:33:22 x:\TCAFiles\Users\vidarp\9428\curator\addons\functions_f_curator.pbo - 144973
    15:33:22 x:\TCAFiles\Users\vidarp\9428\curator\addons\language_f_curator.pbo - 145958
    15:33:22 x:\TCAFiles\Users\vidarp\9428\curator\addons\missions_f_curator.pbo - 121570
    15:33:22 x:\TCAFiles\Users\vidarp\9428\curator\addons\modules_f_curator.pbo - 144810
    15:33:22 x:\TCAFiles\Users\vidarp\9428\curator\addons\ui_f_curator.pbo - 144159
    15:33:22 addons\3den.pbo - 144284
    15:33:22 addons\3den_language.pbo - 145959
    15:33:22 addons\a3.pbo - unknown
    15:33:22 addons\air_f.pbo - 142793
    15:33:22 addons\air_f_beta.pbo - 141933
    15:33:22 addons\air_f_epb.pbo - 145119
    15:33:22 addons\air_f_epc.pbo - 129848
    15:33:22 addons\air_f_gamma.pbo - 130580
    15:33:22 addons\animals_f.pbo - 145321
    15:33:22 addons\animals_f_beta.pbo - 123208
    15:33:22 addons\anims_f.pbo - 146149
    15:33:22 addons\anims_f_bootcamp.pbo - 123209
    15:33:22 addons\anims_f_data.pbo - 144977
    15:33:22 addons\anims_f_epa.pbo - 134499
    15:33:22 addons\anims_f_epc.pbo - 121358
    15:33:22 addons\anims_f_exp_a.pbo - 123209
    15:33:22 addons\anims_f_mod.pbo - 135280
    15:33:22 addons\armor_f.pbo - 129739
    15:33:22 addons\armor_f_beta.pbo - 144321
    15:33:22 addons\armor_f_epb.pbo - 143562
    15:33:22 addons\armor_f_epc.pbo - 135661
    15:33:22 addons\armor_f_gamma.pbo - 143501
    15:33:22 addons\baseconfig_f.pbo - 119457
    15:33:22 addons\boat_f.pbo - 140243
    15:33:22 addons\boat_f_beta.pbo - 132036
    15:33:22 addons\boat_f_epc.pbo - 131911
    15:33:22 addons\boat_f_gamma.pbo - 127529
    15:33:22 addons\cargoposes_f.pbo - 145204
    15:33:22 addons\characters_f.pbo - 146190
    15:33:22 addons\characters_f_beta.pbo - 143051
    15:33:22 addons\characters_f_bootcamp.pbo - 133719
    15:33:22 addons\characters_f_epa.pbo - 143695
    15:33:22 addons\characters_f_epb.pbo - 133719
    15:33:22 addons\characters_f_epc.pbo - 133719
    15:33:22 addons\characters_f_gamma.pbo - 144978
    15:33:22 addons\data_f.pbo - 145327
    15:33:22 addons\data_f_bootcamp.pbo - 129618
    15:33:22 addons\data_f_exp_a.pbo - 119457
    15:33:22 addons\data_f_exp_b.pbo - 119457
    15:33:22 addons\data_f_mod.pbo - 131534
    15:33:22 addons\data_f_warlords.pbo - 142057
    15:33:22 addons\drones_f.pbo - 141085
    15:33:22 addons\dubbing_f.pbo - 119457
    15:33:22 addons\dubbing_f_beta.pbo - 119457
    15:33:22 addons\dubbing_f_bootcamp.pbo - 119457
    15:33:22 addons\dubbing_f_epa.pbo - 119457
    15:33:22 addons\dubbing_f_epb.pbo - 119457
    15:33:22 addons\dubbing_f_epc.pbo - 119457
    15:33:22 addons\dubbing_f_gamma.pbo - 122449
    15:33:22 addons\dubbing_f_warlords.pbo - 136700
    15:33:22 addons\dubbing_radio_f.pbo - 119457
    15:33:22 addons\dubbing_radio_f_data_eng.pbo - 119457
    15:33:22 addons\dubbing_radio_f_data_engb.pbo - 119458
    15:33:22 addons\dubbing_radio_f_data_gre.pbo - 119458
    15:33:22 addons\dubbing_radio_f_data_per.pbo - 119458
    15:33:22 addons\dubbing_radio_f_data_vr.pbo - 119458
    15:33:22 addons\editorpreviews_f.pbo - 142598
    15:33:22 addons\editor_f.pbo - 121103
    15:33:22 addons\functions_f.pbo - 145821
    15:33:22 addons\functions_f_bootcamp.pbo - 146564
    15:33:22 addons\functions_f_epa.pbo - 138704
    15:33:22 addons\functions_f_epc.pbo - 119458
    15:33:22 addons\functions_f_exp_a.pbo - 122619
    15:33:22 addons\functions_f_warlords.pbo - 146489
    15:33:22 addons\languagemissions_f.pbo - 145955
    15:33:22 addons\languagemissions_f_beta.pbo - 145955
    15:33:22 addons\languagemissions_f_bootcamp.pbo - 145958
    15:33:22 addons\languagemissions_f_epa.pbo - 145955
    15:33:22 addons\languagemissions_f_epb.pbo - 145955
    15:33:22 addons\languagemissions_f_epc.pbo - 145955
    15:33:22 addons\languagemissions_f_exp_a.pbo - 145959
    15:33:22 addons\languagemissions_f_gamma.pbo - 145955
    15:33:22 addons\language_f.pbo - 145959
    15:33:22 addons\language_f_beta.pbo - 145957
    15:33:22 addons\language_f_bootcamp.pbo - 145955
    15:33:22 addons\language_f_epa.pbo - 145957
    15:33:22 addons\language_f_epb.pbo - 145957
    15:33:22 addons\language_f_epc.pbo - 145958
    15:33:22 addons\language_f_exp_a.pbo - 145954
    15:33:22 addons\language_f_exp_b.pbo - 145955
    15:33:22 addons\language_f_gamma.pbo - 145956
    15:33:22 addons\language_f_mod.pbo - 145959
    15:33:22 addons\language_f_warlords.pbo - 145954
    15:33:22 addons\map_altis.pbo - 135915
    15:33:22 addons\map_altis_data.pbo - 135904
    15:33:22 addons\map_altis_data_layers.pbo - 135913
    15:33:22 addons\map_altis_data_layers_00_00.pbo - 0000
    15:33:22 addons\map_altis_data_layers_00_01.pbo - 0000
    15:33:22 addons\map_altis_data_layers_01_00.pbo - 0000
    15:33:22 addons\map_altis_data_layers_01_01.pbo - 0000
    15:33:22 addons\map_altis_scenes_f.pbo - 119459
    15:33:22 addons\map_data.pbo - 134124
    15:33:22 addons\map_stratis.pbo - 143708
    15:33:22 addons\map_stratis_data.pbo - 135888
    15:33:22 addons\map_stratis_data_layers.pbo - 135888
    15:33:22 addons\map_stratis_scenes_f.pbo - 119459
    15:33:22 addons\map_vr.pbo - 135900
    15:33:22 addons\map_vr_scenes_f.pbo - 119459
    15:33:22 addons\misc_f.pbo - 119459
    15:33:22 addons\missions_f.pbo - 141704
    15:33:22 addons\missions_f_beta.pbo - 122470
    15:33:22 addons\missions_f_beta_data.pbo - 119459
    15:33:22 addons\missions_f_beta_video.pbo - 119459
    15:33:22 addons\missions_f_bootcamp.pbo - 145509
    15:33:22 addons\missions_f_bootcamp_data.pbo - 119459
    15:33:22 addons\missions_f_bootcamp_video.pbo - 119459
    15:33:22 addons\missions_f_data.pbo - 119459
    15:33:22 addons\missions_f_epa.pbo - 144315
    15:33:22 addons\missions_f_epa_data.pbo - 119459
    15:33:22 addons\missions_f_epa_video.pbo - 119459
    15:33:22 addons\missions_f_epb.pbo - 119459
    15:33:22 addons\missions_f_epc.pbo - 141704
    15:33:22 addons\missions_f_exp_a.pbo - 141704
    15:33:22 addons\missions_f_exp_a_data.pbo - 119459
    15:33:22 addons\missions_f_gamma.pbo - 133233
    15:33:22 addons\missions_f_gamma_data.pbo - 119459
    15:33:22 addons\missions_f_gamma_video.pbo - 119459
    15:33:22 addons\missions_f_video.pbo - 119459
    15:33:22 addons\missions_f_warlords.pbo - 145437
    15:33:22 addons\modules_f.pbo - 142774
    15:33:22 addons\modules_f_beta.pbo - 119459
    15:33:22 addons\modules_f_beta_data.pbo - 119459
    15:33:22 addons\modules_f_bootcamp.pbo - 119459
    15:33:22 addons\modules_f_data.pbo - 122470
    15:33:22 addons\modules_f_epb.pbo - 134655
    15:33:22 addons\modules_f_exp_a.pbo - 119459
    15:33:22 addons\modules_f_warlords.pbo - 144205
    15:33:22 addons\music_f.pbo - 119459
    15:33:22 addons\music_f_bootcamp.pbo - 119459
    15:33:22 addons\music_f_bootcamp_music.pbo - 119459
    15:33:22 addons\music_f_epa.pbo - 119459
    15:33:22 addons\music_f_epa_music.pbo - 119459
    15:33:22 addons\music_f_epb.pbo - 119459
    15:33:22 addons\music_f_epb_music.pbo - 119459
    15:33:22 addons\music_f_epc.pbo - 119459
    15:33:22 addons\music_f_epc_music.pbo - 119477
    15:33:22 addons\music_f_music.pbo - 119477
    15:33:22 addons\plants_f.pbo - 126807
    15:33:22 addons\props_f_exp_a.pbo - 141672
    15:33:22 addons\roads_f.pbo - 127271
    15:33:22 addons\rocks_f.pbo - 143714
    15:33:22 addons\signs_f.pbo - 136481
    15:33:22 addons\soft_f.pbo - 145695
    15:33:22 addons\soft_f_beta.pbo - 146241
    15:33:22 addons\soft_f_bootcamp.pbo - 140052
    15:33:22 addons\soft_f_epc.pbo - 140053
    15:33:22 addons\soft_f_gamma.pbo - 146254
    15:33:22 addons\sounds_f.pbo - 145970
    15:33:22 addons\sounds_f_arsenal.pbo - 143218
    15:33:22 addons\sounds_f_bootcamp.pbo - 119477
    15:33:22 addons\sounds_f_characters.pbo - 143095
    15:33:22 addons\sounds_f_environment.pbo - 143095
    15:33:22 addons\sounds_f_epb.pbo - 126923
    15:33:22 addons\sounds_f_epc.pbo - 125380
    15:33:22 addons\sounds_f_exp_a.pbo - 119477
    15:33:22 addons\sounds_f_mod.pbo - 131534
    15:33:22 addons\sounds_f_sfx.pbo - 143211
    15:33:22 addons\sounds_f_vehicles.pbo - 143097
    15:33:22 addons\static_f.pbo - 140243
    15:33:22 addons\static_f_beta.pbo - 132365
    15:33:22 addons\static_f_gamma.pbo - 122615
    15:33:22 addons\structures_f.pbo - 145694
    15:33:22 addons\structures_f_bootcamp.pbo - 143436
    15:33:22 addons\structures_f_data.pbo - 145525
    15:33:22 addons\structures_f_epa.pbo - 135441
    15:33:22 addons\structures_f_epb.pbo - 126137
    15:33:22 addons\structures_f_epc.pbo - 137806
    15:33:22 addons\structures_f_exp_a.pbo - 132665
    15:33:22 addons\structures_f_households.pbo - 145509
    15:33:22 addons\structures_f_ind.pbo - 145509
    15:33:22 addons\structures_f_mil.pbo - 145694
    15:33:22 addons\structures_f_wrecks.pbo - 145523
    15:33:22 addons\uifonts_f.pbo - 119478
    15:33:22 addons\uifonts_f_data.pbo - 128439
    15:33:22 addons\ui_f.pbo - 145821
    15:33:22 addons\ui_f_bootcamp.pbo - 119478
    15:33:22 addons\ui_f_data.pbo - 139876
    15:33:22 addons\ui_f_exp_a.pbo - 119478
    15:33:22 addons\weapons_f.pbo - 146011
    15:33:22 addons\weapons_f_beta.pbo - 145053
    15:33:22 addons\weapons_f_bootcamp.pbo - 141713
    15:33:22 addons\weapons_f_epa.pbo - 144416
    15:33:22 addons\weapons_f_epb.pbo - 137810
    15:33:22 addons\weapons_f_epc.pbo - 130416
    15:33:22 addons\weapons_f_gamma.pbo - 138461
    15:33:22 addons\weapons_f_mod.pbo - 143522
    15:33:22 
    15:33:22 =======================
    15:33:22 
    15:33:22 ============================================================================================= List of mods ===============================================================================================
    15:33:22 modsReadOnly = true
    15:33:22 safeModsActivated = false
    15:33:22 customMods = true
    15:33:22 hash = 'F4C5669ADE54ADDA7D96B8CF6E7C20EC15587E95'
    15:33:22 hashShort = 'df1cc053'
    15:33:22                                               name |               modDir |    default |   official |               origin |                                     hash | hashShort | fullPath
    15:33:22 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    15:33:22                   TRYK's Multi-Play Unifrom's pack |            @multiuni |      false |      false |             GAME DIR | aba46385af3be7b2cb5b2b50bbf92ba1438672c6 |   2118b09 | x:\TCAFiles\Users\vidarp\9428\@multiuni
    15:33:22                                Zeus Enhanced 1.5.0 |              @zeusen |      false |      false |             GAME DIR | 1a2f15c32105c54a63a608ee8da66e9231fc2f78 |  3071f83e | x:\TCAFiles\Users\vidarp\9428\@zeusen
    15:33:22                              Uriki's Mission Items |               @uriki |      false |      false |             GAME DIR | 6697def80bbdf3f02d1b88a486f24a4502fb3789 |  6f18ad5d | x:\TCAFiles\Users\vidarp\9428\@uriki
    15:33:22                            ShackTac User Interface |           @shacktack |      false |      false |             GAME DIR | 6017b07d0a32d8dfb2015dd952868b5764015fd3 |  ab7edfbc | x:\TCAFiles\Users\vidarp\9428\@shacktack
    15:33:22                                       Eden Objects |          @edenobject |      false |      false |             GAME DIR | 49ce2c4fe64e3b55ac5b04f1e890d0779bac0452 |  c134cf53 | x:\TCAFiles\Users\vidarp\9428\@edenobject
    15:33:22                                           Earplugs |            @earplugs |      false |      false |             GAME DIR | ce6c175f76fecb77cad8b8587047bfc232582bb0 |  992d72b5 | x:\TCAFiles\Users\vidarp\9428\@earplugs
    15:33:22                        NorG Norwegian Armed Forces |             @norgear |      false |      false |             GAME DIR | f9bebc4d229ae78021571ac75b5bd43704e51adb |  6c6963b6 | x:\TCAFiles\Users\vidarp\9428\@norgear
    15:33:22                                   Achilles (1.2.2) |            @achilles |      false |      false |             GAME DIR | 233199092d6643240eb75db9d8e7ddb50c812a2d |  71d00e09 | x:\TCAFiles\Users\vidarp\9428\@achilles
    15:33:22                            Mattaust Buildings Pack |      @a3_custombuild |      false |      false |             GAME DIR | b102c31ca5f775825dee4615f5482da659d62a60 |   b72655e | x:\TCAFiles\Users\vidarp\9428\@a3_custombuild
    15:33:22               CUP Weapons ACE Compatibility 1.13.0 |            @acecup_w |      false |      false |             GAME DIR | a465e6083a74e311852532601fedbc4e1c9e2798 |   fa09d95 | x:\TCAFiles\Users\vidarp\9428\@acecup_w
    15:33:22              CUP Vehicles ACE Compatibility 1.12.0 |            @acecup_v |      false |      false |             GAME DIR | fd3a4baec5e402939d9d150a69b7727e1c788e06 |  7cab8285 | x:\TCAFiles\Users\vidarp\9428\@acecup_v
    15:33:22                                      3den Enhanced |                @3den |      false |      false |             GAME DIR | d0c618f30bc4844c501355a9b9e25d56c06f3fd2 |  eeda09b0 | x:\TCAFiles\Users\vidarp\9428\@3den
    15:33:22                          RHS: United States Forces |             @RHSUSAF |      false |      false |             GAME DIR | 4e2f069e091fb4b5b47a43b1c86da0b57e09cf20 |  d65fa4c1 | x:\TCAFiles\Users\vidarp\9428\@RHSUSAF
    15:33:22        RHS: Armed Forces of the Russian Federation |             @RHSAFRF |      false |      false |             GAME DIR | 65dc37a4bb75421a8375b7fc0cbb27efba8887ce |  4a2dbedd | x:\TCAFiles\Users\vidarp\9428\@RHSAFRF
    15:33:22                                CUP Vehicles 1.13.0 |               @CUP_V |      false |      false |             GAME DIR | 44f9cb9dc2a173a8709ab53892394a14fd7d675e |  2dcd48d3 | x:\TCAFiles\Users\vidarp\9428\@CUP_V
    15:33:22                                 CUP Weapons 1.13.1 |               @CUP_W |      false |      false |             GAME DIR | 769121ff9ac48a71aca6579198fe3f4d8e235eed |    aad991 | x:\TCAFiles\Users\vidarp\9428\@CUP_W
    15:33:22                                   CUP Units 1.13.0 |               @CUP_U |      false |      false |             GAME DIR | 7db1c11fbdf235ef8d6c2a58830aac6281293b68 |   b58a1d6 | x:\TCAFiles\Users\vidarp\9428\@CUP_U
    15:33:22                         CUP Terrains - Core 1.13.0 |            @cup_core |      false |      false |             GAME DIR | 47925a60114c38cc42c3c4e2aa5956cf133ffa18 |  e2c189e9 | x:\TCAFiles\Users\vidarp\9428\@cup_core
    15:33:22                  Task Force Arrowhead Radio 0.9.12 |    @task_force_radio |      false |      false |             GAME DIR | 3028ba91015d709af11bfe12a4c851569d259050 |  ebed631c | x:\TCAFiles\Users\vidarp\9428\@task_force_radio
    15:33:22                 Advanced Combat Environment 3.12.6 |                 @ace |      false |      false |             GAME DIR | 51cca4bbb26be976f46cc89ad3d53f1a243bfbcf |  ccf3ed89 | x:\TCAFiles\Users\vidarp\9428\@ace
    15:33:22                      Community Base Addons v3.12.2 |              @CBA_A3 |      false |      false |             GAME DIR | 596849612fd8a689a8413031f103f05b964e468f |  da88ce76 | x:\TCAFiles\Users\vidarp\9428\@CBA_A3
    15:33:22                          Arma 3 Contact (Platform) |                enoch |       true |       true |             GAME DIR | 5b9e0db7bbf98b33af6040057f7649b015aa922b |  34e25305 | x:\TCAFiles\Users\vidarp\9428\enoch
    15:33:22                                       Arma 3 Tanks |                 tank |       true |       true |             GAME DIR | b7f107a06a03a38d56a8201c4069df69b99759e6 |  51009ca8 | x:\TCAFiles\Users\vidarp\9428\tank
    15:33:22                                     Arma 3 Tac-Ops |               tacops |       true |       true |             GAME DIR | 3eb069414b2dbd7c64de025923878a5acfb883dc |  5ce485e3 | x:\TCAFiles\Users\vidarp\9428\tacops
    15:33:22                                 Arma 3 Laws of War |               orange |       true |       true |             GAME DIR | 1b9219ec97f1a7028faa1e13ad9450d106947640 |  25002cff | x:\TCAFiles\Users\vidarp\9428\orange
    15:33:22                                      Arma 3 Malden |                 argo |       true |       true |             GAME DIR | 7c29900f98565c65eabd39a9d7340b60d52079f1 |  a9053a9d | x:\TCAFiles\Users\vidarp\9428\argo
    15:33:22                                        Arma 3 Jets |                 jets |       true |       true |             GAME DIR | ccb26e587e0c23be821351644773c1a12df5992b |  e04bdd03 | x:\TCAFiles\Users\vidarp\9428\jets
    15:33:22                                        Arma 3 Apex |            expansion |       true |       true |             GAME DIR | fa404bbaaa12f63d31c4ded1b5a6b4ed9353e8c3 |  4597cc77 | x:\TCAFiles\Users\vidarp\9428\expansion
    15:33:22                                    Arma 3 Marksmen |                 mark |       true |       true |             GAME DIR | 1f3d8ddf59fd654c4a5e7ff8a7b16abb24818ad2 |  e557b21c | x:\TCAFiles\Users\vidarp\9428\mark
    15:33:22                                 Arma 3 Helicopters |                 heli |       true |       true |             GAME DIR | cfd7efb0d32702bff71bf12dab6e1f8fb9e03e56 |  1ad66e9e | x:\TCAFiles\Users\vidarp\9428\heli
    15:33:22                                       Arma 3 Karts |                 kart |       true |       true |             GAME DIR | 0ee6edab33dbf94732f9ab3788e9e51281044eda |  315c8631 | x:\TCAFiles\Users\vidarp\9428\kart
    15:33:22                                        Arma 3 Zeus |              curator |       true |       true |             GAME DIR | 8d431a7f57bafbf66308f31629b9b66cede44316 |  8e0683d7 | x:\TCAFiles\Users\vidarp\9428\curator
    15:33:22                                             Arma 3 |                   A3 |       true |       true |            NOT FOUND |                                          |           | 
    15:33:22 ==========================================================================================================================================================================================================
    15:33:22 InitSound ...
    15:33:22 InitSound - complete
    15:33:22 PhysX3 SDK Init started ...
    15:33:22 PhysX3 SDK Init ended.
    15:33:27 [0,35.253,0,"XEH: PreStart started."]
    15:33:27 [CBA] (settings) INFO: Userconfig: Ignored.
    15:33:29 String STR_CUP_dn_US_BDUv2 not found
    15:33:29 String STR_CUP_dn_US_BDUv2_dirty_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll_dirty_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll2_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll2_dirty_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_gloves_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_gloves_dirty_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll_gloves_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll_gloves_dirty_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll2_gloves_base not found
    15:33:29 String STR_CUP_dn_US_BDUv2_roll2_gloves_dirty_base not found
    15:33:29 String STR_CUP_C_dn_EngineeringBag not found
    15:33:39 [0,48.068,0,"XEH: PreStart finished."]
    15:33:40 [XEH]: Cabinet_NATO_F does not support Extended Event Handlers! Addon: @edenobject
    15:33:40 [XEH]: Chemlight_Box_F does not support Extended Event Handlers! Addon: @edenobject
    15:33:40 [XEH]: KA60_Wreck_F does not support Extended Event Handlers! Addon: @edenobject
    15:33:40 [XEH]: Metal_Locker_F does not support Extended Event Handlers! Addon: @edenobject
    15:33:40 [XEH]: HAFM_NH90Wreck does not support Extended Event Handlers! Addon: @norgear
    15:33:40 [XEH]: n_tmbn_soldier_base_w does not support Extended Event Handlers! Addon: @norgear
    15:33:40 [XEH]: n_tmbn_at_m72_w does not support Extended Event Handlers! Addon: @norgear
    15:33:40 [XEH]: n_tmbn_armoured_m04_w does not support Extended Event Handlers! Addon: @norgear
    15:33:40 [XEH]: n_tmbn_squad_w does not support Extended Event Handlers! Addon: @norgear
    15:33:41 core\skyobject\skyobject.p3d: No geometry and no visual shape
    15:33:41 a3\data_f\krater.p3d: No geometry and no visual shape
    15:33:41 a3\data_f\koule.p3d: No geometry and no visual shape
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.scope'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: Error: creating weapon ItemInfo with scope=private
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.displayName'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.nameSound'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.type'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.picture'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.Library'.
    15:33:41 Warning Message: No entry '.libTextDesc'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.model'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.simulation'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightDuration'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightIntensity'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightDiffuse'.
    15:33:41 Warning Message: Size: '/' not an array
    15:33:41 Warning Message: Size: '/' not an array
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.fireLightAmbient'.
    15:33:41 Warning Message: Size: '/' not an array
    15:33:41 Warning Message: Size: '/' not an array
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.weaponLockDelay'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.weaponLockSystem'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.cmImmunity'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.weight'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.lockingTargetSound'.
    15:33:41 Warning Message: Size: '/' not an array
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.lockedTargetSound'.
    15:33:41 Warning Message: Size: '/' not an array
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.detectRange'.
    15:33:41 Warning Message: '/' is not a value
    15:33:41 Warning Message: No entry 'bin\config.bin/CfgWeapons/ItemInfo.muzzles'.
    15:33:41 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.scope'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.model'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.simulation'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.accuracy'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.camouflage'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.audible'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.displayName'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.textSingular'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.speechSingular'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/AnimationSources.speechSingular
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.textPlural'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.speechPlural'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/AnimationSources.speechPlural
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.maxDetectRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.detectSkill'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.mineAlertIconRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.weaponSlots'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.spotableNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.spotableDarkNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.spotableNightLightsOn'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nameSound'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.side'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.destrType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.picture'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.portrait'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.icon'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.cost'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.fuelCapacity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.fuelConsumptionRate'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.armor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.crewCrashProtection'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.damageResistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.maxSpeed'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.limitedSpeedCoef'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.secondaryExplosion'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.sensitivity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.sensitivityEar'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.brakeDistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.precision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.formationX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.formationZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.formationTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.steerAheadSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.steerAheadPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.ViewPilot'.
    15:33:42 Warning Message: No entry '.initFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.HeadLimits'.
    15:33:42 Warning Message: No entry '.rotZRadius'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.PilotSpec'.
    15:33:42 Warning Message: No entry '.showHeadPhones'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.predictTurnSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.predictTurnPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.minFireTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.enableWatch'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.enableRadio'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportFuel'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportRepair'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportAmmo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportMaxWeapons'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportMaxMagazines'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.transportMaxBackpacks'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.allowTabLock'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.showAllTargets'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.TransportWeapons'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.TransportMagazines'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.alwaysTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irScanToEyeFactor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irScanRangeMin'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.irScanRangeMax'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nightVision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.laserScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.laserTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nvTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.artilleryTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.artilleryScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.nvScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.commanderCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.driverCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.gunnerCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.radarType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.attendant'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.engineer'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.uavHacker'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.preferRoads'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.hideUnitInfo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngine'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundDammage'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGetIn'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGetOut'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundServo'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOnInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOffInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOnExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundEngineOffExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundLocked'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundIncommingMissile'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGearUp'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundGearDown'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundLandCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundWaterCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundWoodCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundBushCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundBuildingCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.soundArmorCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.weapons'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.magazines'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.threat'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/AnimationSources.type'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.scope'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.model'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.simulation'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.accuracy'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.camouflage'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.audible'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.displayName'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.textSingular'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechSingular'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechSingular
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.textPlural'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechPlural'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/IFF_Panels_Hide.speechPlural
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.maxDetectRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.detectSkill'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.mineAlertIconRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.weaponSlots'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.spotableNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.spotableDarkNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.spotableNightLightsOn'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nameSound'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.side'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.destrType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.picture'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.portrait'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.icon'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.cost'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.fuelCapacity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.fuelConsumptionRate'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.armor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.crewCrashProtection'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.damageResistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.maxSpeed'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.limitedSpeedCoef'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.secondaryExplosion'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.sensitivity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.sensitivityEar'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.brakeDistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.precision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.formationX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.formationZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.formationTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.steerAheadSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.steerAheadPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.ViewPilot'.
    15:33:42 Warning Message: No entry '.initFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.HeadLimits'.
    15:33:42 Warning Message: No entry '.rotZRadius'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.PilotSpec'.
    15:33:42 Warning Message: No entry '.showHeadPhones'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.predictTurnSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.predictTurnPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.minFireTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.enableWatch'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.enableRadio'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportFuel'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportRepair'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportAmmo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportMaxWeapons'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportMaxMagazines'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.transportMaxBackpacks'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.allowTabLock'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.showAllTargets'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.TransportWeapons'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.TransportMagazines'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.alwaysTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irScanToEyeFactor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irScanRangeMin'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.irScanRangeMax'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nightVision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.laserScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.laserTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nvTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.artilleryTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.artilleryScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.nvScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.commanderCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.driverCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.gunnerCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.radarType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.attendant'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.engineer'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.uavHacker'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.preferRoads'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.hideUnitInfo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngine'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundDammage'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGetIn'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGetOut'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundServo'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOnInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOffInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOnExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundEngineOffExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundLocked'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundIncommingMissile'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGearUp'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundGearDown'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundLandCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundWaterCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundWoodCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundBushCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundBuildingCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.soundArmorCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.weapons'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.magazines'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.threat'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/IFF_Panels_Hide.type'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.scope'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.model'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.simulation'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.accuracy'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.camouflage'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.audible'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.displayName'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.textSingular'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.speechSingular'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/EventHandlers.speechSingular
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.textPlural'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.speechPlural'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/EventHandlers.speechPlural
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.maxDetectRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.detectSkill'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.mineAlertIconRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.weaponSlots'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.spotableNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.spotableDarkNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.spotableNightLightsOn'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nameSound'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.side'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.destrType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.picture'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.portrait'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.icon'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.cost'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.fuelCapacity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.fuelConsumptionRate'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.armor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.crewCrashProtection'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.damageResistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.maxSpeed'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.limitedSpeedCoef'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.secondaryExplosion'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.sensitivity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.sensitivityEar'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.brakeDistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.precision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.formationX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.formationZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.formationTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.steerAheadSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.steerAheadPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.ViewPilot'.
    15:33:42 Warning Message: No entry '.initFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.HeadLimits'.
    15:33:42 Warning Message: No entry '.rotZRadius'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.PilotSpec'.
    15:33:42 Warning Message: No entry '.showHeadPhones'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.predictTurnSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.predictTurnPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.minFireTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.enableWatch'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.enableRadio'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportFuel'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportRepair'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportAmmo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportMaxWeapons'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportMaxMagazines'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.transportMaxBackpacks'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.allowTabLock'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.showAllTargets'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.TransportWeapons'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.TransportMagazines'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.alwaysTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irScanToEyeFactor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irScanRangeMin'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.irScanRangeMax'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nightVision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.laserScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.laserTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nvTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.artilleryTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.artilleryScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.nvScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.commanderCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.driverCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.gunnerCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.radarType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.attendant'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.engineer'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.uavHacker'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.preferRoads'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.hideUnitInfo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngine'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundDammage'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGetIn'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGetOut'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundServo'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOnInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOffInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOnExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundEngineOffExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundLocked'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundIncommingMissile'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGearUp'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundGearDown'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundLandCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundWaterCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundWoodCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundBushCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundBuildingCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.soundArmorCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.weapons'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.magazines'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.threat'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/EventHandlers.type'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.scope'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.model'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.simulation'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.accuracy'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.camouflage'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.audible'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.displayName'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.textSingular'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.speechSingular'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.speechSingular
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.textPlural'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.speechPlural'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.speechPlural
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.maxDetectRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.detectSkill'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.mineAlertIconRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.weaponSlots'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.spotableNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.spotableDarkNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.spotableNightLightsOn'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.nameSound'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.side'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.destrType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.picture'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.portrait'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.icon'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.cost'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.fuelCapacity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.fuelConsumptionRate'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.armor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.crewCrashProtection'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.damageResistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.maxSpeed'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.limitedSpeedCoef'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.secondaryExplosion'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.sensitivity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.sensitivityEar'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.brakeDistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.precision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.formationX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.formationZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.formationTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.steerAheadSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.steerAheadPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.ViewPilot'.
    15:33:42 Warning Message: No entry '.initFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.HeadLimits'.
    15:33:42 Warning Message: No entry '.rotZRadius'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.PilotSpec'.
    15:33:42 Warning Message: No entry '.showHeadPhones'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.predictTurnSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.predictTurnPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.minFireTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.enableWatch'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.enableRadio'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.transportFuel'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.transportRepair'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.transportAmmo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.transportMaxWeapons'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.transportMaxMagazines'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.transportMaxBackpacks'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.allowTabLock'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.showAllTargets'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.TransportWeapons'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.TransportMagazines'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.alwaysTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.irTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.irScanToEyeFactor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.irScanRangeMin'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.irScanRangeMax'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.nightVision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.laserScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.laserTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.nvTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.artilleryTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.artilleryScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.nvScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.commanderCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.driverCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.gunnerCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.radarType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.attendant'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.engineer'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.uavHacker'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.preferRoads'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.hideUnitInfo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundEngine'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundDammage'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundGetIn'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundGetOut'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundServo'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundEngineOnInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundEngineOffInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundEngineOnExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundEngineOffExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundLocked'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundIncommingMissile'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundGearUp'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundGearDown'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundLandCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundWaterCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundWoodCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundBushCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundBuildingCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.soundArmorCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.weapons'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.magazines'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.threat'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/rhsgref_nat_ERDL.type'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.model'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.simulation'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.accuracy'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.camouflage'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.audible'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.textSingular'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.speechSingular'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/n_m04_uniform_base.speechSingular
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.textPlural'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.speechPlural'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/n_m04_uniform_base.speechPlural
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.maxDetectRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.detectSkill'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.mineAlertIconRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.weaponSlots'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.spotableNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.spotableDarkNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.spotableNightLightsOn'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.nameSound'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.destrType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.picture'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.portrait'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.icon'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.cost'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.fuelCapacity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.fuelConsumptionRate'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.armor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.crewCrashProtection'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.damageResistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.maxSpeed'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.limitedSpeedCoef'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.secondaryExplosion'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.sensitivity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.sensitivityEar'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.brakeDistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.precision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.formationX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.formationZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.formationTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.steerAheadSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.steerAheadPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.ViewPilot'.
    15:33:42 Warning Message: No entry '.initFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.HeadLimits'.
    15:33:42 Warning Message: No entry '.rotZRadius'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.PilotSpec'.
    15:33:42 Warning Message: No entry '.showHeadPhones'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.predictTurnSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.predictTurnPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.minFireTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.enableWatch'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.enableRadio'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.transportFuel'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.transportRepair'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.transportAmmo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.transportMaxWeapons'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.transportMaxMagazines'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.transportMaxBackpacks'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.allowTabLock'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.showAllTargets'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.TransportWeapons'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.TransportMagazines'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.alwaysTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.irTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.irScanToEyeFactor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.irScanRangeMin'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.irScanRangeMax'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.nightVision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.laserScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.laserTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.nvTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.artilleryTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.artilleryScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.nvScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.commanderCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.driverCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.gunnerCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.radarType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.attendant'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.engineer'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.uavHacker'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.preferRoads'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.hideUnitInfo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundEngine'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundDammage'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundGetIn'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundGetOut'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundServo'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundEngineOnInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundEngineOffInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundEngineOnExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundEngineOffExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundLocked'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundIncommingMissile'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundGearUp'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundGearDown'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundLandCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundWaterCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundWoodCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundBushCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundBuildingCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.soundArmorCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.weapons'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.magazines'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.threat'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_m04_uniform_base.type'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.model'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.simulation'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.audible'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.textSingular'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.speechSingular'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.speechSingular
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.textPlural'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.speechPlural'.
    15:33:42 unable to load bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.speechPlural
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.maxDetectRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.mineAlertIconRange'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.weaponSlots'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.spotableNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.spotableDarkNightLightsOff'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.spotableNightLightsOn'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.nameSound'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.destrType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.picture'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.portrait'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.icon'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.cost'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.fuelCapacity'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.fuelConsumptionRate'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.armor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.crewCrashProtection'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.damageResistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.groupCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.extCameraPosition'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.maxSpeed'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.limitedSpeedCoef'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.secondaryExplosion'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.sensitivityEar'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.brakeDistance'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.precision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.formationX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.formationZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.formationTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.steerAheadSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.steerAheadPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.ViewPilot'.
    15:33:42 Warning Message: No entry '.initFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxFov'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.HeadLimits'.
    15:33:42 Warning Message: No entry '.rotZRadius'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleY'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.initAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleX'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.minAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry '.maxAngleZ'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.PilotSpec'.
    15:33:42 Warning Message: No entry '.showHeadPhones'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.predictTurnSimul'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.predictTurnPlan'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.minFireTime'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.enableWatch'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.enableRadio'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.transportFuel'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.transportRepair'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.transportAmmo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.transportMaxWeapons'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.transportMaxMagazines'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.transportMaxBackpacks'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.allowTabLock'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.showAllTargets'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.TransportWeapons'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.TransportMagazines'.
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.alwaysTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.irTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.irScanToEyeFactor'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.irScanRangeMin'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.irScanRangeMax'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.nightVision'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.laserScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.laserTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.nvTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.artilleryTarget'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.artilleryScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.nvScanner'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.commanderCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.driverCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.gunnerCanSee'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.radarType'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.attendant'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.engineer'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.uavHacker'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.preferRoads'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.hideUnitInfo'.
    15:33:42 Warning Message: '/' is not a value
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundEngine'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundDammage'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundGetIn'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundGetOut'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundServo'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundEngineOnInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundEngineOffInt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundEngineOnExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundEngineOffExt'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundLocked'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundIncommingMissile'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundGearUp'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundGearDown'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundLandCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundWaterCrashes'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundWoodCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundBushCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundBuildingCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.soundArmorCrash'.
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: Size: '/' not an array
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.threat'.
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: []: '/' not an array
    15:33:42 Cannot evaluate '' - no file
    15:33:42 Warning Message: No entry 'bin\config.bin/CfgVehicles/n_tmbn_soldier_base_m04_w.type'.
    15:33:42 Warning Message: '/' is not a value
    15:33:45 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
    a3_characters_f
    15:33:46 Loading movesType CfgGesturesMale
    15:33:46 Creating action map cache
    15:33:46 MovesType CfgGesturesMale load time 109 ms
    15:33:46 Loading movesType CfgMovesMaleSdr
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/HubBriefing_loop.InterpolateTo: Bad move Acts_Briefing_Intro2_Major_2_temp
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_Driver_in.interpolateTo: Bad move RHS_Stryker_M1126_Driver_in_Dead
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_Driver_out.InterpolateTo: Bad move RHS_Stryker_M1126_Driver_in_Dead
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_gunner_turnout.ConnectTo: Bad move vehicle_turnout_2
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_TC_turnout.ConnectTo: Bad move vehicle_turnout_2
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_AG_in.interpolateTo: Bad move RHS_Stryker_M1126_AG_in_Dead
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_AG_turnout.ConnectTo: Bad move vehicle_turnout_2
    15:33:46   bin\config.bin/CfgMovesMaleSdr/States/RHS_Stryker_M1126_AG_turnin.interpolateTo: Bad move RHS_Stryker_M1126_AG_in_Dead
    15:33:46 Reading cached action map data
    15:33:47 Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\briefing\hubbriefing_loop.rtm differs (looped now 0)! MoveName: hubbriefing_ext
    15:33:49 MovesType CfgMovesMaleSdr load time 3013 ms
    15:33:49 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape
    15:33:49 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
    15:33:49 Steam AppId from steam_appid.txt: 107410
    15:33:50 Connected to Steam servers
    15:33:56 BEServer: registering a new player #1286049223
    15:34:00 Unsupported language English in stringtable
    15:34:14 Admin logged in, player: Vidar Pedersen, playerUID: 76561197982947143, IP: 10.0.0.34:2304.
    15:34:16 Unsupported language English in stringtable
    15:34:21 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item23/Entities/Item2.type: Unknown enum value SeekAndDestroy
    15:34:21 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item23/Entities/Item3.type: Unknown enum value SeekAndDestroy
    15:34:21 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item24/Entities/Item2.type: Unknown enum value SeekAndDestroy
    15:34:21 mpmissions\__cur_mp.Tanoa\mission.sqm/Mission/Entities/Item24/Entities/Item3.type: Unknown enum value SeekAndDestroy
    15:34:21 Mission MP_HC_Warlords.Tanoa: Number of roles (16) is different from 'description.ext::Header::maxPlayer' (10)
    15:34:25 Starting mission:
    15:34:25  Mission file: MP_HC_Warlords (__cur_mp)
    15:34:25  Mission world: Tanoa
    15:34:25  Mission directory: mpmissions\__cur_mp.Tanoa\
    15:34:25 a3\data_f\blesk1.p3d: No geometry and no visual shape
    15:34:25 a3\data_f\blesk2.p3d: No geometry and no visual shape
    15:34:25 a3\data_f\raindrop.p3d: No geometry and no visual shape
    15:34:25 a3\map_tanoabuka\data\skydome.p3d: No geometry and no visual shape
    15:34:25 a3\data_f\stars.p3d: No geometry and no visual shape
    15:34:25 a3\map_tanoabuka\data\horizon.p3d: No geometry and no visual shape
    15:34:25 a3\data_f\rainbow.p3d: No geometry and no visual shape
    15:34:28 No more slot to add connection at 015030 (1523.6,3012.8)
    15:34:29 a3\structures_f_exp\signs\companies\cornerads_01_v4_f.p3d: No geometry and no visual shape
    15:34:30 Strange convex component70 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:34:30 Strange convex component75 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:34:30 Strange convex component76 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:34:30 Strange convex component77 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:34:30 Strange convex component78 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire
    15:34:31 a3\structures_f_exp\signs\companies\cornerads_01_v1_f.p3d: No geometry and no visual shape
    15:34:32 a3\structures_f_exp\signs\companies\cornerads_01_v3_f.p3d: No geometry and no visual shape
    15:34:32 [14209,100.998,0,"XEH: PreInit started. v"]
    15:34:33 [XEH]: One or more children of class CAManBase do not support Extended Event Handlers. Fall back to loop.
    15:34:33 [CBA] (settings) INFO: Reading settings from settings file.
    15:34:33 [CBA] (settings) INFO: Finished reading settings from settings file.
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M72A6_Loaded and mass of magazine CUP_M72A6_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_M72A6 (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M72A6_Special_Loaded and mass of magazine CUP_M72A6_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_M72A6_Special (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_Igla_Loaded and mass of magazine CUP_Igla_M (156.5+219=375.5) is different from mass of loaded launcher CUP_launch_Igla (156.5). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [CBA] (disposable) WARNING: Mass of launcher CUP_launch_M136_Loaded (147.4) is different from mass of used launcher CUP_launch_M136_Used (107.4). x\cba\addons\disposable\XEH_preInit.sqf:58
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_M136_Loaded and mass of magazine CUP_M136_M (147.4+40=187.4) is different from mass of loaded launcher CUP_launch_M136 (147.4). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_NLAW_Loaded and mass of magazine CUP_NLAW_M (169.5+153=322.5) is different from mass of loaded launcher CUP_launch_NLAW (169.5). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [CBA] (disposable) WARNING: Mass of launcher CUP_launch_RPG18_Loaded (57.3) is different from mass of used launcher CUP_launch_RPG18_Used (17.3). x\cba\addons\disposable\XEH_preInit.sqf:58
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_RPG18_Loaded and mass of magazine CUP_RPG18_M (57.3+50=107.3) is different from mass of loaded launcher CUP_launch_RPG18 (57.3). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_FIM92Stinger_Loaded and mass of magazine CUP_Stinger_M (112.2+219=331.2) is different from mass of loaded launcher CUP_launch_FIM92Stinger (112.2). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [CBA] (disposable) WARNING: Sum of mass of launcher CUP_launch_9K32Strela_Loaded and mass of magazine CUP_Strela_2_M (114.6+219=333.6) is different from mass of loaded launcher CUP_launch_9K32Strela (114.6). x\cba\addons\disposable\XEH_preInit.sqf:65
    15:34:33 [ACE] (common) INFO: Parsed Settings Configs [91.0 ms]
    15:34:33 CallExtension loaded: ace_medical (x:\TCAFiles\Users\vidarp\9428\@ace\ace_medical.dll) [ࠥf
    ]

    15:34:33 "SquadBarDefault: false"
    15:34:33 String STR_RHS_FAC_VDV_45 not found
    15:34:33 String STR_RHS_FAC_VDV_45 not found
    15:34:33 [14209,101.592,0,"XEH: PreInit finished."]
    15:34:33 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape
    15:34:33 Duplicate HitPoint name 'HitGun' in 'B_HMG_01_A_F'
    15:34:33 Duplicate HitPoint name 'HitTurret' in 'B_HMG_01_A_F'
    15:34:33 Dimensions in class B_HMG_01_A_F should be an array of size 2.
    15:34:33 Duplicate HitPoint name 'HitGun' in 'B_static_AT_F'
    15:34:33 Duplicate HitPoint name 'HitTurret' in 'B_static_AT_F'
    15:34:33 Dimensions in class B_static_AT_F should be an array of size 2.
    15:34:33 Duplicate HitPoint name 'HitGun' in 'B_T_Mortar_01_F'
    15:34:33 Duplicate HitPoint name 'HitTurret' in 'B_T_Mortar_01_F'
    15:34:33 Dimensions in class B_T_Mortar_01_F should be an array of size 2.
    15:34:33 Duplicate HitPoint name 'HitGun' in 'B_T_Static_AA_F'
    15:34:33 Duplicate HitPoint name 'HitTurret' in 'B_T_Static_AA_F'
    15:34:33 Dimensions in class B_T_Static_AA_F should be an array of size 2.
    15:34:33 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape
    15:34:33 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape
    15:34:33 z\ace\addons\medical\data\ivbag_1000ml.p3d: No geometry and no visual shape
    15:34:33 z\ace\addons\medical\data\ivbag_500ml.p3d: No geometry and no visual shape
    15:34:33 z\ace\addons\medical\data\ivbag_250ml.p3d: No geometry and no visual shape
    15:34:34 Duplicate HitPoint name 'HitGun' in 'B_HMG_01_F'
    15:34:34 Duplicate HitPoint name 'HitTurret' in 'B_HMG_01_F'
    15:34:34 Dimensions in class B_HMG_01_F should be an array of size 2.
    15:34:34 Duplicate HitPoint name 'HitGun' in 'B_HMG_01_high_F'
    15:34:34 Duplicate HitPoint name 'HitTurret' in 'B_HMG_01_high_F'
    15:34:34 Dimensions in class B_HMG_01_high_F should be an array of size 2.
    15:34:34 a3\structures_f_heli\ind\airport\windsock_01_f.p3d: No geometry and no visual shape
    15:34:34 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape
    15:34:34 z\ace\addons\attach\data\ace_irstrobe.p3d: No geometry and no visual shape
    15:34:34 a3\weapons_f\binocular\nvg_tna_proxy_f.p3d: No geometry and no visual shape
    15:34:34 a3\weapons_f\binocular\nvg_tna_proxy_f.p3d: No geometry and no visual shape
    15:34:34 a3\weapons_f\binocular\nvg_tna_proxy_off_f.p3d: No geometry and no visual shape
    15:34:34 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape
    15:34:34 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape
    15:34:34 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape
    15:34:34 c:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
    15:34:34 Attempt to override final function - bis_fnc_storeparamsvalues_data
    15:34:34 "TFAR - No units set for Frequency Module"
    15:34:51 Server: Object 2:539 not found (message Type_274)
    15:34:51 Server: Object 2:540 not found (message Type_274)
    15:34:51 Server: Object 2:543 not found (message Type_274)
    15:34:51 Server: Object 2:544 not found (message Type_274)
    15:35:00  Mission id: da336f447fe54085601c51da43826bdbf6056092
    15:35:01 "WL kill log: Vidar Pedersen (76561197982947143) killed by Vidar Pedersen (76561197982947143) at [2781.25,5713.07,0.00143242]"
    15:35:01 Ragdoll - loading of ragdoll source "Soldier" started.
    15:35:01 Ragdoll - loading of ragdoll source "Soldier" finished successfully.
    15:35:02 "WL FF pool :: []"
    15:35:33 Admin logged out, player: Vidar Pedersen, playerUID: 76561197982947143, IP: 10.0.0.34:2304.
     

     

     


  13. I solved it, it was an error in onPlayerRespawn.sqf.

    Wrong code:
    switch (_playerRole) do {
        case "Rifleman"; // Should be a colon, not a semicolon
        {
            _loadoutPlayer = [player] execVM "loadouts\Rifleman.sqf";
            player setUnitTrait ["medic",false,false"]; // The quote after false" is a quote too much.
        };

     

    Correct code:
    switch (_playerRole) do {
        case "Rifleman":
        {
            _loadoutPlayer = [player] execVM "loadouts\Rifleman.sqf";
            player setUnitTrait ["medic",false,false];
        };

    And now it works perfectly!


  14. 13 minutes ago, SpaceHippo said:

    In LoadoutClasses.hpp there are extra commas on the final array elements on lines 140, 400, 462, and 528. Also, in initServer.sqf, I'm not sure what the "3" in the function call parameters is there for but the only one without it is the one that works so perhaps the problem lies somewhere there.

     
    The "3" is a limit for the selected class. It means you can only have 3 players playing that role at the same time.
    I'll check out the extra commas, and try without the limit anyway. Thanks!


  15. Hi,

    I'm trying to set up a mission with a custom respawn loadout. For some reason, when I try to respawn, I can only choose one kind - and that is the rifleman.
    I've made multiple classes, but they wont show up.

    Can anybody help me? Thanks

    Description.ext
     

    Spoiler

    respawnOnStart=-1;
    #include "LoadoutClasses.hpp"


    LoadoutClasses.hpp
     

    Spoiler

    class CfgRoles
    {
        class Assault
        {
            displayName = $STR_A3_Role_Assault;
            icon = "a3\Ui_f\data\GUI\Cfg\RespawnRoles\assault_ca.paa";
        };
        class Support
        {
            displayName = $STR_A3_Role_Support;
            icon = "a3\Ui_f\data\GUI\Cfg\RespawnRoles\support_ca.paa";
        };
        class Recon
        {
            displayName = $STR_A3_Role_Recon;
            icon = "a3\Ui_f\data\GUI\Cfg\RespawnRoles\recon_ca.paa";
        };
    };

    class CfgRespawnInventory
    {
        class Rifleman
        {
            displayName = $STR_A3_ApexProtocol_class_Rifleman;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconMan_ca.paa";
            show = "side group _this == west";
            role = "Assault";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "HandGrenade",
                "HandGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "muzzle_snds_M"
            };

            linkedItems[] = {
                "V_PlateCarrier2_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_ERCO_khk_F",
                "bipod_01_F_blk",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_F";
        };
        class Grenadier
        {
            displayName = $STR_A3_ApexProtocol_class_Grenadier;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconMan_ca.paa";
            show = "side group _this == west";
            role = "Assault";

            weapons[] = {
                "arifle_SPAR_01_GL_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "HandGrenade",
                "HandGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "muzzle_snds_M",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
            };

            linkedItems[] = {
                "V_PlateCarrier2_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",,
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_3_F";
            backpack = "B_AssaultPack_rgr";
            
        };

        class MachineGunner
        {
            displayName = $STR_A3_ApexProtocol_class_Autorifleman;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManMG_ca.paa";
            show = "side group _this == west";
            role = "Assault";

            weapons[] = {
                "arifle_SPAR_02_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "150Rnd_556x45_Drum_Mag_F",
                "150Rnd_556x45_Drum_Mag_F",
                "150Rnd_556x45_Drum_Mag_F",
                "150Rnd_556x45_Drum_Mag_F",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "HandGrenade",
                "HandGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_epinephrine",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "muzzle_snds_M"
            };

            linkedItems[] = {
                "V_PlateCarrier2_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",
                "bipod_01_F_blk",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_F";
            backpack = "B_AssaultPack_rgr";
        };

        class Medic
        {
            displayName = $STR_A3_ApexProtocol_class_Paramedic;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManMedic_ca.paa";
            show = "side group _this == west";
            role = "Support";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "SmokeShell",
                "SmokeShell",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "muzzle_snds_M"
            };

            linkedItems[] = {
                "V_PlateCarrier1_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_Holosight_khk_F",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_2_F";
            backpack = "B_AssaultPack_rgr";
        };

        class Engineer
        {
            displayName = $STR_A3_ApexProtocol_class_Engineer;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManEngineer_ca.paa";
            show = "side group _this == west";
            role = "Support";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "SmokeShell",
                "SmokeShell",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag"
            };

            items[] = {
                "ACE_epinephrine",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "MineDetector",
                "ToolKit",
                "ACE_DefusalKit",
                "ACE_M26_Clacker",
                "ACE_wirecutter",
                "muzzle_snds_M",
            };

            linkedItems[] = {
                "V_PlateCarrier1_rgr_noflag_F",
                "H_Booniehat_oli",
                "optic_Holosight_khk_F",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_3_F";
            backpack = "B_Kitbag_rgr";
        };
        class RiflemanAT
        {
            displayName = $STR_A3_ApexProtocol_class_ATRifleman;
            role = "Support";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "launch_NLAW_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "SmokeShell",
                "SmokeShell",
                "NLAW_F",
                "NLAW_F"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "muzzle_snds_M",
            };

            linkedItems[] = {
                "V_PlateCarrier1_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_Holosight_khk_F",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemWatch",
                "tf_anprc152",
                "ItemGPS"
            };

            uniformClass = "U_B_CTRG_Soldier_F";
            backpack = "B_AssaultPack_rgr";
        };
        class Scout
        {
            displayName = $STR_A3_ApexProtocol_class_Scout;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManRecon_ca.paa";
            show = "side group _this == west";
            role = "Recon";

            weapons[] = {
                "arifle_SPAR_01_GL_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "MiniGrenade",
                "MiniGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
            };

            linkedItems[] = {
                "V_TacVest_oli",
                "H_Cap_blk",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",
                "muzzle_snds_M",
                "muzzle_snds_L",
                "bipod_01_F_blk",
                "tf_anprc152",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_2_F";
            backpack = "B_AssaultPack_rgr"
        };

        class Sharpshooter
        {
            displayName = $STR_A3_ApexProtocol_class_Sharpshooter;
            role = "Recon";

            weapons[] = {
                "arifle_SPAR_03_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "MiniGrenade",
                "MiniGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "optic_LRPS"
            };

            linkedItems[] = {
                "V_TacVest_oli",
                "H_Booniehat_oli",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",
                "bipod_01_F_blk",
                "muzzle_snds_B",
                "muzzle_snds_L",
                "tf_anprc152",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_3_F";
        };

        class Saboteur
        {
            displayName = $STR_A3_ApexProtocol_class_Saboteur;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManEngineer_ca.paa";
            show = "side group _this == west";
            role = "Recon";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "MiniGrenade",
                "MiniGrenade",
                "SmokeShell",
                "SmokeShell",
                "SLAMDirectionalMine_Wire_Mag",
                "SLAMDirectionalMine_Wire_Mag",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag"
            };

            items[] = {
                "ACE_epinephrine",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "MineDetector",
                "ToolKit",
                "ACE_DefusalKit",
                "ACE_M26_Clacker",
                "ACE_wirecutter"
            };

            linkedItems[] = {
                "V_TacVest_oli",
                "H_Bandanna_khk_hs",
                "optic_ERCO_khk_F",
                "muzzle_snds_M",
                "muzzle_snds_L",
                "acc_pointer_IR",
                "tf_anprc152",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_2_F";
            backpack = "B_Kitbag_rgr";
        };
    };


    onPlayerRespawn

    Spoiler

    _items = items player;

    if ("ToolKit" in _items) then {player setVariable ["ACE_IsEngineer",1,true];

    }

    else
    {player setVariable ["ACE_IsEngineer",0,true]

    };

    if ("ACE_bloodIV_500" in _items) then {player setVariable ["ace_medical_medicclass", 1, true]
    }

    else

    {player setVariable ["ace_medical_medicclass", 0, true]
    };


    switch (_playerRole) do {
        case "Rifleman";
        {
            _loadoutPlayer = [player] execVM "loadouts\Rifleman.sqf";
            player setUnitTrait ["medic",false,false"];
        };
        
            case "Grenadier";
        {
            _loadoutPlayer = [player] execVM "loadouts\Grenadier.sqf";
            player setUnitTrait ["medic",false,false"];
        };
        
            case "MachineGunner";
        {
            _loadoutPlayer = [player] execVM "loadouts\MachineGunner.sqf";
            player setUnitTrait ["medic",false,false"];
        };
        
            case "Medic";
        {
            _loadoutPlayer = [player] execVM "loadouts\Medic.sqf";
            player setUnitTrait ["medic",true,false"];
        };    
        
            case "Engineer";
        {
            _loadoutPlayer = [player] execVM "loadouts\Engineer.sqf";
            player setUnitTrait ["medic",false,false"];
        };    
        
            case "RiflemanAT";
        {
            _loadoutPlayer = [player] execVM "loadouts\RiflemanAT.sqf";
            player setUnitTrait ["medic",false,false"];
        };
            
            case "Scout";
        {
            _loadoutPlayer = [player] execVM "loadouts\Scout.sqf";
            player setUnitTrait ["medic",false,false"];
        };
            
            case "Sharpshooter";
        {
            _loadoutPlayer = [player] execVM "loadouts\Sharpshooter.sqf";
            player setUnitTrait ["medic",false,false"];
        };
            
            case "Saboteur";
        {
            _loadoutPlayer = [player] execVM "loadouts\Saboteur.sqf";
            player setUnitTrait ["medic",false,false"];
        };
    };
        
        


    initserver.sqf
     

    Spoiler

    [west,"Rifleman"] call bis_fnc_addrespawninventory;
    [west,"Grenadier",3] call bis_fnc_addrespawninventory;
    [west,"MachineGunner",3] call bis_fnc_addrespawninventory;
    [west,"Medic",3] call bis_fnc_addrespawninventory;
    [west,"Engineer",3] call bis_fnc_addrespawninventory;
    [west,"RiflemanAT",3] call bis_fnc_addrespawninventory;
    [west,"Scout",3] call bis_fnc_addrespawninventory;
    [west,"Sharpshooter",3] call bis_fnc_addrespawninventory;
    [west,"Saboteur",3] call bis_fnc_addrespawninventory;


    Loadouts
    https://www.dropbox.com/sh/f34n6uds2zm29yr/AABXmmVXATR_QP8bAJpzfzTba?dl=0

    • Like 1

  16. Hi,

    So I'm making a setup for a MP campaign. I have an idea that the players could select their loadout when they respawn.
    I'm using ACE, so I want my classes to have the ACE trait for their class. E.g. the Engineer gets ACE Engineer, the medic gets ACE Medic, and the AT, rifleman and so on doesn't get these traits.

    I've made this LoadoutClasses.hpp:

     

    Spoiler

    class CfgRoles
    {
        class Assault
        {
            displayName = $STR_A3_Role_Assault;
            icon = "a3\Ui_f\data\GUI\Cfg\RespawnRoles\assault_ca.paa";
        };
        class Support
        {
            displayName = $STR_A3_Role_Support;
            icon = "a3\Ui_f\data\GUI\Cfg\RespawnRoles\support_ca.paa";
        };
        class Recon
        {
            displayName = $STR_A3_Role_Recon;
            icon = "a3\Ui_f\data\GUI\Cfg\RespawnRoles\recon_ca.paa";
        };
    };

    class CfgRespawnInventory
    {
        class Rifleman
        {
            displayName = $STR_A3_ApexProtocol_class_Rifleman;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconMan_ca.paa";
            show = "side group _this == west";
            role = "Assault";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "HandGrenade",
                "HandGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "muzzle_snds_M"
            };

            linkedItems[] = {
                "V_PlateCarrier2_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_ERCO_khk_F",
                "bipod_01_F_blk",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_F";
        };
        class Grenadier
        {
            displayName = $STR_A3_ApexProtocol_class_Grenadier;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconMan_ca.paa";
            show = "side group _this == west";
            role = "Assault";

            weapons[] = {
                "arifle_SPAR_01_GL_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "HandGrenade",
                "HandGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "muzzle_snds_M",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
            };

            linkedItems[] = {
                "V_PlateCarrier2_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",,
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_3_F";
            backpack = "B_AssaultPack_rgr";
            
        };

        class MachineGunner
        {
            displayName = $STR_A3_ApexProtocol_class_Autorifleman;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManMG_ca.paa";
            show = "side group _this == west";
            role = "Assault";

            weapons[] = {
                "arifle_SPAR_02_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "150Rnd_556x45_Drum_Mag_F",
                "150Rnd_556x45_Drum_Mag_F",
                "150Rnd_556x45_Drum_Mag_F",
                "150Rnd_556x45_Drum_Mag_F",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "HandGrenade",
                "HandGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_epinephrine",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "muzzle_snds_M"
            };

            linkedItems[] = {
                "V_PlateCarrier2_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",
                "bipod_01_F_blk",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_F";
            backpack = "B_AssaultPack_rgr";
        };

        class Medic
        {
            displayName = $STR_A3_ApexProtocol_class_Paramedic;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManMedic_ca.paa";
            show = "side group _this == west";
            role = "Support";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "SmokeShell",
                "SmokeShell",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_epinephrine",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_bloodIV_500",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "muzzle_snds_M"
            };

            linkedItems[] = {
                "V_PlateCarrier1_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_Holosight_khk_F",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_2_F";
            backpack = "B_AssaultPack_rgr";
        };

        class Engineer
        {
            displayName = $STR_A3_ApexProtocol_class_Engineer;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManEngineer_ca.paa";
            show = "side group _this == west";
            role = "Support";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "SmokeShell",
                "SmokeShell",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag"
            };

            items[] = {
                "ACE_epinephrine",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "MineDetector",
                "ToolKit",
                "ACE_DefusalKit",
                "ACE_M26_Clacker",
                "ACE_wirecutter",
                "muzzle_snds_M",
            };

            linkedItems[] = {
                "V_PlateCarrier1_rgr_noflag_F",
                "H_Booniehat_oli",
                "optic_Holosight_khk_F",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "tf_anprc152",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_3_F";
            backpack = "B_Kitbag_rgr";
        };
        class RiflemanAT
        {
            displayName = $STR_A3_ApexProtocol_class_ATRifleman;
            role = "Support";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "launch_NLAW_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "SmokeShell",
                "SmokeShell",
                "NLAW_F",
                "NLAW_F"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "muzzle_snds_M",
            };

            linkedItems[] = {
                "V_PlateCarrier1_rgr_noflag_F",
                "H_HelmetB_TI_tna_F",
                "optic_Holosight_khk_F",
                "acc_pointer_IR",
                "ItemMap",
                "ItemCompass",
                "ItemWatch",
                "tf_anprc152",
                "ItemGPS"
            };

            uniformClass = "U_B_CTRG_Soldier_F";
            backpack = "B_AssaultPack_rgr";
        };
        class Scout
        {
            displayName = $STR_A3_ApexProtocol_class_Scout;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManRecon_ca.paa";
            show = "side group _this == west";
            role = "Recon";

            weapons[] = {
                "arifle_SPAR_01_GL_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "1Rnd_HE_Grenade_shell",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "MiniGrenade",
                "MiniGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
            };

            linkedItems[] = {
                "V_TacVest_oli",
                "H_Cap_blk",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",
                "muzzle_snds_M",
                "muzzle_snds_L",
                "bipod_01_F_blk",
                "tf_anprc152",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_2_F";
            backpack = "B_AssaultPack_rgr"
        };

        class Sharpshooter
        {
            displayName = $STR_A3_ApexProtocol_class_Sharpshooter;
            role = "Recon";

            weapons[] = {
                "arifle_SPAR_03_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "20Rnd_762x51_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "MiniGrenade",
                "MiniGrenade",
                "SmokeShell",
                "SmokeShell"
            };

            items[] = {
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine"
                "optic_LRPS"
            };

            linkedItems[] = {
                "V_TacVest_oli",
                "H_Booniehat_oli",
                "optic_ERCO_khk_F",
                "acc_pointer_IR",
                "bipod_01_F_blk",
                "muzzle_snds_B",
                "muzzle_snds_L",
                "tf_anprc152",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_3_F";
        };

        class Saboteur
        {
            displayName = $STR_A3_ApexProtocol_class_Saboteur;
            icon = "\A3\ui_f\data\map\VehicleIcons\iconManEngineer_ca.paa";
            show = "side group _this == west";
            role = "Recon";

            weapons[] = {
                "arifle_SPAR_01_khk_F",
                "hgun_P07_khk_F",
                "Rangefinder"
            };

            magazines[] = {
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "30Rnd_556x45_Stanag_Tracer_Red",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "16Rnd_9x21_Mag",
                "MiniGrenade",
                "MiniGrenade",
                "SmokeShell",
                "SmokeShell",
                "SLAMDirectionalMine_Wire_Mag",
                "SLAMDirectionalMine_Wire_Mag",
                "DemoCharge_Remote_Mag",
                "DemoCharge_Remote_Mag"
            };

            items[] = {
                "ACE_epinephrine",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_fieldDressing",
                "ACE_morphine",
                "ACE_morphine",
                "ACE_morphine",
                "MineDetector",
                "ToolKit",
                "ACE_DefusalKit",
                "ACE_M26_Clacker",
                "ACE_wirecutter"
            };

            linkedItems[] = {
                "V_TacVest_oli",
                "H_Bandanna_khk_hs",
                "optic_ERCO_khk_F",
                "muzzle_snds_M",
                "muzzle_snds_L",
                "acc_pointer_IR",
                "tf_anprc152",
                "ItemMap",
                "ItemCompass",
                "ItemGPS",
                "ItemWatch"
            };

            uniformClass = "U_B_CTRG_Soldier_2_F";
            backpack = "B_Kitbag_rgr";
        };
    };


    Now, how can I make the onPlayerRespawn.sqf?
    I though of something like this:

     

    Spoiler

    if (typeof player == "Engineer") then {player setVariable ["ACE_IsEngineer",1,true];

    };

    if (typeof player == "Medic") then {player setVariable ["ace_medical_medicclass", 1, true];
    };

    if (typeof player == "B_Soldier") then {player setVariable ["ace_medical_medicclass", 0, true];
    };


    But I'm not sure it would work, I'm not sure the code is correct. 
    Could you guys help a poor fellow out? :)


  17. 3 minutes ago, pierremgi said:

     

    Imho, except if you have a multi CPU on your PC, there is no added value to run HC + player instances on the same PC. HC is made for discarding the CPU load (of the server), redistributing some AIs features on a remote PC. Are you sure you need to divert AIs calculations from server, to your PC already in charge of your player (+ your AI group + owned vehicle)? Not saying that you multiply broadcast data which need sync between server / HC / other clients.

    Thank you for your reply. 

     

    No, I'm not sure that I need it. I'll guess I'll just test it first with the server, and see if the server alone can handle it. 

     

    But if I want a another PC to be a HC, do I also need to buy a second copy of arma 3 for this to work? 

×