Sign in to follow this  
Alésio.B  [ARMASERVICES.NET]

[MARXET] EXTDB 3

8 posts in this topic

Good evening, excuse me but I do not find category EXTDB3 so I can put my topic here.

I'm running EXTDB3 with arma3_x64.

Reputation I set up the MarXet system of https://github.com/WolfkillArcadia/MarXet
Except that I have a little trouble with the exile.ini

If you have solutions I'll be grateful,

cordially

[21:04:45:781652 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String restrictOldListings:5
[21:04:45:781694 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname restrictOldListings
[21:04:45:781694 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String deleteOldListings:15
[21:04:45:781704 +01:00] [Thread 4280] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String getListings
[21:04:45:781740 +01:00] [Thread 4280] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname getListings
[21:04:45:781724 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname deleteOldListings
[21:09:11:570294 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:Vw254489:1:["rhsusf_acc_M8541"]:50:76561198184549166
[21:09:11:570327 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing
[21:12:16:781129 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:vi572162:1:["rhs_weap_svdp_npz"]:50:76561198184549166
[21:12:16:781165 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing
[21:12:33:992635 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:wr532765:1:["rhs_assault_umbts_engineer_empty"]:50:76561198184549166
[21:12:33:992671 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing

 

Edited by Alésio.B [ARMASERVICES.NET]

Share this post


Link to post
Share on other sites
31 minutes ago, Alésio.B [ARMASERVICES.NET] said:

Good evening, excuse me but I do not find category EXTDB3 so I can put my topic here.

I'm running EXTDB3 with arma3_x64.

Reputation I set up the MarXet system of https://github.com/WolfkillArcadia/MarXet
Except that I have a little trouble with the exile.ini

If you have solutions I'll be grateful,

cordially


[21:04:45:781652 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String restrictOldListings:5
[21:04:45:781694 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname restrictOldListings
[21:04:45:781694 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String deleteOldListings:15
[21:04:45:781704 +01:00] [Thread 4280] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String getListings
[21:04:45:781740 +01:00] [Thread 4280] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname getListings
[21:04:45:781724 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname deleteOldListings
[21:09:11:570294 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:Vw254489:1:["rhsusf_acc_M8541"]:50:76561198184549166
[21:09:11:570327 +01:00] [Thread 5360] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing
[21:12:16:781129 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:vi572162:1:["rhs_weap_svdp_npz"]:50:76561198184549166
[21:12:16:781165 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing
[21:12:33:992635 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:wr532765:1:["rhs_assault_umbts_engineer_empty"]:50:76561198184549166
[21:12:33:992671 +01:00] [Thread 7376] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing

 

Please insert the following into your exile.ini

Spoiler

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;  MarXet by whatshisface?
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[createNewListing]
SQL1_1 = INSERT INTO marxet SET listingID = ?, itemAvailable = ?, itemArray = ?, price = ?, sellerUID = ?
SQL1_INPUTS = 1,2,3,4,5

[getListings]
SQL1_1 = SELECT listingID, itemAvailable, itemArray, price, sellerUID FROM marxet
OUTPUT = 1-STRING,2,3,4-STRING,5-STRING

[updateListing]
SQL1_1 = UPDATE marxet SET itemAvailable = 0 WHERE listingID = ?
SQL1_INPUTS = 1

[deleteListing]
SQL1_1 = DELETE FROM marxet WHERE listingID = ?
SQL1_INPUTS = 1

[restrictOldListings]
SQL1_1 = UPDATE marxet SET sellerUID = 0 WHERE created_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND sellerUID != 0
SQL1_INPUTS = 1

[deleteOldListings]
SQL1_1 = DELETE FROM marxet WHERE created_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND sellerUID = 0
SQL1_INPUTS = 1

[getListingsCount]
SQL1_1 = SELECT COUNT(listingID) FROM marxet WHERE sellerUID = ?
SQL1_INPUTS = 1
OUTPUT = 1

 

 

 

Edited by Brett Nordin
  • Like 1

Share this post


Link to post
Share on other sites
Advertisement

Still not he does not recognize the column

[21:53:39:156577 +01:00] [Thread 272] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:pt298924:1:["H_Ghillie_Suit2"]:5000:76561198184549166
[21:53:39:156621 +01:00] [Thread 272] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing

 

Edited by Alésio.B [ARMASERVICES.NET]

Share this post


Link to post
Share on other sites
10 minutes ago, Alésio.B [ARMASERVICES.NET] said:

Still not he does not recognize the column


[21:53:39:156577 +01:00] [Thread 272] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Input String createNewListing:pt298924:1:["H_Ghillie_Suit2"]:5000:76561198184549166
[21:53:39:156621 +01:00] [Thread 272] extDB3: SQL_CUSTOM: Error No Custom Call Not Found: Callname createNewListing

 

Please pastebin your server RPT, and your servers exile.ini

Share this post


Link to post
Share on other sites

RTP

=====================================================================
== C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\arma3server_x64.exe
== .\arma3server_x64.exe  -port=2302 "-servermod=@infiSTAR_Exile;@ExileServer" "-mod=@Enhanced Soundscape;@CBA_A3;@DS Houses;@Zombies and Demons;@Chernarus Redux;@Fox_SurvivalCars;@RHSUSAF;@Temp fix for exile miniguns;@RHSAFRF;@TRYK [TRYK's Multi-play Uniforms];@NIArms All in One;@Extended_Items_Exile;@Extended_Base_Mod;@Enhanced Movement;@CUP Terrains - Core;@Exile" "-profiles=C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\serverprofile" "-config=C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\config.cfg" "-bepath=C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\battleye" -loadMissionToMemory -autoInit

Original output filename: Arma3Retail_Server_x64
Exe timestamp: 2017/12/13 17:38:04
Current time:  2018/01/30 21:03:45

Type: Public
Build: Stable
Version: 1.80.143869

Allocator: C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\Dll\tbb4malloc_bi_x64.dll [2017.0.0.0] [2017.0.0.0]
PhysMem: 32 GiB, VirtMem : 131072 GiB, AvailPhys : 27 GiB, AvailVirt : 131072 GiB, AvailPage : 31 GiB
=====================================================================

21:03:45 SteamAPI initialization failed. Steam features won't be accessible!
21:03:45 Cannot register unknown string STR_3DEN_CAMERA_NAME
21:03:45 Cannot register unknown string STR_DIFF_SCENE_ONLY
21:03:45 Cannot register unknown string STR_DIFF_SCENE_AND_MAP
21:03:45 Initializing stats manager.
21:03:45 Stats config disabled.
21:03:45 sessionID: 1be8958a57ddcd8a2458013f417a6e9f95e9da14
21:03:57 Unsupported language English in stringtable
21:03:58 Item STR_RHS_KAB500_NAME listed twice
21:03:58 Unsupported language English in stringtable
21:03:58 Unsupported language English in stringtable
21:03:58 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice
21:03:59 Conflicting addon exitems in 'exitems_weapons\', previous definition in 'exitems\'
21:03:59 Conflicting addon hlcweapons_core in 'hlc_core\', previous definition in 'exitems_dummy\hlc_core\'
21:03:59 Conflicting addon hlcweapons_ar15 in 'hlc_wp_AR15\', previous definition in 'exitems_dummy\hlc_wp_ar15\'
21:03:59 Conflicting addon hlcweapons_falpocalypse in 'hlc_WP_FAL\', previous definition in 'exitems_dummy\hlc_wp_fal\'
21:03:59 Conflicting addon hlcweapons_g3 in 'hlc_wp_g3\', previous definition in 'exitems_dummy\hlc_wp_g3\'
21:03:59 Conflicting addon hlcweapons_m14 in 'hlc_wp_m14\', previous definition in 'exitems_dummy\hlc_wp_m14\'
21:03:59 Conflicting addon hlcweapons_SAW in 'hlc_wp_saw\', previous definition in 'exitems_dummy\hlc_wp_m249\'
21:03:59 Conflicting addon hlcweapons_Springfield1903 in 'hlc_wp_springfield\', previous definition in 'exitems_dummy\hlc_springfield\'
21:03:59 Conflicting addon US_ESS_Glasses_tryk in 'ESSGoggles\', previous definition in 'exitems_dummy\essgoggles\'
21:03:59 Conflicting addon maa_Uniform in 'TRYK_uniforms\', previous definition in 'exitems_dummy\tryk_units\'
21:03:59 Conflicting addon TRYK_Uniform in 'tryk_unit\', previous definition in 'exitems_dummy\tryk_uniforms\'
21:03:59 Conflicting addon TRYK_Uniform in 'zara\', previous definition in 'exitems_dummy\tryk_uniforms\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i1\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1l2\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i3\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1t\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2t1\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i2\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1t\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2l\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i4\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1l2\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2t2\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2t1\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\dom_01\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i4\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2l\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i3\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i2\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i1\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\dom_02_pinsk\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2i\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2i\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:04:00 Conflicting addon a3_exile_occupation in 'x\addons\a3_exile_occupation\', previous definition in 'a3_exile_occupation-development\source\a3_exile_occupation\'
21:04:01 Updating base class All->, by ca\chernarusredux_bushes\config.bin/CfgVehicles/Thing/ (original bin\config.bin)
21:04:01 Updating base class None->, by Shemagh\config.bin/CfgGlasses/TRYK_headset_glasses/ (original ESSGoggles\config.bin)
21:04:01 Updating base class ->NonStrategic, by a3\data_f\config.bin/CfgVehicles/HouseBase/ (original a3\data_f\config.bin)
21:04:01 Updating base class ->DestructionEffects, by a3\data_f\config.bin/CfgVehicles/House/DestructionEffects/ (original a3\data_f\config.bin)
21:04:01 Updating base class ->All, by a3\data_f\config.bin/CfgVehicles/Thing/ (original (bin\config.bin - no unload))
21:04:01 Updating base class ->Wreck, by a3\data_f\config.bin/CfgVehicles/PlaneWreck/ (original a3\data_f\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin)
21:04:01 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class ->EtelkaMonospacePro, by a3\uifonts_f\config.bin/CfgFontFamilies/EtelkaMonospaceProBold/ (original ca\uifonts\config.bin)
21:04:01 Updating base class ->DefaultWorld, by a3\map_data\config.bin/CfgWorlds/CAWorld/ (original ca\chernarusredux_data\config.bin)
21:04:01 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin)
21:04:01 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin)
21:04:01 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin)
21:04:01 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin)
21:04:01 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin)
21:04:01 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin)
21:04:01 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin)
21:04:01 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin)
21:04:01 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin)
21:04:01 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin)
21:04:01 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin)
21:04:01 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
21:04:01 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin)
21:04:01 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin)
21:04:01 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin)
21:04:01 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin)
21:04:01 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin)
21:04:01 Updating base class ->VehicleMagazine, by a3\weapons_f\config.bin/CfgMagazines/24Rnd_missiles/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->RocketPods, by a3\weapons_f\config.bin/CfgWeapons/missiles_DAR/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->Default, by a3\weapons_f\config.bin/CfgWeapons/ItemCore/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->Binocular, by a3\weapons_f\config.bin/CfgWeapons/NVGoggles/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->Bag_Base, by a3\weapons_f\ammoboxes\config.bin/CfgVehicles/B_Carryall_Base/ (original a3\weapons_f\ammoboxes\config.bin)
21:04:01 Updating base class ->InventoryItem_Base_F, by a3\weapons_f\items\config.bin/CfgWeapons/UniformItem/ (original a3\weapons_f\items\config.bin)
21:04:01 Updating base class ->Man, by a3\characters_f\config.bin/CfgVehicles/CAManBase/ (original a3\characters_f\config.bin)
21:04:01 Updating base class ->CAManBase, by a3\characters_f\config.bin/CfgVehicles/SoldierWB/ (original a3\characters_f\config.bin)
21:04:01 Updating base class ->SoldierWB, by a3\characters_f\config.bin/CfgVehicles/B_Soldier_base_F/ (original a3\characters_f\config.bin)
21:04:01 Updating base class ->InventoryItem_Base_F, by a3\characters_f\config.bin/CfgWeapons/HeadgearItem/ (original a3\characters_f\config.bin)
21:04:01 Updating base class player->close, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/close/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->short, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/short/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->medium, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/medium/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->far, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/far/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class player->close, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/close/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->short, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/short/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->medium, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/medium/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->far, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/far/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->All, by a3\sounds_f\config.bin/CfgVehicles/Sound/ (original a3\sounds_f\config.bin)
21:04:01 Updating base class ->Car, by a3\sounds_f\config.bin/CfgVehicles/Car_F/ (original a3\sounds_f\config.bin)
21:04:01 Updating base class ZavoraAnim->House, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora/ (original ca\buildings_c\config.bin)
21:04:01 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)
21:04:01 Updating base class ->CAWorld, by ca\chernarusredux_c\config.bin/CfgWorlds/ChernarusRedux/ (original ca\chernarusredux_data\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_1l2\config.bin/CfgVehicles/Land_HouseV_1L2/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_1l2\config.bin/CfgVehicles/Land_HouseV_1L2/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_1t\config.bin/CfgVehicles/Land_HouseV_1t/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_1t\config.bin/CfgVehicles/Land_HouseV_1t/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2i\config.bin/CfgVehicles/Land_HouseV_2I/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2i\config.bin/CfgVehicles/Land_HouseV_2I/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2l\config.bin/CfgVehicles/Land_HouseV_2L/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2l\config.bin/CfgVehicles/Land_HouseV_2L/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2t1\config.bin/CfgVehicles/Land_HouseV_2t1/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2t1\config.bin/CfgVehicles/Land_HouseV_2t1/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2t2\config.bin/CfgVehicles/Land_HouseV_2t2/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2t2\config.bin/CfgVehicles/Land_HouseV_2t2/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i1\config.bin/CfgVehicles/Land_HouseV_3I1/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i1\config.bin/CfgVehicles/Land_HouseV_3I1/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i2\config.bin/CfgVehicles/Land_HouseV_3I2/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i2\config.bin/CfgVehicles/Land_HouseV_3I2/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i3\config.bin/CfgVehicles/Land_HouseV_3I3/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i3\config.bin/CfgVehicles/Land_HouseV_3I3/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i4\config.bin/CfgVehicles/Land_HouseV_3I4/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i4\config.bin/CfgVehicles/Land_HouseV_3I4/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class ->Tank, by a3\armor_f_beta\config.bin/CfgVehicles/Tank_F/ (original a3\armor_f_beta\config.bin)
21:04:01 Updating base class ->Ship, by a3\boat_f\config.bin/CfgVehicles/Ship_F/ (original a3\boat_f\config.bin)
21:04:01 Updating base class OpenGate->, by ca\misc3_c\config.bin/CfgVehicles/ZavoraAnim/UserActions/CloseGate/ (original ca\buildings_c\config.bin)
21:04:01 Updating base class TargetTraining->TargetGrenadBase, by ca\misc3_c\config.bin/CfgVehicles/TargetGrenade/ (original ca\misc3_c\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_WDL_GRY_CombatUniform/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_fleece/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUODs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs_gry/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs_BLK/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs_OD/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_hood_blk/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_hood_mc/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_hood_nc/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_jersey_blu/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_jersey_blk/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_R/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_BL/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_BK/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_WH/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_BWH/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_RED2/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_WHB/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_ylb/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_od/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUHs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGHs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUODHs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_B_USMC_R/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->H_HelmetB, by tryk_unit\config.bin/cfgWeapons/TRYK_H_Helmet_WOOD/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->H_HelmetB, by tryk_unit\config.bin/cfgWeapons/TRYK_H_Helmet_MARPAT_Wood/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Vest_Camo_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_V_PlateCarrier_blk_L/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Vest_Camo_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_V_PlateCarrier_wood_L/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Vest_Camo_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_V_PlateCarrier_coyo_L/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW/ (original zara\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW3/ (original zara\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW4/ (original zara\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW7/ (original zara\config.bin)
21:04:01 Updating base class NewTurret->NewTurret, by a3\armor_f_beta\apc_wheeled_01\config.bin/CfgVehicles/Wheeled_APC_F/Turrets/MainTurret/ (original a3\armor_f_beta\config.bin)
21:04:01 Updating base class ->cargo_base, by a3\cargoposes_f_heli\config.bin/CfgMovesMaleSdr/States/passenger_inside_2_Aim/ (original a3\cargoposes_f_heli\config.bin)
21:04:01 Updating base class ->cargo_base, by a3\cargoposes_f_heli\config.bin/CfgMovesMaleSdr/States/passenger_inside_7_Aim/ (original a3\cargoposes_f_heli\config.bin)
21:04:01 Updating base class ->SlotInfo, by a3\weapons_f_mark\config.bin/UnderBarrelSlot/ (original a3\weapons_f_mark\config.bin)
21:04:01 Updating base class ->asdg_SlotInfo, by rhsafrf\addons\rhs_c_weapons\config.bin/asdg_UnderSlot/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
21:04:01 Updating base class ->asdg_SlotInfo, by rhsafrf\addons\rhs_c_weapons\config.bin/asdg_FrontSideRail/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
21:04:01 Updating base class ->asdg_SlotInfo, by rhsafrf\addons\rhs_c_weapons\config.bin/asdg_MuzzleSlot/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
21:04:01 Updating base class ->WhiteHead_01, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_01_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_04, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_04_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_05, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_05_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_06, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_06_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_07, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_07_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_08, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_08_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_09, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_09_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_10, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_10_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_11, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_11_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_14, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_14_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_15, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_15_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_16, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_16_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->GreekHead_A3_01, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Greek_01_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->GreekHead_A3_08, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Greek_08_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->GreekHead_A3_09, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Greek_09_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->AsianHead_A3_01, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Asian_01_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->AsianHead_A3_02, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Asian_02_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->AsianHead_A3_03, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Asian_03_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->BaseSoundModeType, by rhsafrf\addons\rhs_sounds\config.bin/CfgWeapons/rhs_weap_pkt/manual/StandardSound/ (original rhsafrf\addons\rhs_c_heavyweapons\config.bin)
21:04:01 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by rhsafrf\addons\rhs_weapon_sounds\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
21:04:01 Updating base class ->SoundsExt, by rhsafrf\addons\rhs_vehiclesounds\config.bin/CfgVehicles/Heli_Attack_02_base_F/SoundsExt/ (original a3\air_f_beta\heli_attack_02\config.bin)
21:04:01 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin)
21:04:01 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin)
21:04:01 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin)
21:04:01 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\delete\config.bin/CfgWorlds/plr_bulge/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\delete\config.bin/CfgWorlds/plr_mana/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\delete\config.bin/CfgWorlds/MBG_Nam/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\grid\config.bin/CfgWorlds/Intro/ (original CUP\Terrains\cup_terrains_worlds\grid\config.bin)
21:04:01 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/utes/ (original CUP\Terrains\cup_terrains_worlds\intros\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/daraisolas/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->utes, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/ElephantIsland/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/GIMAP/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/OPX_RE/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/Zedka/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->utes, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/fallujah/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/cl_training/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/gott_islands/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/kulima/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/nevada_desert/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/Antarctica/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/applegate_lake/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Takistan, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/usec_aoraki/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/cindercity/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->utes, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/IsolaDiCapraia/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class ->asdg_MuzzleSlot, by rhsusf\addons\rhsusf_c_weapons\config.bin/asdg_MuzzleSlot_556/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
21:04:01 Updating base class ->baseSoundModeType, by rhsusf\addons\rhsusf_weapon_sounds\config.bin/CfgWeapons/rhs_weap_XM2010_Base_F/Single/StandardSound/ (original rhsusf\addons\rhsusf_sounds\config.bin)
21:04:01 Updating base class ->baseSoundModeType, by rhsusf\addons\rhsusf_weapon_sounds\config.bin/CfgWeapons/rhs_weap_XM2010_Base_F/Single/SilencedSound/ (original rhsusf\addons\rhsusf_sounds\config.bin)
21:04:02 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))
21:04:03 Updating base class ListRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class ListPrevRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class CloseRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class NextModeRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class B_Soldier_02_f->B_Soldier_base_F, by exile_client\config.bin/CfgVehicles/B_Story_SF_Captain_F/ (original a3\characters_f\config.bin)
21:04:03 Updating base class ->Rifle, by exile_client\config.bin/CfgWeapons/Exile_Melee_Abstract/ (original exile_client\config.bin)
21:04:03 Cannot delete class BackgroundSlotPrimary, it is referenced somewhere (used as a base class probably).
21:04:03 Updating base class RscStandardDisplay->, by exile_client\config.bin/RscDisplayMain/ (original bin\config.bin)
21:04:03 Updating base class RscPicture->RscText, by exile_client\config.bin/RscDisplayVoiceChat/controls/Picture/ (original a3\ui_f\config.bin)
21:04:03 Updating base class ->Plane, by exile_psycho_an2\config.bin/CfgVehicles/an2_base/ (original exile_psycho_an2\config.bin)
21:04:03 Updating base class ->BRDM2_HQ_Base, by exile_psycho_brdm\config.bin/CfgVehicles/BRDM2_HQ_CHDKZ/ (original exile_psycho_brdm\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_MG_base_EP1/ (original exile_psycho_btr40\config.bin)
21:04:03 Updating base class ->BTR40_MG_base_EP1, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_base_EP1/ (original exile_psycho_btr40\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_gaz_volha\config.bin/CfgVehicles/volha_Base/ (original exile_psycho_gaz_volha\config.bin)
21:04:03 Updating base class close->LowROF, by exile_psycho_hmmw\config.bin/cfgWeapons/M134_minigun/medium/ (original a3\weapons_f\config.bin)
21:04:03 Updating base class close->medium, by exile_psycho_hmmw\config.bin/cfgWeapons/M134_minigun/far/ (original a3\weapons_f\config.bin)
21:04:03 Updating base class Car->Car_F, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_Base/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M2/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M134/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_UNA/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_UNA, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_MEV/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->Ikarus_Base, by exile_psycho_ikarus\config.bin/CfgVehicles/Ikarus_Civ_02/ (original exile_psycho_ikarus\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_lada\config.bin/CfgVehicles/Lada_Base/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/Landrover_Civ_02/ (original exile_psycho_lrc\config.bin)
21:04:03 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/LR_Ambulance_Base/ (original exile_psycho_lrc\config.bin)
21:04:03 Updating base class ->Octavia_Base, by exile_psycho_octavia\config.bin/CfgVehicles/Octavia_Civ_01/ (original exile_psycho_octavia\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_suv_a3\config.bin/CfgVehicles/SUV_Base/ (original exile_psycho_suv_a3\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_suvarm_a3\config.bin/cfgVehicles/SUV_armored_Base/ (original exile_psycho_suvarm_a3\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_tractor\config.bin/CfgVehicles/Tractor_Base/ (original exile_psycho_tractor\config.bin)
21:04:03 Updating base class ->Tractor_Base, by exile_psycho_tractor\config.bin/CfgVehicles/tractorOld/ (original exile_psycho_tractor\config.bin)
21:04:03 Updating base class ->Offroad_01_base_F, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Base/ (original exile_psycho_uaz\config.bin)
21:04:03 Updating base class ->UAZ_Base, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Open_Base/ (original exile_psycho_uaz\config.bin)
21:04:03 Updating base class ->UH1H_Closed, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_Clo/ (original exile_psycho_uh1h\config.bin)
21:04:03 Updating base class ->UH1HL_base, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_M240/ (original exile_psycho_uh1h\config.bin)
21:04:03 Updating base class ->Ural_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_RU/ (original exile_psycho_ural\config.bin)
21:04:03 Updating base class ->Ural_Open_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_Open_RU/ (original exile_psycho_ural\config.bin)
21:04:03 Updating base class ->Truck_F, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_base/ (original exile_psycho_v3s\config.bin)
21:04:03 Updating base class ->V3S_base, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_Base_EP1/ (original exile_psycho_v3s\config.bin)
21:04:03 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo01/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo02/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo03/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class ->Golf_Base, by exile_psycho_vwgolf\config.bin/CfgVehicles/Golf_Civ_Base/ (original exile_psycho_vwgolf\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/75Rnd_Green_Tracer_545x39_RPK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->75Rnd_Green_Tracer_545x39_RPK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/45Rnd_Green_Tracer_545x39_RPK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Green_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Red_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_White_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Yellow_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_762x39_AK47_M/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK47/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK107_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK107/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK107_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK107_GL/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK74_GL/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKM/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AKM, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AKS, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS_Gold/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK74, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_RPK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->exile_arifle_M16A4_base, by exile_psycho_weapons\arifle\m\m16a4\config.bin/CfgWeapons/exile_arifle_M16A4/ (original exile_psycho_weapons\arifle\m\m16a4\config.bin)
21:04:03 Updating base class ->exile_arifle_M16A4_base, by exile_psycho_weapons\arifle\m\m16a4\config.bin/CfgWeapons/exile_arifle_M16A2/ (original exile_psycho_weapons\arifle\m\m16a4\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\arifle\m\m4\config.bin/CfgWeapons/exile_arifle_M4/ (original exile_psycho_weapons\arifle\m\m4\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/10Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
21:04:03 Updating base class ->10Rnd_765x17ball, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/20Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\arifle\sa61\config.bin/CfgWeapons/exile_rifle_SA61/ (original exile_psycho_weapons\arifle\sa61\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\mgun\pk\config.bin/CfgMagazines/100Rnd_762x54_PK_Tracer_Green/ (original exile_psycho_weapons\mgun\pk\config.bin)
21:04:03 Updating base class ->Rifle_Long_Base_F, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/PKP/ (original exile_psycho_weapons\mgun\pk\config.bin)
21:04:03 Updating base class ->PKP, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/Pecheneg/ (original exile_psycho_weapons\mgun\pk\config.bin)
21:04:03 Updating base class ShotgunBase->BulletBase, by exile_psycho_weapons\other\m1014\config.bin/CfgAmmo/B_12Gauge_Pellets/ (original a3\weapons_f\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\other\m1014\config.bin/CfgMagazines/8Rnd_B_Beneli_74Slug/ (original exile_psycho_weapons\other\m1014\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\other\m1014\config.bin/CfgMagazines/8Rnd_B_Beneli_74Pellets/ (original exile_psycho_weapons\other\m1014\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\other\m1014\config.bin/CfgWeapons/M1014/ (original exile_psycho_weapons\other\m1014\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgMagazines/7Rnd_45ACP_1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgWeapons/Colt1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\makarov\config.bin/CfgMagazines/8Rnd_9x18_Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\makarov\config.bin/CfgWeapons/Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\revolver\config.bin/CfgMagazines/6Rnd_45ACP/ (original exile_psycho_weapons\pistol\revolver\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455/ (original exile_psycho_weapons\pistol\revolver\config.bin)
21:04:03 Updating base class ->TaurusTracker455, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455_gold/ (original exile_psycho_weapons\pistol\revolver\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Yellow_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Red_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Green_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\dmr\config.bin/CfgWeapons/srifle_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\huntingrifle\config.bin/CfgMagazines/5x_22_LR_17_HMR_M/ (original exile_psycho_weapons\srifle\huntingrifle\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\huntingrifle\config.bin/CfgWeapons/srifle_CZ550_base/ (original exile_psycho_weapons\srifle\huntingrifle\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgMagazines/5Rnd_127x108_KSVK/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgMagazines/5Rnd_127x108_APDS_KSVK/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgWeapons/ksvk/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\leeenfield\config.bin/CfgMagazines/10x_303_M/ (original exile_psycho_weapons\srifle\leeenfield\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\leeenfield\config.bin/CfgWeapons/srifle_LeeEnfield/ (original exile_psycho_weapons\srifle\leeenfield\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\m107\config.bin/CfgMagazines/10Rnd_127x99_m107/ (original exile_psycho_weapons\srifle\m107\config.bin)
21:04:03 Updating base class ->Rifle_Long_Base_F, by exile_psycho_weapons\srifle\m107\config.bin/CfgWeapons/exile_weapons_m107/ (original exile_psycho_weapons\srifle\m107\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\svd\config.bin/CfgMagazines/10Rnd_762x54_SVD/ (original exile_psycho_weapons\srifle\svd\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\svd\config.bin/CfgWeapons/srifle_SVD/ (original exile_psycho_weapons\srifle\svd\config.bin)
21:04:03 Updating base class ->srifle_SVD, by exile_psycho_weapons\srifle\svd\config.bin/CfgWeapons/srifle_SVD_des/ (original exile_psycho_weapons\srifle\svd\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\vss\config.bin/CfgMagazines/10Rnd_9x39_VSS/ (original exile_psycho_weapons\srifle\vss\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\vss\config.bin/CfgMagazines/20Rnd_9x39_VSS/ (original exile_psycho_weapons\srifle\vss\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\vss\config.bin/CfgWeapons/srifle_VSSVintorez/ (original exile_psycho_weapons\srifle\vss\config.bin)
21:04:03 Updating base class AbstractConstruction->AbstractConstruction, by extendedbase\config.bin/CfgConstruction/AbstractFloor/ (original exile_client\config.bin)
21:04:03 Updating base class AbstractConstruction->AbstractConstruction, by extendedbase\config.bin/CfgConstruction/AbstractWall/ (original exile_client\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_1_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_3_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_5_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_Tower_F/ (original a3\structures_f\mil\bagbunker\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncBarrier_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Stone_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Stone_Gate_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_1->, by extendedbase\config.bin/CfgVehicles/Land_Stone_Gate_F/UserActions/CloseDoor_1/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_2->, by extendedbase\config.bin/CfgVehicles/Land_Stone_Gate_F/UserActions/CloseDoor_2/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WaterCooler_01_new_F/ (original a3\structures_f_bootcamp\items\electronics\config.bin)
21:04:03 Updating base class Scrapyard_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Pallet_MilBoxes_F/ (original a3\structures_f_epa\mil\scrapyard\config.bin)
21:04:03 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_Small_F/ (original a3\structures_f\mil\bagbunker\config.bin)
21:04:03 Updating base class House_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Bunker_F/ (original a3\structures_f\mil\bunker\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierWall_corner_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierWall6_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierWall4_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Cargo20_military_green_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_RampConcrete_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class BagFence_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagFence_Corner_F/ (original a3\structures_f\mil\bagfence\config.bin)
21:04:03 Updating base class BagFence_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagFence_Long_F/ (original a3\structures_f\mil\bagfence\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierTower_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Metal_wooden_rack_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Wall_IndCnc_4_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_City2_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_City2_8m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Helipad_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HelipadCivil_F/ (original a3\structures_f\mil\helipads\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Rack_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_City_Gate_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_1->, by extendedbase\config.bin/CfgVehicles/Land_City_Gate_F/UserActions/CloseDoor_1/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_2->, by extendedbase\config.bin/CfgVehicles/Land_City_Gate_F/UserActions/CloseDoor_2/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BarGate_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Icebox_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningMilitaryArea_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Mil_WallBig_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Cargo_Patrol_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_Patrol_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
21:04:03 Updating base class Piers_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pier_small_F/ (original a3\structures_f\naval\piers\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Wall_Tin_4/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Tank_rust_F/ (original a3\structures_f\ind\tank\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesMetal_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Cargo_Tower_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_Tower_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_FuelStation_Feed_F/ (original a3\structures_f\ind\fuelstation\config.bin)
21:04:03 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_Large_F/ (original a3\structures_f\mil\bagbunker\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/ShootingPos_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class Cargo_House_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_House_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
21:04:03 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Cargo40_light_green_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_cargo_house_slum_F/ (original a3\structures_f\households\slum\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncShelter_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Wall_IndCnc_2deco_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncWall4_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_FuelStation_Shed_F/ (original a3\structures_f\ind\fuelstation\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Shed_Small_F/ (original a3\structures_f\ind\shed\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Razorwire_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_u_Addon_01_V1_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Cargo20_sand_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GH_Stairs_F/ (original a3\structures_f_epc\dominants\ghosthotel\config.bin)
21:04:03 Updating base class Land_i_Garage_V1_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Garage_V2_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GH_Platform_F/ (original a3\structures_f_epc\dominants\ghosthotel\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_TentDome_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TentHangar_V1_F/ (original a3\structures_f\mil\tenthangar\config.bin)
21:04:03 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampHalogen_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class Land_LampAirport_off_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampAirport_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncWall1_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncBarrierMedium_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Crash_barrier_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Shed_Big_F/ (original a3\structures_f\ind\shed\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TouristShelter_01_F/ (original a3\structures_f_epc\civ\tourism\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Water_source_F/ (original a3\structures_f\civ\accessories\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Concrete_SmallWall_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Concrete_SmallWall_8m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningMilAreaSmall_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningMilitaryVehicles_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_PortableLight_single_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PortableLight_double_F/ (original a3\structures_f_epa\civ\constructions\config.bin)
21:04:03 Updating base class Reflectors->, by extendedbase\config.bin/CfgVehicles/Land_PortableLight_double_F/Reflectors/ (original a3\structures_f_epa\civ\constructions\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/Land_PortableLight_double_F/Reflectors/Light_1/ (original extendedbase\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Radar_Small_F/ (original a3\structures_f\mil\radar\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_addon02_V2_F/ (original a3\structures_f\households\slum\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TableDesk_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_ToiletBox_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_ChairWood_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/BlockConcrete_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class ThingX->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_CargoBox_V1_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IndFnc_3_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IndFnc_9_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Piers_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sea_Wall_F/ (original a3\structures_f\naval\piers\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Addon_03_V1_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Addon_03mid_V1_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampStreet_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Dome_Big_F/ (original a3\structures_f\research\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Hangar_F/ (original a3\structures_f\ind\airport\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Metal_Shed_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_spp_Tower_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sun_chair_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_04_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampShabby_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/LAnd_Airport_Tower_F/ (original a3\structures_f\ind\airport\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Barracks_V1_F/ (original a3\structures_f\mil\barracks\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BeachBooth_01_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Castle_01_tower_F/ (original a3\structures_f\dominants\castle\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningUnexplodedAmmo_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TTowerSmall_1_F/ (original a3\structures_f\ind\transmitter_tower\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Exile_Plant_GreenBush/ (original exile_client\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sleeping_bag_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Rocks_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Small_Stone_02_F/ (original a3\rocks_f\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_SolarPanel_2_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_spp_Panel_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CampingChair_V2_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CampingChair_V1_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Camping_Light_F/ (original a3\structures_f_epb\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CampingTable_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_MapBoard_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/MapBoard_altis_F/ (original a3\structures_f\civ\infoboards\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_narrow_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_narrow_corner_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_wide_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_wide_corner_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Exile_ConcreteMixer/ (original exile_client\config.bin)
21:04:03 Updating base class FlagCarrier->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Flag_CSAT_F/ (original a3\structures_f\mil\flags\config.bin)
21:04:03 Updating base class ThingX->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_GarbageContainer_closed_F/ (original a3\structures_f_epb\civ\garbage\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Metal_rack_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sink_F/ (original a3\structures_f\civ\accessories\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Atm_02_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
21:04:03 Updating base class Land_BagBunker_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_01_small_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_HBarrier_3_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_line_3_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_HBarrier_5_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_line_5_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_BagBunker_Tower_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_tower_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_House_Small_03_V1_F/ (original a3\structures_f\households\house_small03\config.bin)
21:04:03 Updating base class Land_i_House_Big_01_V1_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_House_Big_01_V2_F/ (original a3\structures_f\households\house_big01\config.bin)
21:04:03 Updating base class PlasticCase_01_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_PlasticCase_01_medium_F/ (original a3\structures_f_heli\items\luggage\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Research_HQ_F/ (original a3\structures_f\research\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Research_house_V1_F/ (original a3\structures_f\research\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Airport_01_hangar_F/ (original a3\structures_f_exp\infrastructure\airports\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Ammobox_rounds_F/ (original a3\structures_f_epb\items\military\config.bin)
21:04:03 Updating base class Slingload_01_Base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/B_Slingload_01_Ammo_F/ (original a3\supplies_f_heli\slingload\config.bin)
21:04:03 Updating base class Slingload_01_Base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/B_Slingload_01_fuel_F/ (original a3\supplies_f_heli\slingload\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IRMaskingCover_01_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IRMaskingCover_02_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Land_BagFence_Long_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Bagfence_01_long_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_BagFence_Short_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Bagfence_01_short_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_BagBunker_Large_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Bagbunker_01_large_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_HBarrierTower_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_big_tower_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Suitcase_F/ (original a3\structures_f\items\luggage\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_powerSupply_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_camera_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Land_WaterPump_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/WaterPump_01_forest_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class Land_WaterPump_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/WaterPump_01_sand_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TripodScreen_01_large_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TripodScreen_01_dual_v2_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TripodScreen_01_dual_v1_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Target_Swivel_01_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class EventHandlers->, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/EventHandlers/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class AnimationSources->, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/AnimationSources/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class Screws_source->, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/AnimationSources/Screws_source/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class TargetP_Inf_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TargetP_Inf_Acc2_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class TargetBootcampHumanSimple_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TargetBootcampHuman_F/ (original a3\structures_f_bootcamp\training\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Target_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_SatelliteAntenna_01_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Projector_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PortableGenerator_01_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Land_Obstacle_Bridge_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Obstacle_Ramp_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class Land_MetalBarrel_empty_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/MetalBarrel_burning_F/ (original a3\structures_f\items\vessels\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_FlatTV_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_ChairPlastic_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_console_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_controller_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class SportsGrounds_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GymBench_01_F/ (original a3\structures_f_bootcamp\civ\sportsgrounds\config.bin)
21:04:03 Updating base class SportsGrounds_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GymRack_03_F/ (original a3\structures_f_bootcamp\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Microwave_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_OfficeCabinet_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_OfficeChair_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_case_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_keyboard_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_mouse_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_screen_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Printer_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_RattanChair_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_RattanTable_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Land_Sleeping_bag_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sleeping_bag_blue_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_Sleeping_bag_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sleeping_bag_brown_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_Trophy_01_gold_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Trophy_01_bronze_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
21:04:03 Updating base class SportItems_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Trophy_01_gold_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
21:04:03 Updating base class Land_Trophy_01_gold_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Trophy_01_silver_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
21:04:03 Updating base class Land_Sun_chair_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sun_chair_green_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_01_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_02_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_03_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TablePlastic_01_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WoodenTable_large_F/ (original a3\structures_f_epa\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WoodenTable_small_F/ (original a3\structures_f_epa\civ\camping\config.bin)
21:04:03 Updating base class Land_OfficeTable_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/OfficeTable_01_new_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_DieselGroundPowerUnit_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_EngineCrane_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class PalletTrolley_01_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PalletTrolley_01_yellow_F/ (original a3\structures_f_heli\civ\market\config.bin)
21:04:03 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PressureWasher_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class ToolTrolley_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ToolTrolley_01_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
21:04:03 Updating base class ToolTrolley_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ToolTrolley_02_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
21:04:03 Updating base class Constructions_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WeldingTrolley_01_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Workbench_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Thing->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/ArrowDesk_L_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class ArrowDesk_L_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/ArrowDesk_R_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_02_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_02_grey_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_02_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_02_yellow_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_03_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_03_blue_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_03_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_03_orange_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class RoadCone_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadBarrier_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadCone_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Sign_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TapeSign_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_Mines_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_Fridge_01_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Fridge_01_closed_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class MetalCase_01_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_MetalCase_01_large_F/ (original a3\structures_f_heli\items\luggage\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesWooden_F/ (original a3\structures_f_epb\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesWooden_blue_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesWooden_khaki_F/ (original a3\structures_f_epb\furniture\config.bin)
21:04:03 Updating base class RoadCone_L_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadBarrier_small_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadCone_L_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PortableHelipadLight_01_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_blue_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_blue_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_blue_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_green_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_green_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_green_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_red_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_red_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_red_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_white_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_white_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_white_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_yellow_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_yellow_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_yellow_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Target_Dueling_01_F/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Target_Oval_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TargetP_Inf_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class ->rhsusf_assault_eagleaiii_ucp, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgVehicles/rhsusf_assault_eagleaiii_ocp/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
21:04:03 Updating base class ->RscStandardDisplay, by x\cba\addons\help\config.bin/RscDisplayMain/ (original bin\config.bin)
21:04:03 Updating base class ->Plane_Civil_01_base_F, by a3\air_f_exp\plane_civil_01\config.bin/CfgVehicles/C_Plane_Civil_01_F/ (original a3\air_f_exp\plane_civil_01\config.bin)
21:04:03 Updating base class ->VTOL_01_infantry_base_F, by a3\air_f_exp\vtol_01\config.bin/CfgVehicles/B_T_VTOL_01_infantry_F/ (original a3\air_f_exp\vtol_01\config.bin)
21:04:03 Updating base class ->VTOL_01_vehicle_base_F, by a3\air_f_exp\vtol_01\config.bin/CfgVehicles/B_T_VTOL_01_vehicle_F/ (original a3\air_f_exp\vtol_01\config.bin)
21:04:03 Updating base class ->Boat_Transport_02_base_F, by a3\boat_f_exp\boat_transport_02\config.bin/CfgVehicles/B_G_Boat_Transport_02_F/ (original a3\boat_f_exp\boat_transport_02\config.bin)
21:04:03 Updating base class ->Scooter_Transport_01_base_F, by a3\boat_f_exp\scooter_transport_01\config.bin/CfgVehicles/C_Scooter_Transport_01_F/ (original a3\boat_f_exp\scooter_transport_01\config.bin)
21:04:04 Updating base class ->SoundsExt, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/Heli_Transport_01_base_F/SoundsExt/ (original a3\air_f_beta\heli_transport_01\config.bin)
21:04:04 Updating base class ->asdg_SlotInfo, by x\cba\addons\jr\config.bin/asdg_OpticRail/ (original x\cba\addons\jr\config.bin)
21:04:04 Updating base class ->asdg_MuzzleSlot, by x\cba\addons\jr\config.bin/asdg_MuzzleSlot_762/ (original x\cba\addons\jr\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_RU556/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_rifle_RU556, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_RU5562/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_M4/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_Colt727/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_SAMR/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_rifle_SAMR, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_samr2/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_aug_base, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aug/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1_t/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1_b/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1carb/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga1carb, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1carb_B/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga1carb, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1carb_t/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aughbar/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aughbar, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aughbar_B/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aughbar, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aughbar_t/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_bl/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_b/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_GL/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3_GL, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_GL_BL/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3_GL, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_GL_B/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_fal_base, by hlc_WP_FAL\config.bin/CfgWeapons/hlc_rifle_FAL5061Rail/ (original hlc_WP_FAL\config.bin)
21:04:04 Updating base class ->hlc_rifle_FAL5061Rail, by hlc_WP_FAL\config.bin/CfgWeapons/hlc_rifle_FAL5000Rail/ (original hlc_WP_FAL\config.bin)
21:04:04 Updating base class ->hlc_G36_base, by hlc_wp_g36\config.bin/CfgWeapons/hlc_rifle_G36A1/ (original hlc_wp_g36\config.bin)
21:04:04 Updating base class ->hlc_G36_base, by hlc_wp_g36\config.bin/CfgWeapons/hlc_rifle_G36C/ (original hlc_wp_g36\config.bin)
21:04:04 Updating base class optic_Aco->optic_Arco, by hlc_wp_g3\config.bin/CfgWeapons/hlc_optic_ZF4xBase/ (original hlc_core\config.bin)
21:04:04 Updating base class ->hlc_g3_base, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3sg1/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_g3_base, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_psg1/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_rifle_g3sg1, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3a3/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_rifle_g3a3, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3a3ris/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_M14_base, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M14/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_M14, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M14_Rail/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_M14_base, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M21/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_M21, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M21_Rail/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_M21, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_m14dmr/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_m14dmr, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M14dmr_Rail/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_lmg_minimi_railed, by hlc_wp_saw\config.bin/CfgWeapons/hlc_m249_pip1/ (original hlc_wp_saw\config.bin)
21:04:04 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin)
21:04:04 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin)
21:04:04 Updating base class burlap->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_BurlapSack/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_blk->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Black/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_red->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Red/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_grn->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Green/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_wht->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_White/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_blu->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Blue/ (original exile_client\config.bin)
21:04:04 Updating base class Exile_Construction_Abstract_Static->Land_MetalBarrel_empty_F, by x\cba\addons\xeh\config.bin/CfgVehicles/MetalBarrel_burning_F/ (original (a3\structures_f\items\vessels\config.bin - no unload))
21:04:04 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin)
21:04:04 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin)
21:04:04 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin)
21:04:04 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by LAxemann\L_ES\addons\ES_sys\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
21:04:04 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by LAxemann\L_ES\addons\ES_sys\config.bin/CfgWeapons/SMG_01_base/ (original (a3\weapons_f\smgs\smg_01\config.bin - no unload))
21:04:04 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by LAxemann\L_ES\addons\ES_sys\config.bin/CfgWeapons/pdw2000_base_F/ (original (a3\weapons_f\smgs\pdw2000\config.bin - no unload))
21:04:05 Updating base class ->Attributes, by rhsafrf\addons\rhs_c_a2port_armor\config.bin/CfgVehicles/rhs_btr_base/Attributes/ (original rhsafrf\addons\rhs_c_btr\config.bin)
21:04:06 Initializing Steam Manager
21:04:06 Steam Manager initialized.
21:04:06 
21:04:06 ==== Loaded addons ====
21:04:06 
21:04:06 dta\bin.pbo - 143869
21:04:06 dta\core.pbo - 109319
21:04:06 dta\languagecore_f.pbo - 124255
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\dbo_old_bike.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_assets.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_client.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_danny_items.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_an2.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_brdm.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_btr40.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_gaz_volha.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_hmmw.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_ikarus.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_lada.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_lrc.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_octavia.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_suvarm_a3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_suv_a3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_towtractor.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_tractor.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_uaz.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_uh1h.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_ural.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_v3s.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_vwgolf.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_weapons.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\gnt_c185.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_a1always_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_a1_editorobjects.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_a2_editorobjects.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_aia_compat.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_baseconfig_f.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_buildings.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_a10_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air3_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_d_baf_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_pmc_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_animals2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings2_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_acr.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_characters2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_cti_buildings.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_data.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_data_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_data_baf_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_hotfix.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_hotfix_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_l39_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_acr.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc3.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc3_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_acr.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_acr_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_e_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_rtm2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_mp_armory_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants_e2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads_rtm2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_rocks.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_rocks2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_rocks_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_signs.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_signs2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_signs_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_c_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_e_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_pmc_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_tracked2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_tracked_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_tracked_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_uifonts.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ui_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_water2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_water_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_pmc_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_wheeled2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_wheeled_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_wheeled_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_core.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dbe1_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dbe1_models_dbe1.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dbe1_models_dbe1_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_editor_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_hsim_data_h_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_hsim_languagemissions_h.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_hsim_language_h.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ibr_plants.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_plants.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_terrains_core.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_weather.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_worlds.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement\addons\babe_core.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement\addons\babe_em.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement\addons\babe_int.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Base_Mod\addons\extendedbase.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_anims.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_bp.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_characters.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_compatibility.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_dsr.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_dummy.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_structures.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_weapons.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_core.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_acr.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_ak.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_ar15.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_aug.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_fal.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_fhawc.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_fn3011.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_g3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_g36.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_m14.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_m60e4.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_mg3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_minigun.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_mp5.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_p226.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_saw.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_sigamt.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_springfield.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\essgoggles.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\kio_balaclava.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\shemagh.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\tryk_backpack.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\tryk_uniforms.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\tryk_unit.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\zara.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_2s3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_2s3_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_armor_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_car_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a3retex.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_accessory.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_aps.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmd.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmd_34.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmd_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp3_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr70.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr70_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr80.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr80_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_2s3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a3retex.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmd.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmd_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmp.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmp3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_btr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_btr70_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_cars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_cti_indep.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_identity.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_kamaz.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_mi28.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_mig29.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_pts.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_radars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_rva.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_sprut.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_t72.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_tanks.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_troops.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_trucks.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_decals.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_editorpreviews.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_gaz66.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_gaz66_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_identity.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_infantry.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_infantry2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_kamaz.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_main.pbo - RedHammerStudios.0.4.4
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_mi28.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_mig29.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_missions.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_mtlb.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_muzzleflash.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_optics.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_pts.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_radars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_servicemenu.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_sprut.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_ss21.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_ss21_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_s_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t72.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t72_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t80.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t80u.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t80u_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_tigr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_vehiclesounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapons2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapons3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapon_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Temp fix for exile miniguns\addons\sad_minigun_fix.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_air2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_caiman.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_cars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_ch53.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_caiman.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_ch53.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_f22.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_fmtv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_hemtt_a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_hemtt_a4.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_hmmwv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_identity.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m109.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m1117.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m113.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m1a1.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m1a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m252.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_markvsoc.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_melb.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_mrzr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_mtvr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_rg33.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_rg33l.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_statics.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_troops.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_uav.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_decals.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_editorpreviews.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_f22.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_fmtv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_hemtt_a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_hemtt_a4.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_hmmwv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_infantry.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_infantry2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m109.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m1117.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m113.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m1a1.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m1a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m252.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_main.pbo - RedHammerStudios.0.4.4
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_markvsoc.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_melb.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_mrzr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_mtvr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_mtvr_tx.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_muzzleflash.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_optics.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_rg33.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_rg33l.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_scopes.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_s_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_uav.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapons2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapons3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapon_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_xmas.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_bus.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_challenger.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_cobrar.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_data.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_fireengine.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_landcruiser.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_m5t.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_outsider.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_patrol.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_r34.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux.pbo - 17121623
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_animals.pbo - 17100418
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_buildings.pbo - 17121618
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_bushes.pbo - 17100220
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_c.pbo - 17121618
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_chz.pbo - 17100321
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_clutter.pbo - 17100222
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_data.pbo - 17121618
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_layers.pbo - 17100220
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_ponds.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_sounds.pbo - 17093000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_trees.pbo - 17092923
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Zombies and Demons\addons\ryanzombies.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@DS Houses\addons\ds_houses.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_accessory.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_ai.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_arrays.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_common.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_diagnostic.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_events.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_hashes.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_help.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_jr.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_jr_prep.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_keybinding.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_main.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_main_a3.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_modules.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_music.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_network.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_settings.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_statemachine.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_strings.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_ui.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_ui_helper.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_vectors.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_versioning.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_xeh.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape\addons\es_main.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape\addons\es_sounds.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape\addons\es_sys.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\characters_f_tacops.ebo - 124006
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\data_f_tacops.ebo - 124116
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\dubbing_f_tacops.ebo - 123940
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\functions_f_tacops.ebo - 124108
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\languagemissions_f_tacops.ebo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\language_f_tacops.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\missions_f_tacops.ebo - 124106
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\modules_f_tacops.ebo - 123979
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\music_f_tacops.ebo - 124064
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\sounds_f_tacops.ebo - 123795
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\ui_f_tacops.ebo - 124116
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\air_f_orange.ebo - 123266
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\cargoposes_f_orange.ebo - 121102
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\characters_f_orange.ebo - 123851
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\data_f_orange.ebo - 121095
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\dubbing_f_orange.ebo - 121689
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\editorpreviews_f_orange.ebo - 123173
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\functions_f_orange.ebo - 120507
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\languagemissions_f_orange.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\language_f_orange.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\missions_f_orange.ebo - 124054
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\modules_f_orange.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\music_f_orange.ebo - 120725
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\props_f_orange.ebo - 121424
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\soft_f_orange.ebo - 124032
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\sounds_f_orange.ebo - 122301
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\structures_f_orange.ebo - 121553
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\supplies_f_orange.ebo - 120744
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\ui_f_orange.ebo - 123398
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\weapons_f_orange.ebo - 123493
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\armor_f_argo.pbo - 119456
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\characters_f_patrol.pbo - 120167
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\data_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\data_f_patrol.pbo - 121287
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\editorpreviews_f_argo.pbo - 121102
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\functions_f_patrol.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\languagemissions_f_patrol.pbo - 124115
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\language_f_argo.pbo - 124115
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\language_f_patrol.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden.pbo - 123497
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden_data.pbo - 123428
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden_data_layers.pbo - 123441
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden_scenes_f.pbo - 120026
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\missions_f_patrol.pbo - 123402
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\modules_f_patrol.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\music_f_argo.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\props_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\rocks_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\sounds_f_patrol.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\structures_f_argo.pbo - 123495
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\ui_f_patrol.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\vegetation_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\weapons_f_patrol.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\air_f_jets.ebo - 122456
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\anims_f_jets.ebo - 123210
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\boat_f_jets.ebo - 121465
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\cargoposes_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\characters_f_jets.ebo - 120162
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\data_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\dubbing_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\editorpreviews_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\functions_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\languagemissions_f_jets.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\language_f_jets.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\missions_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\modules_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\music_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\props_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\sounds_f_jets.ebo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\static_f_jets.ebo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\ui_f_jets.ebo - 123398
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\weapons_f_jets.ebo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\air_f_exp.pbo - 123077
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\anims_f_exp.pbo - 123208
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\armor_f_exp.pbo - 122301
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\boat_f_exp.pbo - 123046
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\cargoposes_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\characters_f_exp.pbo - 122887
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\data_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp.pbo - 119458
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\editorpreviews_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\functions_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\languagemissions_f_exp.pbo - 124111
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\language_f_exp.pbo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_data_exp.pbo - 123499
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka.pbo - 123528
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka_data.pbo - 123523
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka_data_layers.pbo - 121192
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoa_scenes_f.pbo - 123527
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\missions_f_exp.pbo - 122734
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\missions_f_exp_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\missions_f_exp_video.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\modules_f_exp.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\music_f_exp.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\music_f_exp_music.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\props_f_exp.pbo - 123522
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\rocks_f_exp.pbo - 119519
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\soft_f_exp.pbo - 124032
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\sounds_f_exp.pbo - 124103
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\static_f_exp.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp.pbo - 123419
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_civilian.pbo - 123425
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_commercial.pbo - 123430
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_cultural.pbo - 123423
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_data.pbo - 123431
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_industrial.pbo - 123429
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_infrastructure.pbo - 123432
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\supplies_f_exp.pbo - 119865
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\ui_f_exp.pbo - 123398
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\vegetation_f_exp.pbo - 121192
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\weapons_f_exp.pbo - 123709
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\anims_f_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\characters_f_mark.pbo - 120163
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\data_f_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\dubbing_f_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\dubbing_f_mp_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\functions_f_mark.pbo - 122467
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\functions_f_mp_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\languagemissions_f_mark.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\languagemissions_f_mp_mark.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\language_f_mark.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\language_f_mp_mark.pbo - 124115
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mark.pbo - 122301
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mark_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mark_video.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mp_mark.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mp_mark_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\modules_f_mark.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\modules_f_mp_mark.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\music_f_mark.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\music_f_mark_music.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\sounds_f_mark.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\static_f_mark.pbo - 122307
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\structures_f_mark.pbo - 123419
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\supplies_f_mark.pbo - 120112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\ui_f_mark.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\ui_f_mp_mark.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\weapons_f_mark.pbo - 122681
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\air_f_heli.pbo - 123312
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\anims_f_heli.pbo - 123210
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\boat_f_heli.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\cargoposes_f_heli.pbo - 123912
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\data_f_heli.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\dubbing_f_heli.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\functions_f_heli.pbo - 123022
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\languagemissions_f_heli.pbo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\language_f_heli.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\missions_f_heli.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\missions_f_heli_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\missions_f_heli_video.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\modules_f_heli.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\music_f_heli.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\music_f_heli_music.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\soft_f_heli.pbo - 121447
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\sounds_f_heli.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\structures_f_heli.pbo - 121553
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\supplies_f_heli.pbo - 121339
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\ui_f_heli.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\anims_f_kart.pbo - 123210
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\characters_f_kart.pbo - 120162
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\data_f_kart.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\languagemissions_f_kart.pbo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\language_f_kart.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\missions_f_kart.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\missions_f_kart_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\modules_f_kart.pbo - 119510
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\modules_f_kart_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\soft_f_kart.pbo - 124032
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\sounds_f_kart.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\structures_f_kart.pbo - 123419
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\ui_f_kart.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\weapons_f_kart.pbo - 120217
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\data_f_curator.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\data_f_curator_music.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\functions_f_curator.pbo - 123333
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\language_f_curator.pbo - 124116
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\missions_f_curator.pbo - 121570
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\modules_f_curator.pbo - 124043
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\ui_f_curator.pbo - 123831
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_dms.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_exile_occupation-development.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_exile_occupation.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_infistar_exile_customapps.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\claimvehicles_server.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exad_core.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exad_vg.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exilez_mod.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exile_custom_difficulty.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exile_server.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exile_server_config.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\extdb3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\marxet_server.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile\addons\a3_infistar_exile.pbo - unknown
21:04:06 addons\3den.pbo - 123729
21:04:06 addons\3den_language.pbo - 124115
21:04:06 addons\a3.pbo - unknown
21:04:06 addons\air_f.pbo - 124040
21:04:06 addons\air_f_beta.pbo - 124040
21:04:06 addons\air_f_epb.pbo - 122783
21:04:06 addons\air_f_epc.pbo - 122779
21:04:06 addons\air_f_gamma.pbo - 122454
21:04:06 addons\animals_f.pbo - 123417
21:04:06 addons\animals_f_beta.pbo - 123208
21:04:06 addons\anims_f.pbo - 123109
21:04:06 addons\anims_f_bootcamp.pbo - 123209
21:04:06 addons\anims_f_data.pbo - 123109
21:04:06 addons\anims_f_epa.pbo - 123209
21:04:06 addons\anims_f_epc.pbo - 121358
21:04:06 addons\anims_f_exp_a.pbo - 123209
21:04:06 addons\armor_f.pbo - 119457
21:04:06 addons\armor_f_beta.pbo - 124054
21:04:06 addons\armor_f_epb.pbo - 124054
21:04:06 addons\armor_f_epc.pbo - 122765
21:04:06 addons\armor_f_gamma.pbo - 124055
21:04:06 addons\baseconfig_f.pbo - 119457
21:04:06 addons\boat_f.pbo - 123357
21:04:06 addons\boat_f_beta.pbo - 123357
21:04:06 addons\boat_f_epc.pbo - 119457
21:04:06 addons\boat_f_gamma.pbo - 123329
21:04:06 addons\cargoposes_f.pbo - 119457
21:04:06 addons\characters_f.pbo - 123944
21:04:06 addons\characters_f_beta.pbo - 123759
21:04:06 addons\characters_f_bootcamp.pbo - 123475
21:04:06 addons\characters_f_epa.pbo - 120161
21:04:06 addons\characters_f_epb.pbo - 120161
21:04:06 addons\characters_f_epc.pbo - 123851
21:04:06 addons\characters_f_gamma.pbo - 120293
21:04:06 addons\data_f.pbo - 124040
21:04:06 addons\data_f_bootcamp.pbo - 119457
21:04:06 addons\data_f_exp_a.pbo - 119457
21:04:06 addons\data_f_exp_b.pbo - 119457
21:04:06 addons\drones_f.pbo - 124040
21:04:06 addons\dubbing_f.pbo - 119457
21:04:06 addons\dubbing_f_beta.pbo - 119457
21:04:06 addons\dubbing_f_bootcamp.pbo - 119457
21:04:06 addons\dubbing_f_epa.pbo - 119457
21:04:06 addons\dubbing_f_epb.pbo - 119457
21:04:06 addons\dubbing_f_epc.pbo - 119457
21:04:06 addons\dubbing_f_gamma.pbo - 122449
21:04:06 addons\dubbing_radio_f.pbo - 119457
21:04:06 addons\dubbing_radio_f_data_eng.pbo - 119457
21:04:06 addons\dubbing_radio_f_data_engb.pbo - 119458
21:04:06 addons\dubbing_radio_f_data_gre.pbo - 119458
21:04:06 addons\dubbing_radio_f_data_per.pbo - 119458
21:04:06 addons\dubbing_radio_f_data_vr.pbo - 119458
21:04:06 addons\editorpreviews_f.pbo - 124116
21:04:06 addons\editor_f.pbo - 121103
21:04:06 addons\functions_f.pbo - 124042
21:04:06 addons\functions_f_bootcamp.pbo - 124071
21:04:06 addons\functions_f_epa.pbo - 119458
21:04:06 addons\functions_f_epc.pbo - 119458
21:04:06 addons\functions_f_exp_a.pbo - 122619
21:04:06 addons\languagemissions_f.pbo - 124112
21:04:06 addons\languagemissions_f_beta.pbo - 124112
21:04:06 addons\languagemissions_f_bootcamp.pbo - 124113
21:04:06 addons\languagemissions_f_epa.pbo - 124112
21:04:06 addons\languagemissions_f_epb.pbo - 124112
21:04:06 addons\languagemissions_f_epc.pbo - 124112
21:04:06 addons\languagemissions_f_exp_a.pbo - 124116
21:04:06 addons\languagemissions_f_gamma.pbo - 124112
21:04:06 addons\language_f.pbo - 124114
21:04:06 addons\language_f_beta.pbo - 124115
21:04:06 addons\language_f_bootcamp.pbo - 124113
21:04:06 addons\language_f_epa.pbo - 124111
21:04:06 addons\language_f_epb.pbo - 124114
21:04:06 addons\language_f_epc.pbo - 124111
21:04:06 addons\language_f_exp_a.pbo - 124110
21:04:06 addons\language_f_exp_b.pbo - 124111
21:04:06 addons\language_f_gamma.pbo - 124113
21:04:06 addons\map_altis.pbo - 123457
21:04:06 addons\map_altis_data.pbo - 123439
21:04:06 addons\map_altis_data_layers.pbo - 123456
21:04:06 addons\map_altis_data_layers_00_00.pbo - 0000
21:04:06 addons\map_altis_data_layers_00_01.pbo - 0000
21:04:06 addons\map_altis_data_layers_01_00.pbo - 0000
21:04:06 addons\map_altis_data_layers_01_01.pbo - 0000
21:04:06 addons\map_altis_scenes_f.pbo - 119459
21:04:06 addons\map_data.pbo - 123422
21:04:06 addons\map_stratis.pbo - 123655
21:04:06 addons\map_stratis_data.pbo - 122905
21:04:06 addons\map_stratis_data_layers.pbo - 122917
21:04:06 addons\map_stratis_scenes_f.pbo - 119459
21:04:06 addons\map_vr.pbo - 105264
21:04:06 addons\map_vr_scenes_f.pbo - 119459
21:04:06 addons\misc_f.pbo - 119459
21:04:06 addons\missions_f.pbo - 123018
21:04:06 addons\missions_f_beta.pbo - 122470
21:04:06 addons\missions_f_beta_data.pbo - 119459
21:04:06 addons\missions_f_beta_video.pbo - 119459
21:04:06 addons\missions_f_bootcamp.pbo - 119459
21:04:06 addons\missions_f_bootcamp_data.pbo - 119459
21:04:06 addons\missions_f_bootcamp_video.pbo - 119459
21:04:06 addons\missions_f_data.pbo - 119459
21:04:06 addons\missions_f_epa.pbo - 123774
21:04:06 addons\missions_f_epa_data.pbo - 119459
21:04:06 addons\missions_f_epa_video.pbo - 119459
21:04:06 addons\missions_f_epb.pbo - 119459
21:04:06 addons\missions_f_epc.pbo - 119459
21:04:06 addons\missions_f_exp_a.pbo - 121496
21:04:06 addons\missions_f_exp_a_data.pbo - 119459
21:04:06 addons\missions_f_gamma.pbo - 122934
21:04:06 addons\missions_f_gamma_data.pbo - 119459
21:04:06 addons\missions_f_gamma_video.pbo - 119459
21:04:06 addons\missions_f_video.pbo - 119459
21:04:06 addons\modules_f.pbo - 123979
21:04:06 addons\modules_f_beta.pbo - 119459
21:04:06 addons\modules_f_beta_data.pbo - 119459
21:04:06 addons\modules_f_bootcamp.pbo - 119459
21:04:06 addons\modules_f_data.pbo - 122470
21:04:06 addons\modules_f_epb.pbo - 119459
21:04:06 addons\modules_f_exp_a.pbo - 119459
21:04:06 addons\music_f.pbo - 119459
21:04:06 addons\music_f_bootcamp.pbo - 119459
21:04:06 addons\music_f_bootcamp_music.pbo - 119459
21:04:06 addons\music_f_epa.pbo - 119459
21:04:06 addons\music_f_epa_music.pbo - 119459
21:04:06 addons\music_f_epb.pbo - 119459
21:04:06 addons\music_f_epb_music.pbo - 119459
21:04:06 addons\music_f_epc.pbo - 119459
21:04:06 addons\music_f_epc_music.pbo - 119477
21:04:06 addons\music_f_music.pbo - 119477
21:04:06 addons\plants_f.pbo - 122470
21:04:06 addons\props_f_exp_a.pbo - 119459
21:04:06 addons\roads_f.pbo - 119459
21:04:06 addons\rocks_f.pbo - 122712
21:04:06 addons\signs_f.pbo - 123419
21:04:06 addons\soft_f.pbo - 124040
21:04:06 addons\soft_f_beta.pbo - 124034
21:04:06 addons\soft_f_bootcamp.pbo - 123582
21:04:06 addons\soft_f_epc.pbo - 124034
21:04:06 addons\soft_f_gamma.pbo - 124032
21:04:06 addons\sounds_f.pbo - 123459
21:04:06 addons\sounds_f_arsenal.pbo - 119477
21:04:06 addons\sounds_f_bootcamp.pbo - 119477
21:04:06 addons\sounds_f_characters.pbo - 121082
21:04:06 addons\sounds_f_environment.pbo - 120046
21:04:06 addons\sounds_f_epb.pbo - 119864
21:04:06 addons\sounds_f_epc.pbo - 119477
21:04:06 addons\sounds_f_exp_a.pbo - 119477
21:04:06 addons\sounds_f_sfx.pbo - 119477
21:04:06 addons\sounds_f_vehicles.pbo - 123211
21:04:06 addons\static_f.pbo - 122642
21:04:06 addons\static_f_beta.pbo - 122642
21:04:06 addons\static_f_gamma.pbo - 122615
21:04:06 addons\structures_f.pbo - 124041
21:04:06 addons\structures_f_bootcamp.pbo - 123488
21:04:06 addons\structures_f_data.pbo - 121694
21:04:06 addons\structures_f_epa.pbo - 123407
21:04:06 addons\structures_f_epb.pbo - 123407
21:04:06 addons\structures_f_epc.pbo - 123407
21:04:06 addons\structures_f_exp_a.pbo - 123423
21:04:06 addons\structures_f_households.pbo - 122287
21:04:06 addons\structures_f_ind.pbo - 123419
21:04:06 addons\structures_f_mil.pbo - 123655
21:04:06 addons\structures_f_wrecks.pbo - 123419
21:04:06 addons\uifonts_f.pbo - 119478
21:04:06 addons\uifonts_f_data.pbo - 119478
21:04:06 addons\ui_f.pbo - 124053
21:04:06 addons\ui_f_bootcamp.pbo - 119478
21:04:06 addons\ui_f_data.pbo - 124053
21:04:06 addons\ui_f_exp_a.pbo - 119478
21:04:06 addons\weapons_f.pbo - 123870
21:04:06 addons\weapons_f_beta.pbo - 123870
21:04:06 addons\weapons_f_bootcamp.pbo - 119478
21:04:06 addons\weapons_f_epa.pbo - 123022
21:04:06 addons\weapons_f_epb.pbo - 122682
21:04:06 addons\weapons_f_epc.pbo - 123212
21:04:06 addons\weapons_f_gamma.pbo - 120217
21:04:06 
21:04:06 =======================
21:04:06 
21:04:06 ============================================================================================= List of mods ===============================================================================================
21:04:06 modsReadOnly = true
21:04:06 safeModsActivated = false
21:04:06 customMods = true
21:04:06 hash = 'AED55BF5600F47C633D08D56A151393708C18309'
21:04:06 hashShort = 'e0deeb80'
21:04:06                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath
21:04:06 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
21:04:06                                          Exile Mod |               @Exile |      false |             GAME DIR | 4889db0a63d731985e5387b33e6e245812442446 |   16019b2 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile
21:04:06                          CUP Terrains - Core 1.4.2 | @CUP Terrains - Core |      false |             GAME DIR | 3e43cf6f60835dfe6d8e450bcd49eab579e096eb |   9e41eb9 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core
21:04:06                                  Enhanced Movement |   @Enhanced Movement |      false |             GAME DIR | b03ca2f171c2c7826aa2f6f35cb81bab27664ea2 |  47cf7417 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement
21:04:06                                  Extended Base Mod |   @Extended_Base_Mod |      false |             GAME DIR | 42313702aaf6848e1149348033c80f155d6ebfe6 |  d57a5f73 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Base_Mod
21:04:06                              @Extended_Items_Exile | @Extended_Items_Exile |      false |             GAME DIR | aeb1472b5bcccf183a122f0d5305160ec47cfcab |  10807594 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile
21:04:06                                          NIArsenal |   @NIArms All in One |      false |             GAME DIR | 022784945a87260f3ee2f2e7fee19f12e8dceb8f |  68d7502e | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One
21:04:06                   TRYK's Multi-Play Unifrom's pack | @TRYK [TRYK's Multi-play Uniforms] |      false |             GAME DIR | aba46385af3be7b2cb5b2b50bbf92ba1438672c6 |   2118b09 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]
21:04:06        RHS: Armed Forces of the Russian Federation |             @RHSAFRF |      false |             GAME DIR | d9933e91cdbe33a886209bc91344408701a44306 |  59ac2c65 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF
21:04:06                                    SAD Minigun Fix | @Temp fix for exile miniguns |      false |             GAME DIR | d6e3ea71ea85fc76ead0494af3e44d5fa9777988 |  96975fc4 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Temp fix for exile miniguns
21:04:06                          RHS: United States Forces |             @RHSUSAF |      false |             GAME DIR | ee2f45071a28b77147e0298d2a44d9edaff8c6e1 |  31106ae3 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF
21:04:06                                   Fox SurvivalCars |    @Fox_SurvivalCars |      false |             GAME DIR | ce69ebd6bdc6af9250bae8a20edc356daf1cffd9 |  b37f41e5 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars
21:04:06                                    Chernarus Redux |     @Chernarus Redux |      false |             GAME DIR | 651893a4833bf13011e91a205fad1d141a16699b |  30d2c122 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux
21:04:06                            Ryan's Zombies & Demons |  @Zombies and Demons |      false |             GAME DIR | a8e40ba92bbdc0eed3beaad1536a841396a2083d |  62057cac | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Zombies and Demons
21:04:06                                          DS Houses |           @DS Houses |      false |             GAME DIR | d3cd43652f8b5fe347fdf7011e805b6237b98753 |  6a77c533 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@DS Houses
21:04:06                         Community Base Addons v3.5 |              @CBA_A3 |      false |             GAME DIR | a6957c17163522f3055b61fa72208a1e95d0c8be |  b54b08cd | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3
21:04:06                                Enhanced Soundscape | @Enhanced Soundscape |      false |             GAME DIR | d546d6c49fd2c3411567850e7fab28c698e01ae0 |  7ad6b2cb | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape
21:04:07                                Arma 3 DLC Bundle 2 |           dlcbundle2 |       true |            NOT FOUND |                                          |           | 
21:04:07                                Arma 3 DLC Bundle 1 |            dlcbundle |       true |            NOT FOUND |                                          |           | 
21:04:07                                     Arma 3 Tac-Ops |               tacops |       true |             GAME DIR | f1dc09577c3e9808b7aa2c87d830a2b26a6b5fee |  fa26d009 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops
21:04:07                                 Arma 3 Laws of War |               orange |       true |             GAME DIR | 4218684688ce66df818f107e2f95c59a26323121 |  b3b9582b | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange
21:04:07                                      Arma 3 Malden |                 argo |       true |             GAME DIR | 05003900123009df799f674dab222647cc0cc676 |  36610ff1 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo
21:04:07                                        Arma 3 Jets |                 jets |       true |             GAME DIR | 8d1003272f4550977c09f9c3de192339a29268ad |  5d2e6b70 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets
21:04:07                                        Arma 3 Apex |            expansion |       true |             GAME DIR | ed1b8b914be28b134d041da7deebf7b5b68e6ed3 |  ed5a9be7 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion
21:04:07                                    Arma 3 Marksmen |                 mark |       true |             GAME DIR | e405dfd48cf0dc78bc48e630f5065676723be5df |  d0f859df | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark
21:04:07                                 Arma 3 Helicopters |                 heli |       true |             GAME DIR | abbb58afcd71da8d6f39462585ce554c2bde319e |  3b66e8c1 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli
21:04:07                                       Arma 3 Karts |                 kart |       true |             GAME DIR | 0a38a8eedccec3bd371c52470ecfbc300bce7e26 |  5248a2ba | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart
21:04:07                                        Arma 3 Zeus |              curator |       true |             GAME DIR | e9e394b64efe10fcde232d90ae425eb377c62b16 |  42741b1b | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator
21:04:07                                             Arma 3 |                   A3 |       true |            NOT FOUND |                                          |           | 
21:04:07                                       @ExileServer |         @ExileServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer
21:04:07                                    @infiSTAR_Exile |      @infiSTAR_Exile |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile
21:04:07 ==========================================================================================================================================================================================================
21:04:07 InitSound ...
21:04:07 InitSound - complete
21:04:07 PhysX3 SDK Init started ...
21:04:07 PhysX3 SDK Init ended.
21:04:10 [0,25.413,0,"XEH: PreStart started."]
21:04:10 [0,25.601,0,"XEH: PreStart finished."]
21:04:10 [XEH]: Car does not support Extended Event Handlers! Addon: @CUP Terrains - Core
21:04:10 [XEH]: Tank does not support Extended Event Handlers! Addon: @CUP Terrains - Core
21:04:10 [XEH]: Air does not support Extended Event Handlers! Addon: @Enhanced Movement
21:04:10 [XEH]: GNT_C185wreck does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: GNT_C185 does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: GNT_C185F does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Ryanzombieslogiceasy does not support Extended Event Handlers! Addon: @Zombies and Demons
21:04:10 [XEH]: Ryanzombieslogicspawnfast1opfor does not support Extended Event Handlers! Addon: @Zombies and Demons
21:04:10 [XEH]: rhs_2P3_1 does not support Extended Event Handlers! Addon: @RHSAFRF
21:04:10 [XEH]: rhs_mig29s_base does not support Extended Event Handlers! Addon: @RHSAFRF
21:04:10 [XEH]: Exile_Cutscene_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Guard_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_PopTabs does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Trader_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Effect_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Effect_Flies does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Animal_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Target_Swivel_01_ground_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: TargetP_Inf_Acc2_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: TargetBootcampHuman_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: MetalBarrel_burning_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: B_Patrol_Respawn_tent_F does not support Extended Event Handlers! Addon: argo
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
a3_characters_f
21:04:12 Loading movesType CfgGesturesMale
21:04:12 Creating action map cache
21:04:12 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 MovesType CfgGesturesMale load time 592 ms
21:04:13 Loading movesType CfgMovesMaleSdr
21:04:13 Reading cached action map data
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:14 Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\sittingchair\hubsittingchaira_idle1.rtm differs (looped now 1)! MoveName: exile_roulettesitting01
21:04:14 MovesType CfgMovesMaleSdr load time 1679 ms
21:04:15 VoteThreshold must be in 0..1 range. Defaulting to 0.5
21:04:15 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
21:04:15 Steam AppId from steam_appid.txt: 107410
21:04:15 Unsupported language English in stringtable
21:04:15 Unsupported language English in stringtable
21:04:15 Starting mission:
21:04:15  Mission file: Exile (__cur_mp)
21:04:15  Mission world: ChernarusRedux
21:04:15  Mission directory: mpmissions\__cur_mp.ChernarusRedux\
21:04:21 No more slot to add connection at 036072 (3642.7,8100.2)
21:04:21 No more slot to add connection at 046127 (4674.8,2605.5)
21:04:21 No more slot to add connection at 053067 (5363.6,8571.2)
21:04:21 No more slot to add connection at 130045 (13086.6,10791.6)
21:04:21 Land_Cargo_House_V2_F: door_1_rot - unknown animation source door_1_sound_source
21:04:21 Land_Cargo_House_V2_F: door_1_locked_rot - unknown animation source door_1_locked_source
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend4) in ds_houses\derevnya\a2_housev_1l2\d_housev_1l2.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionbegin7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionbegin7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend3) in ds_houses\derevnya\a2_housev_3i2\d_housev_3i2.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend3) in ds_houses\derevnya\a2_housev_3i2\d_housev_3i2.p3d
21:04:23 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:23 Bad simulation fire, type Land_FirePlace_F (class=house), a3\structures_f\civ\camping\fireplace_f.p3d
21:04:24 Bad simulation fire, type Land_FirePlace_F (class=house), a3\structures_f\civ\camping\fireplace_f.p3d
21:04:24 Bad simulation fire, type Land_FirePlace_F (class=house), a3\structures_f\civ\camping\fireplace_f.p3d
21:04:24 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:24 Sewer_Dead_End_Bones: Invalid parent bone 'camo2' for 'camo1'
21:04:24 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:25 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [BIS_fnc_preload] ----- Initializing scripts in Exile -----"
21:04:25 No speaker given for 
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [recompile] recompile BIS_fnc_missionTasksLocal"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [recompile] recompile BIS_fnc_missionConversationsLocal"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [recompile] recompile BIS_fnc_missionFlow"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_feedbackMain (0 ms)"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_missionHandlers (0 ms)"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_storeParamsValues (0 ms)"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ""DeltaTime computation started"""
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_keyframeAnimation_deltaTime (0 ms)"
21:04:25 CallExtension loaded: updatearmalog (C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile\updatearmalog_x64.dll) [1.0.0.0] [1.0.0.0]

21:04:26 "<infiSTAR.de> updatearmalog callExtension: [30.01.2018][21:04:26] Downloaded and installed new armalog_x64.dll"
21:04:26 CallExtension loaded: armalog (C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile\armalog_x64.dll) [1.0.0.0] [1.0.0.0]

21:04:35 Warning: 8943 ms spent in callExtension calling name: "armalog", function: "14787f0f07d55&l=f38fffcdc388d836e6729df9ca7ced68&sn=[91,84,73,82,78,65,93,32,69,88,73,76,69,45,68,65,89,90,32,124,32,67,72,69,82,78,65,82,85,83,45,82,69,68,85,88,32,124,32,83,85,82,86,73,86,65,76,32,124,32,66,76,85,69,80,82,73,78,84,32,124,32,77,73,83,83,73,79,78,32,67,85,83,84,79,77,32,124,32,84,82,65,68,69,82,32,67,85,83,84,79,77,32,32,124,32,66,65,83,69,83,80,65,87,78,45,80,65,73,78,84,45,78,79,32,71,82,73,78,68,47,84,72,69,82,77,65,76,32,124,32,54,48,70,80,83]"
21:04:35 "<infiSTAR.de> infiSTAR dll loaded successfully"
21:04:35 "<infiSTAR.de> [TIRNA] EXILE-DAYZ | CHERNARUS-REDUX | SURVIVAL | BLUEPRINT | MISSION CUSTOM | TRADER CUSTOM  | BASESPAWN-PAINT-NO GRIND/THERMAL | 60FPS"
21:04:35 "<infiSTAR.de> License accepted!"
21:04:35 "<infiSTAR.de> Loading infiSTAR code.."
21:04:35 CallExtension loaded: extDB3 (C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\extDB3_x64.dll) [1.0.3.1] [1.0.3.1]

21:04:35 "<infiSTAR.de> 0 - checking for EXILE_SERVER.."
21:04:35 "<infiSTAR.de> 0 - EXILE_SERVER has been found."
21:04:35 "<infiSTAR.de> 0 - checking for Cfg_infiSTAR_settings.."
21:04:35 "<infiSTAR.de> 0 - Cfg_infiSTAR_settings has been found."
21:04:35 "<infiSTAR.de> 0 - TESTING IF serverCommandPassword IS SET PROPERLY"
21:04:35 "<infiSTAR.de> 0 - serverCommandPassword IS FINE"
21:04:35 "<infiSTAR.de> 0 - STARTUP - including AdminTools"
21:04:35 "<infiSTAR.de> 0 - STARTUP - AdminTools included!"
21:04:35 "<infiSTAR.de> 0 - STARTUP - including AntiHack"
21:04:35 "<infiSTAR.de> 0 - VERSION: 18-01-2018 14-36-36 - v90"
21:04:35 "<infiSTAR.de> 0 - adding valid admin uid 76561198184549166"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid ..."
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID1"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid ..."
21:04:35 "<infiSTAR.de> 0 - adding valid admin uid 76561197976459949"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid ..."
21:04:35 "<infiSTAR.de> _fnc_RandomGen: {
private '_gen';
_fnc_actualGen = {
_start	= ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_main	= ['a','f','3','8','f','f','f','c','d','c','3','8','8','d','8','3','6','e','6','7','2','9','d','f','9','c','a','7','c','e','d','6','8'];
_filler	= ['1','2','3','4','5','6','7','8','9','0','_','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'];
_gen = selectRandom _start;
_randmax = {((round(random _randminval)) + (round(random _randmaxval))) max _randminval};
for '_i' from 0 to (call _randmax)do
{
_gen = _gen + (selectRandom _filler) + (selectRandom _main);
};
_gen
};
for '_i' from 0 to 10000 do
{
_gen = call _fnc_actualGen;
_index = _allRandomGenVars pushBackUnique _gen;
if(_index > -1)exitWith{_gen};
};
_gen
}"
21:04:35 "<infiSTAR.de> 0 - loading AntiHack.."
21:04:35 "<infiSTAR.de> 0 - Thread MAIN: none-threaded code compiled and/or sent!"
21:04:35 "<infiSTAR.de> 0 - VoteTimeServer compiled"
21:04:35 "<infiSTAR.de> 0 - Thread BEFORE MAIN: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - Thread BEFORE MAIN: added !"
21:04:35 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: added !"
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: added !"
21:04:35 "<infiSTAR.de> 0 - fnc_AdminReqReal: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - fnc_AdminReqReal: added !"
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: added !"
21:04:35 "<infiSTAR.de> 0 - adminStartupCode: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - adminStartupCode: added !"
21:04:35 "<infiSTAR.de> 0 - Thread #1: Preparing Server Loop #1.."
21:04:35 "<infiSTAR.de> 0 - Thread #1: added !"
21:04:35 "<infiSTAR.de> 0 - compiling AntiHack"
21:04:35 "<infiSTAR.de> 0 - Thread BEFORE MAIN: still compiling..."
21:04:35 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: still compiling..."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: still compiling..."
21:04:35 "<infiSTAR.de> 0 - fnc_AdminReqReal: still compiling..."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: still compiling..."
21:04:35 "<infiSTAR.de> 0 - adminStartupCode: still compiling..."
21:04:35 "<infiSTAR.de> 0 - Thread MAIN: compiling adminStartupCode"
21:04:35 "<infiSTAR.de> 0 - AntiHack loaded!"
21:04:35 "<infiSTAR.de> 0 - STARTUP - AntiHack included!"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] a3_infiSTAR_Exile_fnc_preInit (9402 ms)"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "extDB3 Loaded"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] extDB3_fnc_preInit (0 ms)"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_getServerVariable (0 ms)"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] RyanZM_fnc_rzfunctionpreinit (3.9978 ms)"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] RHS_fnc_init (0 ms)"
21:04:35 [9032,50.158,0,"XEH: PreInit started. v3.5.0.171204"]
21:04:35 Wrong init state
21:04:35 [9032,50.678,0,"XEH: PreInit finished."]
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] CBA_fnc_preInit (520 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ExileClient_fnc_preInit (326 ms)"
21:04:36 "Starting Exile Custom Difficulty Overrides"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] exile_custom_difficulty_fnc_preInit (0 ms)"
21:04:36 "ExileServer - Server is loading..."
21:04:36 Client: Nonnetwork object 8a862400.
21:04:36 "ExileServer - Exile Trader/Loottable Config Warning!"
21:04:36 "ExileServer - You have weapons in your loot tables that spawn with attachments!"
21:04:36 "ExileServer - This will allow duping and money farming!"
21:04:36 "ExileServer - To solve this, please remove the following weapons from your loot tables and trader config OR replace them with their non-attachment equivalent:"
21:04:36 "ExileServer - [""rhs_weap_pb_6p9"",""rhs_weap_ak74m_fullplum_npz"",""rhs_weap_ak103_1_npz"",""rhs_weap_ak103"",""rhs_weap_ak105"",""rhs_weap_ak74n"",""rhs_weap_ak74n_gp25"",""rhs_weap_ak74m"",""rhs_weap_ak74m_npz"",""rhs_weap_ak74m_camo"",""rhs_weap_ak74m_camo_npz"",""rhs_weap_ak74m_2mag"",""rhs_weap_ak74m_2mag_camo"",""rhs_weap_aks74n"",""rhs_weap_aks74n_gp25"",""rhs_weap_aks74un"",""rhs_weap_aks74un_folded"",""rhs_weap_akm"",""rhs_weap_akm_gp25"",""rhs_weap_akm_zenitco01_b33"",""rhs_weap_akmn"",""rhs_weap_ak104_zenitco01_b33_grip1"",""rhs_weap_ak74m_plummag"",""rhs_weap_ak103_zenitco01""]"
21:04:36 "ExileServer - Installed extDB3 version: 1.031"
21:04:36 "ExileServer - Connected to database!"
21:04:36 "ExileServer - Database protocol initialized!"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ExileServer_fnc_preInit (156.002 ms)"
21:04:36 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loading Configs at 0"
21:04:36 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loaded all Configs at 0"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] exilez_mod_fnc_preInit (12.001 ms)"
21:04:36 "MarXet: [PreInit] : MarXet has been compiled"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] MarXet_Server_fnc_preInit (6.99997 ms)"
21:04:36 "DMS :: Initializing Static Mission Variables"
21:04:36 "DMS :: Initializing Dynamic Mission Variables"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] DMS_fnc_DMS_preInit (33.9966 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ClaimVehicles_Server_fnc_preInit (1.00327 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] HLC_fnc_barrel_init (0 ms)"
21:04:36 Connected to Steam servers
21:04:36 "<infiSTAR.de> 0 - Thread #1: Server Loop #1 starting"
21:04:36 "<infiSTAR.de> 0 - Thread #1: Server Loop #1 running now!"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [script] initServer.sqf"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_missionFlow (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_initParams (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_initRespawn (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_keyframeAnimation_init (3.9978 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] a3_infiSTAR_Exile_fnc_postInit (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] CUP_fnc_emissiveLights (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_reviveInit (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BABE_CORE_fnc_init (0 ms)"
21:04:36 [9032,51.27,0,"XEH: PostInit started. MISSIONINIT: missionName=Exile, missionVersion=53, worldName=ChernarusRedux, isMultiplayer=true, isServer=true, isDedicated=true, CBA_isHeadlessClient=false, hasInterface=false, didJIP=false"]
21:04:36 [9032,51.297,0,"CBA_VERSIONING: cba=3.5.0.171204, "]
21:04:36 Attempt to override final function - l_es_es_sys_fnc_fired
21:04:36 [9032,51.305,0,"XEH: PostInit finished."]
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] CBA_fnc_postInit (34.9998 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExileClient_fnc_postInit (0 ms)"
21:04:36 "Started Exile Custom Difficulty Overrides"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] exile_custom_difficulty_fnc_postInit (0 ms)"
21:04:36 "ExileServer - Job with handle 10000 added."
21:04:36 "ExileServer - Job with handle 10001 added."
21:04:36 "ExileServer - Job with handle 10002 added."
21:04:36 Successfull attempt to execute serverCommand '#exec users' by server.
21:04:36 Successfull attempt to execute serverCommand '#exec users' by server.
21:04:36 Successfull attempt to execute serverCommand '#lock' by server.
21:04:36 c:\w\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
21:04:36  Mission id: eab70d0a262007c36fc3de545976ce603e747956
21:04:36 Weather was forced to change
21:04:36 "ExileServer - Job with handle 10003 added."
21:04:36 "ExileServer - Job with handle 10004 added."
21:04:36 "ExileServer - Initializing game world..."
21:04:36 "ExileServer - Loading families from database..."
21:04:36 "ExileServer - Done loading families!"
21:04:36 "ExileServer - Loading territories from database..."
21:04:36 "ExileServer - Done loading territories!"
21:04:36 "ExileServer - Loading constructions from database..."
21:04:36 Attempt to override final function - bis_fnc_storeparamsvalues_data
21:04:36 "ExileServer - Done loading constructions!"
21:04:36 "ExileServer - Loading vehicles from database..."
21:04:36 UH1H_Skeleton: Invalid parent bone 'damagehide' for 'glass1'
21:04:36 UH1H_Skeleton: Invalid parent bone 'damagehide' for 'glass4'
21:04:36 UH1H_Skeleton: Invalid parent bone 'damagehide' for 'glass5'
21:04:36 Warning: Convex component representing Skids not found
21:04:36 Array mat in bin\config.bin/CfgVehicles/UH1HL_base/Damage/ not multiply of 3
21:04:36 Exile_Chopper_Huey_Green: Glass7_destruct - unknown animation source hitglass7
21:04:36 Error: bin\config.bin/CfgVehicles/UH1H_Clo/Turrets/MainTurret/: Turret body NewTurret not found while initializing the model exile_psycho_uh1h\uh1h_closed.p3d
21:04:36 Error: bin\config.bin/CfgVehicles/UH1H_Clo/Turrets/MainTurret/: Turret gun mainGun not found while initializing the model exile_psycho_uh1h\uh1h_closed.p3d
21:04:36 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Green'
21:04:36 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Green'
21:04:36 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Green'
21:04:36 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Green'
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:37 Fox_CobraR_Police: wheel_1_1_destruct - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_destruct - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_1_3_destruct - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_destruct - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_1_destruct - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_destruct - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: wheel_2_3_destruct - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_destruct - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: wheel_1_1_destruct_unhide - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_destruct_unhide - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_1_3_destruct_unhide - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_destruct_unhide - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_1_destruct_unhide - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_destruct_unhide - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: wheel_2_3_destruct_unhide - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_destruct_unhide - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: wheel_1_3_Damage - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_Damage - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_3_Damage - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_Damage - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: wheel_1_3_Damper_Damage_BackAnim - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_Damper_Damage_BackAnim - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_3_Damper_Damage_BackAnim - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_Damper_Damage_BackAnim - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: Glass1_destruct - unknown animation source hitglass1
21:04:37 Fox_CobraR_Police: Glass2_destruct - unknown animation source hitglass2
21:04:37 Fox_CobraR_Police: Glass3_destruct - unknown animation source hitglass3
21:04:37 Fox_CobraR_Police: Glass4_destruct - unknown animation source hitglass4
21:04:37 Fox_CobraR_Police: wheel_1_1_Damage - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_Damage - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_2_1_Damage - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_Damage - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: wheel_1_1_Damper_Damage_BackAnim - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_Damper_Damage_BackAnim - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_2_1_Damper_Damage_BackAnim - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_Damper_Damage_BackAnim - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: Beacon1 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: BeaconsStart - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon2 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon3 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon4 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon5 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon6 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon7 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon8 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Glass5_destruct - unknown animation source hitglass5
21:04:37 Fox_CobraR_Police: BeaconUnhide - unknown animation source clamp
21:04:37 Fox_CobraR_Police: IdleHide - unknown animation source clamp
21:04:37 Fox_Pickup_Apocalypse: RH - unknown animation source rh
21:04:37 Fox_Pickup_Apocalypse: BeaconsStart - unknown animation source beacons
21:04:37 Bad cargo proxy index
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_destruct - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_destruct - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_destruct - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_destruct - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_destruct - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_destruct - unknown animation source hitrf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_destruct_unhide - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_destruct_unhide - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_destruct_unhide - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_destruct_unhide - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_destruct_unhide - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_destruct_unhide - unknown animation source hitrf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_Damage - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_Damage - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_Damage - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_Damage - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_Damage - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_Damage - unknown animation source hitrf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_Damper_Damage_BackAnim - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_Damper_Damage_BackAnim - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_Damper_Damage_BackAnim - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_Damper_Damage_BackAnim - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_Damper_Damage_BackAnim - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_Damper_Damage_BackAnim - unknown animation source hitrf2wheel
21:04:37 In Vehicle: exile_psycho_v3s\v3s_transport.p3d missing cargo 0 get in direction point
21:04:37 In Vehicle: exile_psycho_v3s\v3s_transport.p3d missing cargo 1 get in direction point
21:04:37 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_V3S_Covered'
21:04:37 Duplicate HitPoint name 'HitGun' in 'Exile_Car_V3S_Covered'
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:37 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:37 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Covered_Yellow'
21:04:37 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Covered_Yellow'
21:04:37 Warning Message: Embedded skeleton Weapon in 'exile_assets\model\exile_melee_axe.p3d' has different [ bones count ] in different p3d files. Skeleton/model 'a3\weapons_f\data\zaslehsdl_proxy.p3d' will probably not work correctly.
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Fox_Tahoe_Apocalypse: RH - unknown animation source rh
21:04:37 Fox_Tahoe_Apocalypse: BeaconsStart - unknown animation source beacons
21:04:37 Bad cargo proxy index
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 "ExileServer - Done loading vehicles!"
21:04:37 "ExileServer - Loading containers from database..."
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 "ExileServer - Done loading containers!"
21:04:38 "ExileServer - Creating spawn zone vehicles..."
21:04:38 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire
21:04:38 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 ca\buildings\tents\fortress_02.p3d: house, config class missing
21:04:38 ca\buildings\misc\gate.p3d: house, config class missing
21:04:38 ca\misc_acr\scaffoldingsmall\misc_crossing30st.p3d: house, config class missing
21:04:38 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:38 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 Land_fishing_boat: fuel_1 - unknown animation source fuel
21:04:39 Land_fishing_boat: rpm_1 - unknown animation source speed
21:04:39 Land_fishing_boat: kompas_1 - unknown animation source direction
21:04:39 Land_fishing_boat: volant_1 - unknown animation source drivingwheel
21:04:39 Land_fishing_boat: kormidlo_1 - unknown animation source drivingwheel
21:04:39 Land_fishing_boat: vrtule_1 - unknown animation source rotor
21:04:39 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:39 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:39 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:39 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:39 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:39 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation thing, type Land_Barrel_water (class=house), ca\structures\misc\armory\barels\barrel_water.p3d
21:04:40 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:40 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:40 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Strange convex component25 in ca\structures\barn_w\barn_w_02.p3d:geometryView
21:04:41 Strange convex component26 in ca\structures\barn_w\barn_w_02.p3d:geometryView
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 "ExileServer - Spawning Dynamic Vehicles. GridSize: 5000 Vehs/Grid: 3"
21:04:42 Fox_BUS: RH - unknown animation source rh
21:04:42 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Open_Military'
21:04:42 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Open_Military'
21:04:42 Fox_Pickup_6S: RH - unknown animation source rh
21:04:42 Fox_Pickup_6S: BeaconsStart - unknown animation source beacons
21:04:42 Bad cargo proxy index
21:04:42 Fox_Charger_Apocalypse: RH - unknown animation source rh
21:04:42 Fox_Charger_Apocalypse: BeaconsStart - unknown animation source beacons
21:04:42 Array mat in bin\config.bin/CfgVehicles/V3S_base/Damage/ not multiply of 3
21:04:42 Exile_Car_V3S_Open: wheel_1_2_destruct - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_destruct - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_destruct - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_destruct - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_destruct - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_destruct - unknown animation source hitrf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_1_2_destruct_unhide - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_destruct_unhide - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_destruct_unhide - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_destruct_unhide - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_destruct_unhide - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_destruct_unhide - unknown animation source hitrf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_1_2_Damage - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_Damage - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_Damage - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_Damage - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_Damage - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_Damage - unknown animation source hitrf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_1_2_Damper_Damage_BackAnim - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_Damper_Damage_BackAnim - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_Damper_Damage_BackAnim - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_Damper_Damage_BackAnim - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_Damper_Damage_BackAnim - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_Damper_Damage_BackAnim - unknown animation source hitrf2wheel
21:04:42 In Vehicle: exile_psycho_v3s\v3s.p3d missing cargo 0 get in direction point
21:04:42 In Vehicle: exile_psycho_v3s\v3s.p3d missing cargo 1 get in direction point
21:04:42 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_V3S_Open'
21:04:42 Duplicate HitPoint name 'HitGun' in 'Exile_Car_V3S_Open'
21:04:42 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Covered_Military'
21:04:42 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Covered_Military'
21:04:42 Cannot create entity with abstract type Exile_Car_Van_Abstract (scope = private?)
21:04:42 Cannot create non-ai vehicle Exile_Car_Van_Abstract,
21:04:42 Cannot create entity with abstract type Exile_Car_HEMMT_Abstract (scope = private?)
21:04:42 Cannot create non-ai vehicle Exile_Car_HEMMT_Abstract,
21:04:42 "ExileServer - Dynamic vehicles spawned. Count : 27"
21:04:42 "ExileServer - Game world initialized! Let the fun begin!"
21:04:42 "ExileServer - There are no Russian Roulette chairs defined. Russian Roulette will not work!"
21:04:42 "ExileServer - Server is up and running! Version: 1.0.3"
21:04:42 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExileServer_fnc_postInit (6227 ms)"
21:04:42 "ExileServer - Job with handle 10005 added."
21:04:42 "ExileZ Mod: Added Zombie Monitor to ExileServer Thread"
21:04:42 "ExileServer - Job with handle 10006 added."
21:04:42 "ExileZ Mod: Added Dead Zombie Monitor to ExileServer Thread"
21:04:42 "ExileServer - Job with handle 10007 added."
21:04:42 "ExileZ Mod: Added Harassing Zombies Loop to ExileServer Thread"
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Bad simulation thing, type Land_Barrel_water (class=house), ca\structures\misc\armory\barels\barrel_water.p3d
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Bad simulation thing, type Land_Barrel_empty (class=house), ca\structures\misc\armory\barels\barrel_empty.p3d
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 ca\buildings\misc\gate.p3d: house, config class missing
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\buildings\misc\gate.p3d: house, config class missing
21:04:44 ca\buildings\tents\pristresek.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\misc3\tent_west.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:44 "ExileServer - Main thread started"
21:04:44 Successfull attempt to execute serverCommand '#unlock' by server.
21:04:45 "ExileZ Mod: Version v1.5.6 - 13/10/17 Started at (3.562)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] exilez_mod_fnc_postInit (3028 ms)"
21:04:45 "MarXet: [InventoryInitalize] : Loading MarXet Inventory..."
21:04:45 "ExileServer - Database Error: Error No Custom Call Not Found"
21:04:45 "DEVELOPPEMENT/log: ERROR: [BIS_fnc_sortBy] Error: type STRING, expected ARRAY, on index 0, in [""Error No Custom Call Not Found"",[],{(_x select 2) select 0},""DESCEND"",{}]"
21:04:45 "MarXet: [InventoryInitalize] : Loaded MarXet Inventory! MarXetInventory is public!"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] MarXet_Server_fnc_postInit (1.00327 ms)"
21:04:45 "ExileServer - Job with handle 10008 added."
21:04:45 "DMS_DEBUG :: DMS post-init complete. productVersion: [""Arma 3"",""Arma3"",180,143869,""Stable"",true,""Windows"",""x64""] | infiSTAR version: 18-01-2018 14-36-36 - v90 |::|::| (DMS_Version: ""September 7, 2017"" | time: 3.562 | diag_tickTime: 60.563 | 4.59374 FPS)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] DMS_fnc_DMS_postInit (1.9989 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] yorkshire_fnc_YORKS_init (0 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] apps_fnc_postInit (0.999451 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ClaimVehicles_Server_fnc_postInit (0 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExAd_fnc_changeable (0 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExAd_fnc_postInitVG (3.00217 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExAd_fnc_postInitXM8 (2.99835 ms)"
21:04:45 "[OCCUPATION]:: Occupation V69 (21-07-2017) Giving the server time to start before starting [OCCUPATION] (3.584)"
21:04:45 "DMS :: Initializing FSM mission script"
21:04:46 "DEVELOPPEMENT/BIS_fnc_log: [BIS_fnc_preload] ----- Scripts initialized at 20093 ms -----"
21:04:55 "[OCCUPATION MOD]:: Occupation V69 (21-07-2017) Loading Config at 13.59"
21:04:55 "ExileServer - Job with handle 10009 added."
21:05:10 "ExileServer - Job with handle 10010 added."
21:05:10 "ExileServer - Job with handle 10011 added."
21:05:13 "[Display #24]"
21:05:18 BEServer: registering a new player #1145667246
21:05:20 BEServer: registering a new player #1407831940
21:50:09 "MarXet: [createNewListingRequest] : Player: Louis Mac just listed Exile_Magazine_10Rnd_127x99_m107 for 350... New listing Array: [""EO151418"",1,[""Exile_Magazine_10Rnd_127x99_m107""],""350"",""76561198055418232""]"
21:50:13 "MarXet: [createNewListingRequest] : Player: Louis Mac just listed Exile_Magazine_10Rnd_127x99_m107 for 350... New listing Array: [""XP376213"",1,[""Exile_Magazine_10Rnd_127x99_m107""],""350"",""76561198055418232""]"
21:50:27 "MarXet: [createNewListingRequest] : Player: Louis Mac just listed Exile_Magazine_45Rnd_545x39_RPK_Green for 125... New listing Array: [""xU293711"",1,[""Exile_Magazine_45Rnd_545x39_RPK_Green""],""125"",""76561198055418232""]"
21:51:47 "MarXet: [BuyNowRequest] : Player: 76561198184549166 bought player: 76561198055418232's Exile_Magazine_10Rnd_127x99_m107 for 350"
21:52:14 "MarXet: [createNewListingRequest] : Player: Alésio Bélentofe just listed rhs_weap_svdp_npz for 1200... New listing Array: [""FY482578"",1,[""rhs_weap_svdp_npz""],""1200"",""76561198184549166""]"
21:53:39 "MarXet: [createNewListingRequest] : Player: Alésio Bélentofe just listed H_Ghillie_Suit2 for 5000... New listing Array: [""pt298924"",1,[""H_Ghillie_Suit2""],""5000"",""76561198184549166""]"

and EXILE.INI

[Default]

Version = 1
Strip Chars = "\/\|;{}<>\'"
Strip Chars Mode = 0
Input SQF Parser = false
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Account related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[isKnownAccount]
SQL1_1 = SELECT CASE WHEN EXISTS(SELECT uid FROM account WHERE uid = ?) THEN 'true' ELSE 'false' END

SQL1_INPUTS = 1
OUTPUT = 1

[createAccount]
SQL1_1 = INSERT INTO account SET uid = ?, name = ?

SQL1_INPUTS = 1,2

[startAccountSession]
SQL1_1 = UPDATE account SET name = ?, last_connect_at = NOW(), total_connections = total_connections + 1 WHERE uid = ?

SQL1_INPUTS = 2,1

[endAccountSession]
SQL1_1 = UPDATE account SET last_disconnect_at = NOW() WHERE uid = ?

SQL1_INPUTS = 1

[getAccountStats]
SQL1_1 = SELECT score, kills, deaths, clan_id, locker FROM account WHERE uid = ?

SQL1_INPUTS = 1
OUTPUT = 1,2,3,4,5

[addAccountKill]
SQL1_1 = UPDATE account SET kills = kills + 1 WHERE uid = ?

SQL1_INPUTS = 1

[addAccountDeath]
SQL1_1 = UPDATE account SET deaths = deaths + 1 WHERE uid = ?

SQL1_INPUTS = 1

[getAccountScore]
SQL1_1 = SELECT score FROM account WHERE uid = ?

SQL1_INPUTS = 1
OUTPUT = 1

[setAccountScore]
SQL1_1 = UPDATE account SET score = ? WHERE uid = ?

SQL1_INPUTS = 1,2

[modifyAccountScore]
SQL1_1 = UPDATE account SET score = score + ? WHERE uid = ?

SQL1_INPUTS = 1,2

[updateLocker]
SQL1_1 = UPDATE account SET locker = ? WHERE uid = ?

SQL1_INPUTS = 1,2

[getLocker]
SQL1_1 = SELECT locker FROM account WHERE uid = ?

SQL1_INPUTS = 1
OUTPUT = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Player related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;  MarXet by whatshisface?
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[createNewListing]
SQL1_1 = INSERT INTO marxet SET listingID = ?, itemAvailable = ?, itemArray = ?, price = ?, sellerUID = ?
SQL1_INPUTS = 1,2,3,4,5

[getListings]
SQL1_1 = SELECT listingID, itemAvailable, itemArray, price, sellerUID FROM marxet
OUTPUT = 1-STRING,2,3,4-STRING,5-STRING

[updateListing]
SQL1_1 = UPDATE marxet SET itemAvailable = 0 WHERE listingID = ?
SQL1_INPUTS = 1

[deleteListing]
SQL1_1 = DELETE FROM marxet WHERE listingID = ?
SQL1_INPUTS = 1

[restrictOldListings]
SQL1_1 = UPDATE marxet SET sellerUID = 0 WHERE created_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND sellerUID != 0
SQL1_INPUTS = 1

[deleteOldListings]
SQL1_1 = DELETE FROM marxet WHERE created_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND sellerUID = 0
SQL1_INPUTS = 1

[getListingsCount]
SQL1_1 = SELECT COUNT(listingID) FROM marxet WHERE sellerUID = ?
SQL1_INPUTS = 1
OUTPUT = 1

[hasAlivePlayer]
SQL1_1 = SELECT CASE WHEN EXISTS(SELECT account_uid FROM player WHERE account_uid = ? AND damage < 1) THEN 'true' ELSE 'false' END

SQL1_INPUTS = 1
OUTPUT = 1

[createPlayer]
SQL1_1 = INSERT INTO player SET account_uid = ?, name = ?

SQL1_INPUTS = 1,2
Return InsertID = true

[insertPlayerHistory]
SQL1_1 = INSERT INTO player_history SET account_uid = ?, name = ?, position_x = ?, position_y = ?, position_z = ?

SQL1_INPUTS = 1,2,3,4,5

[deletePlayer]
SQL1_1 = DELETE FROM player WHERE id = ?

SQL1_INPUTS = 1

[loadPlayer]
SQL1_1 = SELECT p.id,
SQL1_2 = p.name,
SQL1_3 = p.account_uid,
SQL1_4 = p.damage,
SQL1_5 = p.hunger,
SQL1_6 = p.thirst,
SQL1_7 = p.alcohol,
SQL1_8 = p.oxygen_remaining,
SQL1_9 = p.bleeding_remaining,
SQL1_10 = p.hitpoints,
SQL1_11 = p.direction,
SQL1_12 = p.position_x,
SQL1_13 = p.position_y,
SQL1_14 = p.position_z,
SQL1_15 = p.assigned_items,
SQL1_16 = p.backpack,
SQL1_17 = p.backpack_items,
SQL1_18 = p.backpack_magazines,
SQL1_19 = p.backpack_weapons,
SQL1_20 = p.current_weapon,
SQL1_21 = p.goggles,
SQL1_22 = p.handgun_items,
SQL1_23 = p.handgun_weapon,
SQL1_24 = p.headgear,
SQL1_25 = p.binocular,
SQL1_26 = p.loaded_magazines,
SQL1_27 = p.primary_weapon,
SQL1_28 = p.primary_weapon_items,
SQL1_29 = p.secondary_weapon,
SQL1_30 = p.secondary_weapon_items,
SQL1_31 = p.uniform,
SQL1_32 = p.uniform_items,
SQL1_33 = p.uniform_magazines,
SQL1_34 = p.uniform_weapons,
SQL1_35 = p.vest,
SQL1_36 = p.vest_items,
SQL1_37 = p.vest_magazines,
SQL1_38 = p.vest_weapons,
SQL1_39 = p.money,
SQL1_40 = a.score,
SQL1_41 = a.kills,
SQL1_42 = a.deaths,
SQL1_43 = c.id,
SQL1_44 = c.name,
SQL1_45 = p.temperature,
SQL1_46 = p.wetness,
SQL1_47 = a.locker
SQL1_48 = FROM player p
SQL1_49 = INNER JOIN account a
SQL1_50 = ON a.uid = p.account_uid
SQL1_51 = LEFT JOIN clan c
SQL1_52 = ON c.id = a.clan_id
SQL1_53 = WHERE p.account_uid = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4,5,6,7,8,9,10,11,12,13,14,15,16-STRING,17,18,19,20-STRING,21-STRING,22,23-STRING,24-STRING,25-STRING,26,27-STRING,28,29-STRING,30,31-STRING,32,33,34,35-STRING,36,37,38,39,40,41,42,43,44-STRING,45,46,47

[updatePlayer]
SQL1_1 = UPDATE player SET
SQL1_2 = name = ?,
SQL1_3 = damage  = ?,
SQL1_4 = hunger = ?,
SQL1_5 = thirst = ?,
SQL1_6 = alcohol = ?,
SQL1_7 = oxygen_remaining  = ?,
SQL1_8 = bleeding_remaining = ?,
SQL1_9 = hitpoints = ?,
SQL1_10 = direction = ?,
SQL1_11 = position_x = ?,
SQL1_12 = position_y = ?,
SQL1_13 = position_z = ?,
SQL1_14 = assigned_items = ?,
SQL1_15 = backpack = ?,
SQL1_16 = backpack_items = ?,
SQL1_17 = backpack_magazines = ?,
SQL1_18 = backpack_weapons = ?,
SQL1_19 = current_weapon = ?,
SQL1_20 = goggles = ?,
SQL1_21 = handgun_items = ?,
SQL1_22 = handgun_weapon = ?,
SQL1_23 = headgear = ?,
SQL1_24 = binocular = ?,
SQL1_25 = loaded_magazines = ?,
SQL1_26 = primary_weapon = ?,
SQL1_27 = primary_weapon_items = ?,
SQL1_28 = secondary_weapon = ?,
SQL1_29 = secondary_weapon_items = ?,
SQL1_30 = uniform = ?,
SQL1_31 = uniform_items = ?,
SQL1_32 = uniform_magazines = ?,
SQL1_33 = uniform_weapons = ?,
SQL1_34 = vest = ?,
SQL1_35 = vest_items = ?,
SQL1_36 = vest_magazines = ?,
SQL1_37 = vest_weapons = ?,
SQL1_38 = temperature = ?,
SQL1_39 = wetness = ?
SQL1_40 = WHERE id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Vehicle related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[insertVehicle]
SQL1_1 = INSERT INTO vehicle SET
SQL1_2 = class = ?,
SQL1_3 = account_uid = ?,
SQL1_4 = is_locked = ?,
SQL1_5 = position_x = ?,
SQL1_6 = position_y = ?,
SQL1_7 = position_z = ?,
SQL1_8 = direction_x = ?,
SQL1_9 = direction_y = ?,
SQL1_10 = direction_z = ?,
SQL1_11 = up_x = ?,
SQL1_12 = up_y = ?,
SQL1_13 = up_z = ?,
SQL1_14 = pin_code = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13
Return InsertID = true

[deleteVehicle]
SQL1_1 = DELETE FROM vehicle WHERE id = ?

SQL1_INPUTS = 1

[loadVehicleIdPage]
;SQL1_1 = SELECT id FROM vehicle LIMIT ?,?
SQL1_1 = SELECT id FROM vehicle WHERE deleted_at IS NULL AND territory_id IS NULL LIMIT ?,?
SQL1_INPUTS = 1,2
OUTPUT = 1

[loadVehicle]
SQL1_1 = SELECT id,class,spawned_at,account_uid,is_locked,fuel,damage,hitpoints,position_x,position_y,position_z,direction_x,direction_y,direction_z,up_x,up_y,up_z,cargo_items,cargo_magazines,cargo_weapons,pin_code,vehicle_texture,deleted_at,money FROM vehicle WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4-STRING,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-STRING,22,23,24

[loadVehicleContainer]
SQL1_1 = SELECT cargo_container FROM vehicle WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1

[updateVehicle]
SQL1_1 = UPDATE vehicle SET
SQL1_2 = is_locked = ?,
SQL1_3 = fuel = ?,
SQL1_4 = damage = ?,
SQL1_5 = hitpoints = ?,
SQL1_6 = position_x = ?,
SQL1_7 = position_y = ?,
SQL1_8 = position_z = ?,
SQL1_9 = direction_x = ?,
SQL1_10 = direction_y = ?,
SQL1_11 = direction_z = ?,
SQL1_12 = up_x = ?,
SQL1_13 = up_y = ?,
SQL1_14 = up_z = ?,
SQL1_15 = cargo_items = ?,
SQL1_16 = cargo_magazines = ?,
SQL1_17 = cargo_weapons = ?,
SQL1_18 = cargo_container = ?,
SQL1_19 = money = ?,
SQL1_20 = last_updated_at = NOW()
SQL1_21 = WHERE id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19

[updateVehicleSkin]
SQL1_1 = UPDATE vehicle SET vehicle_texture = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[vehicleSetPinCode]
SQL1_1 = UPDATE vehicle SET pin_code = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Construction related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[insertConstruction]
SQL1_1 = INSERT INTO construction SET
SQL1_2 = class = ?,
SQL1_3 = account_uid = ?,
SQL1_4 = position_x = ?,
SQL1_5 = position_y = ?,
SQL1_6 = position_z = ?,
SQL1_7 = direction_x = ?,
SQL1_8 = direction_y = ?,
SQL1_9 = direction_z = ?,
SQL1_10 = up_x = ?,
SQL1_11 = up_y = ?,
SQL1_12 = up_z = ?,
SQL1_13 = territory_id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12-NULL
Return InsertID = true

[deleteConstruction]
SQL1_1 = DELETE FROM construction WHERE id = ?

SQL1_INPUTS = 1

[loadConstructionIdPage]
SQL1_1 = SELECT id FROM construction WHERE deleted_at IS NULL LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[loadConstruction]
SQL1_1 = SELECT id,class,account_uid,spawned_at,position_x,position_y,position_z,direction_x,direction_y,direction_z,up_x,up_y,up_z,is_locked,pin_code,territory_id,deleted_at,damage FROM construction WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4-STRING,5,6,7,8,9,10,11,12,13,14,15-STRING,16,17,18

[countConstruction]
SQL1_1 = SELECT COUNT(*) FROM construction

OUTPUT = 1

[constructionSetPinCode]
SQL1_1 = UPDATE construction SET pin_code= ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[upgradeObject]
SQL1_1 = UPDATE construction SET class = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[addDoorLock]
SQL1_1 = UPDATE construction SET pin_code = ?, is_locked = -1, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[updateLock]
SQL1_1 = UPDATE construction SET is_locked = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[updateConstructionTerritoryIDs]
SQL1_1 = UPDATE construction SET territory_id = ? WHERE id IN(?)

SQL1_INPUTS = 1,2

[updateDamage]
SQL1_1 = UPDATE construction SET damage = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Containers related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[insertContainer]
SQL1_1 = INSERT INTO container SET
SQL1_2 = class = ?,
SQL1_3 = account_uid = ?,
SQL1_4 = position_x = ?,
SQL1_5 = position_y = ?,
SQL1_6 = position_z = ?,
SQL1_7 = direction_x = ?,
SQL1_8 = direction_y = ?,
SQL1_9 = direction_z = ?,
SQL1_10 = up_x = ?,
SQL1_11 = up_y = ?,
SQL1_12 = up_z = ?,
SQL1_13 = cargo_items = ?,
SQL1_14 = cargo_magazines = ?,
SQL1_15 = cargo_weapons = ?,
SQL1_16 = cargo_container = ?,
SQL1_17 = money = ?,
SQL1_18 = pin_code = ?,
SQL1_19 = territory_id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-NULL
Return InsertID = true

[deleteContainer]
SQL1_1 = DELETE FROM container WHERE id = ?

SQL1_INPUTS = 1

[loadContainerIdPage]
SQL1_1 = SELECT id FROM container WHERE deleted_at IS NULL LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[loadContainer]
SQL1_1 = SELECT id,class,account_uid,is_locked,position_x,position_y,position_z,direction_x,direction_y,direction_z,up_x,up_y,up_z,cargo_items,cargo_magazines,cargo_weapons,pin_code,territory_id,abandoned,deleted_at,money FROM container WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4,5,6,7,8,9,10,11,12,13,14,15,16,17-STRING,18,19-STRING,20,21

[loadContainerCargo]
SQL1_1 = SELECT cargo_container FROM container WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1

[updateContainer]
SQL1_1 = UPDATE container SET
SQL1_2 = is_locked = ?,
SQL1_3 = position_x = ?,
SQL1_4 = position_y = ?,
SQL1_5 = position_z = ?,
SQL1_6 = direction_x = ?,
SQL1_7 = direction_y = ?,
SQL1_8 = direction_z = ?,
SQL1_9 = up_x = ?,
SQL1_10 = up_y = ?,
SQL1_11 = up_z = ?,
SQL1_12 = cargo_items = ?,
SQL1_13 = cargo_magazines = ?,
SQL1_14 = cargo_weapons = ?,
SQL1_15 = cargo_container = ?,
SQL1_16 = territory_id = ?,
SQL1_17 = money = ?
SQL1_18 = WHERE id = ?
SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-NULL,16,17

[containerSetPinCode]
SQL1_1 = UPDATE container SET pin_code= ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[updateContainerTerritoryIDs]
SQL1_1 = UPDATE container SET territory_id = ? WHERE id IN(?)

SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Clan related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[createClan]
SQL1_1 = INSERT INTO clan SET leader_uid = ?, name = ?

SQL1_INPUTS = 1,2
Return InsertID = true

[setAccountClanLink]
SQL1_1 = UPDATE account SET clan_id = ? WHERE uid = ?

SQL1_INPUTS = 1,2

[unLinkClanLink]
SQL1_1 = UPDATE account SET clan_id = NULL WHERE uid = ?

SQL1_INPUTS = 1

[updateClanLeader]
SQL1_1 = UPDATE clan SET leader_uid = ? WHERE id = ?

SQL1_INPUTS = 1,2

[deleteClan]
SQL1_1 = DELETE FROM clan WHERE id = ?

SQL1_INPUTS = 1

[loadClansIdPage]
SQL1_1 = SELECT id FROM clan LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[getClanInfo]
SQL1_1 = SELECT name,leader_uid FROM clan WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1-STRING,2-STRING

[getClanMembers]
SQL1_1 = SELECT uid,name FROM account WHERE clan_id = ?

SQL1_INPUTS = 1
OUTPUT = 1-STRING,2-STRING

[getClanMarkers]
SQL1_1 = SELECT id,markerType,positionArr,color,icon,iconSize,label,labelSize FROM clan_map_marker WHERE clan_id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2,3,4,5-STRING,6,7-STRING,8

[addMarker]
SQL1_1 = INSERT INTO clan_map_marker SET clan_id = ?, markerType = 0, positionArr = ?, color = ?, icon = ?, iconSize = ?, label = ?, labelSize = ?

SQL1_INPUTS = 1,2,3,4,5,6,7
Return InsertID = true

[addPoly]
SQL1_1 = INSERT INTO clan_map_marker SET clan_id = ?, markerType = 1, positionArr = ?, color = ?

SQL1_INPUTS = 1,2,3
Return InsertID = true

[deleteMarker]
SQL1_1 = DELETE FROM clan_map_marker WHERE id = ?

SQL1_INPUTS = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Territory related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[createTerritory]
SQL1_1 = INSERT INTO territory SET owner_uid = ?, name = ?, position_x = ? , position_y = ? , position_z = ?, radius = ? , level = ? , flag_texture = ? , flag_stolen = ? , flag_stolen_by_uid =? , build_rights = ? , moderators = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,12-NULL,10,11
Return InsertID = true

[loadTerriotryIdPage]
SQL1_1 = SELECT id FROM territory WHERE deleted_at IS NULL LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[loadTerritory]
SQL1_1 = SET @connector = ?;
SQL2_1 = SELECT id,owner_uid,name,position_x,position_y,position_z,radius, level,flag_texture,flag_stolen,flag_stolen_by_uid,last_paid_at,build_rights,moderators,deleted_at,(SELECT COUNT(*)FROM construction c WHERE c.territory_id = @connector) FROM territory WHERE id = @connector

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4,5,6,7,8,9-STRING,10,11-STRING,12,13,14,15,16

[setTerritoryLevel]
SQL1_1 = UPDATE territory SET level = ? WHERE id = ?

SQL1_INPUTS = 1,2

[setTerritorySize]
SQL1_1 = UPDATE territory SET radius = ? WHERE id = ?

SQL1_INPUTS = 1,2

[updateTerritoryBuildRights]
SQL1_1 = UPDATE territory SET build_rights = ? WHERE id = ?

SQL1_INPUTS = 1,2

[updateTerritoryModerators]
SQL1_1 = UPDATE territory SET moderators = ? WHERE id = ?

SQL1_INPUTS = 1,2

[maintainTerritory]
SQL1_1 = UPDATE territory SET last_paid_at = NOW(),xm8_protectionmoney_notified = 0 WHERE id = ?

SQL1_INPUTS = 1

[deleteTerritory]
SQL1_1 = DELETE FROM territory WHERE id = ?

SQL1_INPUTS = 1

[flagStolen]
SQL1_1 = UPDATE territory SET flag_stolen = 1, flag_stolen_by_uid = ?, flag_stolen_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[flagRestore]
SQL1_1 = UPDATE territory SET flag_stolen = 0, flag_stolen_by_uid = NULL, flag_stolen_at = NULL WHERE id = ?

SQL1_INPUTS = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Garbage Collector
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; Marks for deletion containers outside territories that were not accessed within ? days
[markDeleteOldContainers]
SQL1_1 = UPDATE container SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL AND deleted_at IS NULL

SQL1_INPUTS = 1

; Removes containers outside territories that were not accessed within ? days
[deleteOldContainers]
SQL1_1 = DELETE FROM container WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL

SQL1_INPUTS = 1

; Marks contructions outside territories deleted after ? days
[markDeleteOldConstructions]
SQL1_1 = UPDATE construction SET deleted_at = NOW() WHERE spawned_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL AND deleted_at IS NULL

SQL1_INPUTS = 1

; Removes contructions outside territories after ? days
[deleteOldConstructions]
SQL1_1 = DELETE FROM construction WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL

SQL1_INPUTS = 1

; Marks for deletion vehicles that were not used within ? days
[markDeleteOldVehicles]
; SQL1_1 = UPDATE vehicle SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY)
SQL1_1 = UPDATE vehicle SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL
SQL1_INPUTS = 1

;2. Add all below in the end of the file.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Virtual Garage related queries | ADDED BY [ExAd]Jan
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[loadTerritoryVehicles]
SQL1_1 = SELECT id, class FROM vehicle WHERE territory_id = ?
SQL1_INPUTS = 1
OUTPUT = 1,2-STRING

[loadVehFromVG]
SQL1_1 = UPDATE vehicle SET territory_id = NULL WHERE id = ?
SQL1_INPUTS = 1

[loadVehToVG]
SQL1_1 = UPDATE vehicle SET territory_id = ? WHERE id = ?
SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Virtual Garage related queries | ADDED BY [ExAd]Jan
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[deleteOldVehicles]
;SQL1_1 = DELETE FROM vehicle WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY)
SQL1_1 = DELETE FROM vehicle WHERE territory_id IS NULL AND deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY)
SQL1_INPUTS = 1

[markDeleteUnpaidTerritories]
SQL1_1 = UPDATE territory SET deleted_at = NOW() WHERE last_paid_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND deleted_at IS NULL
SQL2_1 = UPDATE construction SET deleted_at = (SELECT deleted_at FROM territory WHERE territory.id = construction.territory_id AND territory.deleted_at IS NOT NULL) WHERE construction.territory_id IS NOT NULL
SQL3_1 = UPDATE container SET deleted_at = (SELECT deleted_at FROM territory WHERE territory.id = container.territory_id AND territory.deleted_at IS NOT NULL) WHERE container.territory_id IS NOT NULL

SQL1_INPUTS = 1

; Removes territories (and all containers/constructions) that were not paid within ? days
[deleteUnpaidTerritories]
SQL1_1 = DELETE FROM territory WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY)

SQL1_INPUTS = 1

[addAbandonedSafes]
SQL1_1 = UPDATE container SET abandoned = NOW(), pin_code = '0000' WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND class = "Exile_Container_Safe" AND territory_id IS NULL

SQL1_INPUTS = 1

[deleteBaseFlagStolen]
SQL1_1 = DELETE FROM territory WHERE flag_stolen_at < DATE_SUB(NOW(), INTERVAL ? DAY)

SQL1_INPUTS = 1

; Unlock doors and mark safes as abandoned if flag stolen for X days
[setAbandonedUnlocked]
SQL1_1 = UPDATE container SET abandoned = NOW(), pin_code = '0000' WHERE (SELECT flag_stolen_at FROM territory WHERE territory.id = container.territory_id AND territory.flag_stolen_at < DATE_SUB(NOW(), INTERVAL ? DAY));
SQL2_1 = UPDATE construction SET pin_code = '0000' WHERE (SELECT flag_stolen_at FROM territory WHERE territory.id = construction.territory_id AND territory.flag_stolen_at < DATE_SUB(NOW(), INTERVAL ? DAY)) AND pin_code != '000000'

SQL1_INPUTS = 1
SQL2_INPUTS = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Moneh moneh moneh
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[setPlayerMoney]
SQL1_1 = UPDATE player SET money = ? WHERE id = ?

SQL1_INPUTS = 1,2

[getPlayerMoney]
SQL1_1 = SELECT money FROM player WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1

[setContainerMoney]
SQL1_1 = UPDATE container SET money = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[setVehicleMoney]
SQL1_1 = UPDATE vehicle SET money = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;	XM8
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[getAllNotifTerritory]
SQL1_1 = SELECT id FROM territory WHERE last_paid_at < DATE_SUB(NOW(), INTERVAL ? - 1 DAY) and xm8_protectionmoney_notified = 0

SQL1_INPUTS = 1

[setTerritoryNotified]
SQL1_1 = UPDATE territory SET xm8_protectionmoney_notified = ? WHERE id = ?

SQL1_INPUTS = 1,2

 

Share this post


Link to post
Share on other sites
12 minutes ago, Alésio.B [ARMASERVICES.NET] said:

RTP


=====================================================================
== C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\arma3server_x64.exe
== .\arma3server_x64.exe  -port=2302 "-servermod=@infiSTAR_Exile;@ExileServer" "-mod=@Enhanced Soundscape;@CBA_A3;@DS Houses;@Zombies and Demons;@Chernarus Redux;@Fox_SurvivalCars;@RHSUSAF;@Temp fix for exile miniguns;@RHSAFRF;@TRYK [TRYK's Multi-play Uniforms];@NIArms All in One;@Extended_Items_Exile;@Extended_Base_Mod;@Enhanced Movement;@CUP Terrains - Core;@Exile" "-profiles=C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\serverprofile" "-config=C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\config.cfg" "-bepath=C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\battleye" -loadMissionToMemory -autoInit

Original output filename: Arma3Retail_Server_x64
Exe timestamp: 2017/12/13 17:38:04
Current time:  2018/01/30 21:03:45

Type: Public
Build: Stable
Version: 1.80.143869

Allocator: C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\Dll\tbb4malloc_bi_x64.dll [2017.0.0.0] [2017.0.0.0]
PhysMem: 32 GiB, VirtMem : 131072 GiB, AvailPhys : 27 GiB, AvailVirt : 131072 GiB, AvailPage : 31 GiB
=====================================================================

21:03:45 SteamAPI initialization failed. Steam features won't be accessible!
21:03:45 Cannot register unknown string STR_3DEN_CAMERA_NAME
21:03:45 Cannot register unknown string STR_DIFF_SCENE_ONLY
21:03:45 Cannot register unknown string STR_DIFF_SCENE_AND_MAP
21:03:45 Initializing stats manager.
21:03:45 Stats config disabled.
21:03:45 sessionID: 1be8958a57ddcd8a2458013f417a6e9f95e9da14
21:03:57 Unsupported language English in stringtable
21:03:58 Item STR_RHS_KAB500_NAME listed twice
21:03:58 Unsupported language English in stringtable
21:03:58 Unsupported language English in stringtable
21:03:58 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice
21:03:59 Conflicting addon exitems in 'exitems_weapons\', previous definition in 'exitems\'
21:03:59 Conflicting addon hlcweapons_core in 'hlc_core\', previous definition in 'exitems_dummy\hlc_core\'
21:03:59 Conflicting addon hlcweapons_ar15 in 'hlc_wp_AR15\', previous definition in 'exitems_dummy\hlc_wp_ar15\'
21:03:59 Conflicting addon hlcweapons_falpocalypse in 'hlc_WP_FAL\', previous definition in 'exitems_dummy\hlc_wp_fal\'
21:03:59 Conflicting addon hlcweapons_g3 in 'hlc_wp_g3\', previous definition in 'exitems_dummy\hlc_wp_g3\'
21:03:59 Conflicting addon hlcweapons_m14 in 'hlc_wp_m14\', previous definition in 'exitems_dummy\hlc_wp_m14\'
21:03:59 Conflicting addon hlcweapons_SAW in 'hlc_wp_saw\', previous definition in 'exitems_dummy\hlc_wp_m249\'
21:03:59 Conflicting addon hlcweapons_Springfield1903 in 'hlc_wp_springfield\', previous definition in 'exitems_dummy\hlc_springfield\'
21:03:59 Conflicting addon US_ESS_Glasses_tryk in 'ESSGoggles\', previous definition in 'exitems_dummy\essgoggles\'
21:03:59 Conflicting addon maa_Uniform in 'TRYK_uniforms\', previous definition in 'exitems_dummy\tryk_units\'
21:03:59 Conflicting addon TRYK_Uniform in 'tryk_unit\', previous definition in 'exitems_dummy\tryk_uniforms\'
21:03:59 Conflicting addon TRYK_Uniform in 'zara\', previous definition in 'exitems_dummy\tryk_uniforms\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i1\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1l2\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i3\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1t\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2t1\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i2\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1t\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2l\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i4\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_1l2\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2t2\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2t1\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\dom_01\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i4\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2l\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i3\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i2\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_3i1\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\dom_02_pinsk\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2i\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:03:59 Conflicting addon DSHouses in 'ds_houses\derevnya\a2_housev_2i\proxy\', previous definition in 'ds_houses\derevnya\a2_housev_2t2\'
21:04:00 Conflicting addon a3_exile_occupation in 'x\addons\a3_exile_occupation\', previous definition in 'a3_exile_occupation-development\source\a3_exile_occupation\'
21:04:01 Updating base class All->, by ca\chernarusredux_bushes\config.bin/CfgVehicles/Thing/ (original bin\config.bin)
21:04:01 Updating base class None->, by Shemagh\config.bin/CfgGlasses/TRYK_headset_glasses/ (original ESSGoggles\config.bin)
21:04:01 Updating base class ->NonStrategic, by a3\data_f\config.bin/CfgVehicles/HouseBase/ (original a3\data_f\config.bin)
21:04:01 Updating base class ->DestructionEffects, by a3\data_f\config.bin/CfgVehicles/House/DestructionEffects/ (original a3\data_f\config.bin)
21:04:01 Updating base class ->All, by a3\data_f\config.bin/CfgVehicles/Thing/ (original (bin\config.bin - no unload))
21:04:01 Updating base class ->Wreck, by a3\data_f\config.bin/CfgVehicles/PlaneWreck/ (original a3\data_f\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin)
21:04:01 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class ->EtelkaMonospacePro, by a3\uifonts_f\config.bin/CfgFontFamilies/EtelkaMonospaceProBold/ (original ca\uifonts\config.bin)
21:04:01 Updating base class ->DefaultWorld, by a3\map_data\config.bin/CfgWorlds/CAWorld/ (original ca\chernarusredux_data\config.bin)
21:04:01 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin)
21:04:01 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin)
21:04:01 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin)
21:04:01 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin)
21:04:01 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin)
21:04:01 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin)
21:04:01 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin)
21:04:01 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin)
21:04:01 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin)
21:04:01 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin)
21:04:01 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin)
21:04:01 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin)
21:04:01 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
21:04:01 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin)
21:04:01 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin)
21:04:01 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin)
21:04:01 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin)
21:04:01 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
21:04:01 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin)
21:04:01 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin)
21:04:01 Updating base class ->VehicleMagazine, by a3\weapons_f\config.bin/CfgMagazines/24Rnd_missiles/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->RocketPods, by a3\weapons_f\config.bin/CfgWeapons/missiles_DAR/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->Default, by a3\weapons_f\config.bin/CfgWeapons/ItemCore/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->Binocular, by a3\weapons_f\config.bin/CfgWeapons/NVGoggles/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->Bag_Base, by a3\weapons_f\ammoboxes\config.bin/CfgVehicles/B_Carryall_Base/ (original a3\weapons_f\ammoboxes\config.bin)
21:04:01 Updating base class ->InventoryItem_Base_F, by a3\weapons_f\items\config.bin/CfgWeapons/UniformItem/ (original a3\weapons_f\items\config.bin)
21:04:01 Updating base class ->Man, by a3\characters_f\config.bin/CfgVehicles/CAManBase/ (original a3\characters_f\config.bin)
21:04:01 Updating base class ->CAManBase, by a3\characters_f\config.bin/CfgVehicles/SoldierWB/ (original a3\characters_f\config.bin)
21:04:01 Updating base class ->SoldierWB, by a3\characters_f\config.bin/CfgVehicles/B_Soldier_base_F/ (original a3\characters_f\config.bin)
21:04:01 Updating base class ->InventoryItem_Base_F, by a3\characters_f\config.bin/CfgWeapons/HeadgearItem/ (original a3\characters_f\config.bin)
21:04:01 Updating base class player->close, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/close/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->short, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/short/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->medium, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/medium/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->far, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/far/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class player->close, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/close/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->short, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/short/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->medium, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/medium/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class close->far, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/far/ (original a3\weapons_f\config.bin)
21:04:01 Updating base class ->All, by a3\sounds_f\config.bin/CfgVehicles/Sound/ (original a3\sounds_f\config.bin)
21:04:01 Updating base class ->Car, by a3\sounds_f\config.bin/CfgVehicles/Car_F/ (original a3\sounds_f\config.bin)
21:04:01 Updating base class ZavoraAnim->House, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora/ (original ca\buildings_c\config.bin)
21:04:01 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)
21:04:01 Updating base class ->CAWorld, by ca\chernarusredux_c\config.bin/CfgWorlds/ChernarusRedux/ (original ca\chernarusredux_data\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_1l2\config.bin/CfgVehicles/Land_HouseV_1L2/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_1l2\config.bin/CfgVehicles/Land_HouseV_1L2/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_1t\config.bin/CfgVehicles/Land_HouseV_1t/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_1t\config.bin/CfgVehicles/Land_HouseV_1t/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2i\config.bin/CfgVehicles/Land_HouseV_2I/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2i\config.bin/CfgVehicles/Land_HouseV_2I/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2l\config.bin/CfgVehicles/Land_HouseV_2L/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2l\config.bin/CfgVehicles/Land_HouseV_2L/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2t1\config.bin/CfgVehicles/Land_HouseV_2t1/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2t1\config.bin/CfgVehicles/Land_HouseV_2t1/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_2t2\config.bin/CfgVehicles/Land_HouseV_2t2/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_2t2\config.bin/CfgVehicles/Land_HouseV_2t2/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i1\config.bin/CfgVehicles/Land_HouseV_3I1/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i1\config.bin/CfgVehicles/Land_HouseV_3I1/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i2\config.bin/CfgVehicles/Land_HouseV_3I2/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i2\config.bin/CfgVehicles/Land_HouseV_3I2/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i3\config.bin/CfgVehicles/Land_HouseV_3I3/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i3\config.bin/CfgVehicles/Land_HouseV_3I3/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class Land_HouseV_1I2->House, by ds_houses\derevnya\a2_housev_3i4\config.bin/CfgVehicles/Land_HouseV_3I4/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class DestructionEffects->DestructionEffects, by ds_houses\derevnya\a2_housev_3i4\config.bin/CfgVehicles/Land_HouseV_3I4/DestructionEffects/ (original ca\structures_c\house\housev\config.bin)
21:04:01 Updating base class ->Tank, by a3\armor_f_beta\config.bin/CfgVehicles/Tank_F/ (original a3\armor_f_beta\config.bin)
21:04:01 Updating base class ->Ship, by a3\boat_f\config.bin/CfgVehicles/Ship_F/ (original a3\boat_f\config.bin)
21:04:01 Updating base class OpenGate->, by ca\misc3_c\config.bin/CfgVehicles/ZavoraAnim/UserActions/CloseGate/ (original ca\buildings_c\config.bin)
21:04:01 Updating base class TargetTraining->TargetGrenadBase, by ca\misc3_c\config.bin/CfgVehicles/TargetGrenade/ (original ca\misc3_c\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_WDL_GRY_CombatUniform/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_fleece/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUODs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs_gry/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs_BLK/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGs_OD/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_hood_blk/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_hood_mc/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_hood_nc/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_jersey_blu/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_denim_jersey_blk/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_R/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_BL/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_BK/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_WH/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_BWH/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_RED2/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_WHB/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_ylb/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_shirts_DENIM_od/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUHs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUGHs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_U_B_PCUODHs/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_B_USMC_R/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->H_HelmetB, by tryk_unit\config.bin/cfgWeapons/TRYK_H_Helmet_WOOD/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->H_HelmetB, by tryk_unit\config.bin/cfgWeapons/TRYK_H_Helmet_MARPAT_Wood/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Vest_Camo_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_V_PlateCarrier_blk_L/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Vest_Camo_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_V_PlateCarrier_wood_L/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Vest_Camo_Base, by tryk_unit\config.bin/cfgWeapons/TRYK_V_PlateCarrier_coyo_L/ (original tryk_unit\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW/ (original zara\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW3/ (original zara\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW4/ (original zara\config.bin)
21:04:01 Updating base class ->Uniform_Base, by zara\config.bin/cfgWeapons/TRYK_U_B_PCUHsW7/ (original zara\config.bin)
21:04:01 Updating base class NewTurret->NewTurret, by a3\armor_f_beta\apc_wheeled_01\config.bin/CfgVehicles/Wheeled_APC_F/Turrets/MainTurret/ (original a3\armor_f_beta\config.bin)
21:04:01 Updating base class ->cargo_base, by a3\cargoposes_f_heli\config.bin/CfgMovesMaleSdr/States/passenger_inside_2_Aim/ (original a3\cargoposes_f_heli\config.bin)
21:04:01 Updating base class ->cargo_base, by a3\cargoposes_f_heli\config.bin/CfgMovesMaleSdr/States/passenger_inside_7_Aim/ (original a3\cargoposes_f_heli\config.bin)
21:04:01 Updating base class ->SlotInfo, by a3\weapons_f_mark\config.bin/UnderBarrelSlot/ (original a3\weapons_f_mark\config.bin)
21:04:01 Updating base class ->asdg_SlotInfo, by rhsafrf\addons\rhs_c_weapons\config.bin/asdg_UnderSlot/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
21:04:01 Updating base class ->asdg_SlotInfo, by rhsafrf\addons\rhs_c_weapons\config.bin/asdg_FrontSideRail/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
21:04:01 Updating base class ->asdg_SlotInfo, by rhsafrf\addons\rhs_c_weapons\config.bin/asdg_MuzzleSlot/ (original rhsafrf\addons\rhs_c_weapons\config.bin)
21:04:01 Updating base class ->WhiteHead_01, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_01_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_04, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_04_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_05, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_05_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_06, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_06_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_07, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_07_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_08, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_08_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_09, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_09_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_10, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_10_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_11, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_11_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_14, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_14_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_15, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_15_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->WhiteHead_16, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_White_16_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->GreekHead_A3_01, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Greek_01_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->GreekHead_A3_08, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Greek_08_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->GreekHead_A3_09, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Greek_09_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->AsianHead_A3_01, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Asian_01_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->AsianHead_A3_02, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Asian_02_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->AsianHead_A3_03, by a3\characters_f_mark\config.bin/CfgFaces/Man_A3/CamoHead_Asian_03_F/ (original a3\characters_f_mark\config.bin)
21:04:01 Updating base class ->BaseSoundModeType, by rhsafrf\addons\rhs_sounds\config.bin/CfgWeapons/rhs_weap_pkt/manual/StandardSound/ (original rhsafrf\addons\rhs_c_heavyweapons\config.bin)
21:04:01 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by rhsafrf\addons\rhs_weapon_sounds\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
21:04:01 Updating base class ->SoundsExt, by rhsafrf\addons\rhs_vehiclesounds\config.bin/CfgVehicles/Heli_Attack_02_base_F/SoundsExt/ (original a3\air_f_beta\heli_attack_02\config.bin)
21:04:01 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
21:04:01 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
21:04:01 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin)
21:04:01 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin)
21:04:01 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin)
21:04:01 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin)
21:04:01 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin)
21:04:01 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\delete\config.bin/CfgWorlds/plr_bulge/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\delete\config.bin/CfgWorlds/plr_mana/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\delete\config.bin/CfgWorlds/MBG_Nam/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\grid\config.bin/CfgWorlds/Intro/ (original CUP\Terrains\cup_terrains_worlds\grid\config.bin)
21:04:01 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/utes/ (original CUP\Terrains\cup_terrains_worlds\intros\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/daraisolas/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->utes, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/ElephantIsland/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/GIMAP/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/OPX_RE/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/Zedka/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->utes, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/fallujah/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/cl_training/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/gott_islands/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/kulima/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/nevada_desert/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/Antarctica/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Intro, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/applegate_lake/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Takistan, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/usec_aoraki/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->Chernarus, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/cindercity/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class CAWorld->utes, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/IsolaDiCapraia/ (original CUP\Terrains\cup_terrains_worlds\ambient\config.bin)
21:04:01 Updating base class ->asdg_MuzzleSlot, by rhsusf\addons\rhsusf_c_weapons\config.bin/asdg_MuzzleSlot_556/ (original rhsusf\addons\rhsusf_c_weapons\config.bin)
21:04:01 Updating base class ->baseSoundModeType, by rhsusf\addons\rhsusf_weapon_sounds\config.bin/CfgWeapons/rhs_weap_XM2010_Base_F/Single/StandardSound/ (original rhsusf\addons\rhsusf_sounds\config.bin)
21:04:01 Updating base class ->baseSoundModeType, by rhsusf\addons\rhsusf_weapon_sounds\config.bin/CfgWeapons/rhs_weap_XM2010_Base_F/Single/SilencedSound/ (original rhsusf\addons\rhsusf_sounds\config.bin)
21:04:02 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))
21:04:03 Updating base class ListRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class ListPrevRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class CloseRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class NextModeRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
21:04:03 Updating base class B_Soldier_02_f->B_Soldier_base_F, by exile_client\config.bin/CfgVehicles/B_Story_SF_Captain_F/ (original a3\characters_f\config.bin)
21:04:03 Updating base class ->Rifle, by exile_client\config.bin/CfgWeapons/Exile_Melee_Abstract/ (original exile_client\config.bin)
21:04:03 Cannot delete class BackgroundSlotPrimary, it is referenced somewhere (used as a base class probably).
21:04:03 Updating base class RscStandardDisplay->, by exile_client\config.bin/RscDisplayMain/ (original bin\config.bin)
21:04:03 Updating base class RscPicture->RscText, by exile_client\config.bin/RscDisplayVoiceChat/controls/Picture/ (original a3\ui_f\config.bin)
21:04:03 Updating base class ->Plane, by exile_psycho_an2\config.bin/CfgVehicles/an2_base/ (original exile_psycho_an2\config.bin)
21:04:03 Updating base class ->BRDM2_HQ_Base, by exile_psycho_brdm\config.bin/CfgVehicles/BRDM2_HQ_CHDKZ/ (original exile_psycho_brdm\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_MG_base_EP1/ (original exile_psycho_btr40\config.bin)
21:04:03 Updating base class ->BTR40_MG_base_EP1, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_base_EP1/ (original exile_psycho_btr40\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_gaz_volha\config.bin/CfgVehicles/volha_Base/ (original exile_psycho_gaz_volha\config.bin)
21:04:03 Updating base class close->LowROF, by exile_psycho_hmmw\config.bin/cfgWeapons/M134_minigun/medium/ (original a3\weapons_f\config.bin)
21:04:03 Updating base class close->medium, by exile_psycho_hmmw\config.bin/cfgWeapons/M134_minigun/far/ (original a3\weapons_f\config.bin)
21:04:03 Updating base class Car->Car_F, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_Base/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M2/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M134/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_UNA/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->HMMWV_UNA, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_MEV/ (original exile_psycho_hmmw\config.bin)
21:04:03 Updating base class ->Ikarus_Base, by exile_psycho_ikarus\config.bin/CfgVehicles/Ikarus_Civ_02/ (original exile_psycho_ikarus\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_lada\config.bin/CfgVehicles/Lada_Base/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/Landrover_Civ_02/ (original exile_psycho_lrc\config.bin)
21:04:03 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/LR_Ambulance_Base/ (original exile_psycho_lrc\config.bin)
21:04:03 Updating base class ->Octavia_Base, by exile_psycho_octavia\config.bin/CfgVehicles/Octavia_Civ_01/ (original exile_psycho_octavia\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_suv_a3\config.bin/CfgVehicles/SUV_Base/ (original exile_psycho_suv_a3\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_suvarm_a3\config.bin/cfgVehicles/SUV_armored_Base/ (original exile_psycho_suvarm_a3\config.bin)
21:04:03 Updating base class ->Car_F, by exile_psycho_tractor\config.bin/CfgVehicles/Tractor_Base/ (original exile_psycho_tractor\config.bin)
21:04:03 Updating base class ->Tractor_Base, by exile_psycho_tractor\config.bin/CfgVehicles/tractorOld/ (original exile_psycho_tractor\config.bin)
21:04:03 Updating base class ->Offroad_01_base_F, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Base/ (original exile_psycho_uaz\config.bin)
21:04:03 Updating base class ->UAZ_Base, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Open_Base/ (original exile_psycho_uaz\config.bin)
21:04:03 Updating base class ->UH1H_Closed, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_Clo/ (original exile_psycho_uh1h\config.bin)
21:04:03 Updating base class ->UH1HL_base, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_M240/ (original exile_psycho_uh1h\config.bin)
21:04:03 Updating base class ->Ural_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_RU/ (original exile_psycho_ural\config.bin)
21:04:03 Updating base class ->Ural_Open_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_Open_RU/ (original exile_psycho_ural\config.bin)
21:04:03 Updating base class ->Truck_F, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_base/ (original exile_psycho_v3s\config.bin)
21:04:03 Updating base class ->V3S_base, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_Base_EP1/ (original exile_psycho_v3s\config.bin)
21:04:03 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo01/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo02/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo03/ (original exile_psycho_lada\config.bin)
21:04:03 Updating base class ->Golf_Base, by exile_psycho_vwgolf\config.bin/CfgVehicles/Golf_Civ_Base/ (original exile_psycho_vwgolf\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/75Rnd_Green_Tracer_545x39_RPK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->75Rnd_Green_Tracer_545x39_RPK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/45Rnd_Green_Tracer_545x39_RPK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Green_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Red_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_White_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Yellow_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_762x39_AK47_M/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK47/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK107_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK107/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK107_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK107_GL/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK74_GL/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKM/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AKM, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AKS, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS_Gold/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->arifle_AK74, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_RPK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
21:04:03 Updating base class ->exile_arifle_M16A4_base, by exile_psycho_weapons\arifle\m\m16a4\config.bin/CfgWeapons/exile_arifle_M16A4/ (original exile_psycho_weapons\arifle\m\m16a4\config.bin)
21:04:03 Updating base class ->exile_arifle_M16A4_base, by exile_psycho_weapons\arifle\m\m16a4\config.bin/CfgWeapons/exile_arifle_M16A2/ (original exile_psycho_weapons\arifle\m\m16a4\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\arifle\m\m4\config.bin/CfgWeapons/exile_arifle_M4/ (original exile_psycho_weapons\arifle\m\m4\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/10Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
21:04:03 Updating base class ->10Rnd_765x17ball, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/20Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\arifle\sa61\config.bin/CfgWeapons/exile_rifle_SA61/ (original exile_psycho_weapons\arifle\sa61\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\mgun\pk\config.bin/CfgMagazines/100Rnd_762x54_PK_Tracer_Green/ (original exile_psycho_weapons\mgun\pk\config.bin)
21:04:03 Updating base class ->Rifle_Long_Base_F, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/PKP/ (original exile_psycho_weapons\mgun\pk\config.bin)
21:04:03 Updating base class ->PKP, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/Pecheneg/ (original exile_psycho_weapons\mgun\pk\config.bin)
21:04:03 Updating base class ShotgunBase->BulletBase, by exile_psycho_weapons\other\m1014\config.bin/CfgAmmo/B_12Gauge_Pellets/ (original a3\weapons_f\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\other\m1014\config.bin/CfgMagazines/8Rnd_B_Beneli_74Slug/ (original exile_psycho_weapons\other\m1014\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\other\m1014\config.bin/CfgMagazines/8Rnd_B_Beneli_74Pellets/ (original exile_psycho_weapons\other\m1014\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\other\m1014\config.bin/CfgWeapons/M1014/ (original exile_psycho_weapons\other\m1014\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgMagazines/7Rnd_45ACP_1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgWeapons/Colt1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\makarov\config.bin/CfgMagazines/8Rnd_9x18_Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\makarov\config.bin/CfgWeapons/Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\revolver\config.bin/CfgMagazines/6Rnd_45ACP/ (original exile_psycho_weapons\pistol\revolver\config.bin)
21:04:03 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455/ (original exile_psycho_weapons\pistol\revolver\config.bin)
21:04:03 Updating base class ->TaurusTracker455, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455_gold/ (original exile_psycho_weapons\pistol\revolver\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Yellow_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Red_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Green_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\dmr\config.bin/CfgWeapons/srifle_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\huntingrifle\config.bin/CfgMagazines/5x_22_LR_17_HMR_M/ (original exile_psycho_weapons\srifle\huntingrifle\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\huntingrifle\config.bin/CfgWeapons/srifle_CZ550_base/ (original exile_psycho_weapons\srifle\huntingrifle\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgMagazines/5Rnd_127x108_KSVK/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgMagazines/5Rnd_127x108_APDS_KSVK/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgWeapons/ksvk/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\leeenfield\config.bin/CfgMagazines/10x_303_M/ (original exile_psycho_weapons\srifle\leeenfield\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\leeenfield\config.bin/CfgWeapons/srifle_LeeEnfield/ (original exile_psycho_weapons\srifle\leeenfield\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\m107\config.bin/CfgMagazines/10Rnd_127x99_m107/ (original exile_psycho_weapons\srifle\m107\config.bin)
21:04:03 Updating base class ->Rifle_Long_Base_F, by exile_psycho_weapons\srifle\m107\config.bin/CfgWeapons/exile_weapons_m107/ (original exile_psycho_weapons\srifle\m107\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\svd\config.bin/CfgMagazines/10Rnd_762x54_SVD/ (original exile_psycho_weapons\srifle\svd\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\svd\config.bin/CfgWeapons/srifle_SVD/ (original exile_psycho_weapons\srifle\svd\config.bin)
21:04:03 Updating base class ->srifle_SVD, by exile_psycho_weapons\srifle\svd\config.bin/CfgWeapons/srifle_SVD_des/ (original exile_psycho_weapons\srifle\svd\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\vss\config.bin/CfgMagazines/10Rnd_9x39_VSS/ (original exile_psycho_weapons\srifle\vss\config.bin)
21:04:03 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\vss\config.bin/CfgMagazines/20Rnd_9x39_VSS/ (original exile_psycho_weapons\srifle\vss\config.bin)
21:04:03 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\vss\config.bin/CfgWeapons/srifle_VSSVintorez/ (original exile_psycho_weapons\srifle\vss\config.bin)
21:04:03 Updating base class AbstractConstruction->AbstractConstruction, by extendedbase\config.bin/CfgConstruction/AbstractFloor/ (original exile_client\config.bin)
21:04:03 Updating base class AbstractConstruction->AbstractConstruction, by extendedbase\config.bin/CfgConstruction/AbstractWall/ (original exile_client\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_1_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_3_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_5_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_Tower_F/ (original a3\structures_f\mil\bagbunker\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncBarrier_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Stone_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Stone_Gate_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_1->, by extendedbase\config.bin/CfgVehicles/Land_Stone_Gate_F/UserActions/CloseDoor_1/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_2->, by extendedbase\config.bin/CfgVehicles/Land_Stone_Gate_F/UserActions/CloseDoor_2/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WaterCooler_01_new_F/ (original a3\structures_f_bootcamp\items\electronics\config.bin)
21:04:03 Updating base class Scrapyard_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Pallet_MilBoxes_F/ (original a3\structures_f_epa\mil\scrapyard\config.bin)
21:04:03 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_Small_F/ (original a3\structures_f\mil\bagbunker\config.bin)
21:04:03 Updating base class House_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Bunker_F/ (original a3\structures_f\mil\bunker\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierWall_corner_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierWall6_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierWall4_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Cargo20_military_green_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_RampConcrete_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class BagFence_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagFence_Corner_F/ (original a3\structures_f\mil\bagfence\config.bin)
21:04:03 Updating base class BagFence_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagFence_Long_F/ (original a3\structures_f\mil\bagfence\config.bin)
21:04:03 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrierTower_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Metal_wooden_rack_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Wall_IndCnc_4_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_City2_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_City2_8m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Helipad_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HelipadCivil_F/ (original a3\structures_f\mil\helipads\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Rack_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_City_Gate_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_1->, by extendedbase\config.bin/CfgVehicles/Land_City_Gate_F/UserActions/CloseDoor_1/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class OpenDoor_2->, by extendedbase\config.bin/CfgVehicles/Land_City_Gate_F/UserActions/CloseDoor_2/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BarGate_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Icebox_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningMilitaryArea_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Mil_WallBig_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Cargo_Patrol_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_Patrol_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
21:04:03 Updating base class Piers_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pier_small_F/ (original a3\structures_f\naval\piers\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Wall_Tin_4/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Tank_rust_F/ (original a3\structures_f\ind\tank\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesMetal_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Cargo_Tower_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_Tower_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_FuelStation_Feed_F/ (original a3\structures_f\ind\fuelstation\config.bin)
21:04:03 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_Large_F/ (original a3\structures_f\mil\bagbunker\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/ShootingPos_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class Cargo_House_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_House_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
21:04:03 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Cargo40_light_green_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_cargo_house_slum_F/ (original a3\structures_f\households\slum\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncShelter_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Wall_IndCnc_2deco_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncWall4_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_FuelStation_Shed_F/ (original a3\structures_f\ind\fuelstation\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Shed_Small_F/ (original a3\structures_f\ind\shed\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Razorwire_F/ (original a3\structures_f\mil\fortification\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_u_Addon_01_V1_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Cargo20_sand_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GH_Stairs_F/ (original a3\structures_f_epc\dominants\ghosthotel\config.bin)
21:04:03 Updating base class Land_i_Garage_V1_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Garage_V2_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GH_Platform_F/ (original a3\structures_f_epc\dominants\ghosthotel\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_TentDome_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TentHangar_V1_F/ (original a3\structures_f\mil\tenthangar\config.bin)
21:04:03 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampHalogen_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class Land_LampAirport_off_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampAirport_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncWall1_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CncBarrierMedium_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Crash_barrier_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Shed_Big_F/ (original a3\structures_f\ind\shed\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TouristShelter_01_F/ (original a3\structures_f_epc\civ\tourism\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Water_source_F/ (original a3\structures_f\civ\accessories\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Concrete_SmallWall_4m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Concrete_SmallWall_8m_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningMilAreaSmall_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningMilitaryVehicles_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_PortableLight_single_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PortableLight_double_F/ (original a3\structures_f_epa\civ\constructions\config.bin)
21:04:03 Updating base class Reflectors->, by extendedbase\config.bin/CfgVehicles/Land_PortableLight_double_F/Reflectors/ (original a3\structures_f_epa\civ\constructions\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/Land_PortableLight_double_F/Reflectors/Light_1/ (original extendedbase\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Radar_Small_F/ (original a3\structures_f\mil\radar\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Cargo_addon02_V2_F/ (original a3\structures_f\households\slum\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TableDesk_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_ToiletBox_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_ChairWood_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/BlockConcrete_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class ThingX->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_CargoBox_V1_F/ (original a3\structures_f\ind\cargo\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IndFnc_3_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IndFnc_9_F/ (original a3\structures_f\walls\config.bin)
21:04:03 Updating base class Piers_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sea_Wall_F/ (original a3\structures_f\naval\piers\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Addon_03_V1_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Addon_03mid_V1_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampStreet_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Dome_Big_F/ (original a3\structures_f\research\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Hangar_F/ (original a3\structures_f\ind\airport\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Metal_Shed_F/ (original a3\structures_f\households\addons\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_spp_Tower_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sun_chair_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_04_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_LampShabby_F/ (original a3\structures_f\civ\lamps\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/LAnd_Airport_Tower_F/ (original a3\structures_f\ind\airport\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_Barracks_V1_F/ (original a3\structures_f\mil\barracks\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BeachBooth_01_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Castle_01_tower_F/ (original a3\structures_f\dominants\castle\config.bin)
21:04:03 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_WarningUnexplodedAmmo_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TTowerSmall_1_F/ (original a3\structures_f\ind\transmitter_tower\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Exile_Plant_GreenBush/ (original exile_client\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sleeping_bag_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Rocks_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Small_Stone_02_F/ (original a3\rocks_f\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_SolarPanel_2_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_spp_Panel_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CampingChair_V2_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CampingChair_V1_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Camping_Light_F/ (original a3\structures_f_epb\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_CampingTable_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_MapBoard_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/MapBoard_altis_F/ (original a3\structures_f\civ\infoboards\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_narrow_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_narrow_corner_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_wide_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Pavement_wide_corner_F/ (original a3\structures_f\civ\pavements\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Exile_ConcreteMixer/ (original exile_client\config.bin)
21:04:03 Updating base class FlagCarrier->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Flag_CSAT_F/ (original a3\structures_f\mil\flags\config.bin)
21:04:03 Updating base class ThingX->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_GarbageContainer_closed_F/ (original a3\structures_f_epb\civ\garbage\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Metal_rack_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sink_F/ (original a3\structures_f\civ\accessories\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Atm_02_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
21:04:03 Updating base class Land_BagBunker_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_BagBunker_01_small_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_HBarrier_3_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_line_3_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_HBarrier_5_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_line_5_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_BagBunker_Tower_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_tower_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_House_Small_03_V1_F/ (original a3\structures_f\households\house_small03\config.bin)
21:04:03 Updating base class Land_i_House_Big_01_V1_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_i_House_Big_01_V2_F/ (original a3\structures_f\households\house_big01\config.bin)
21:04:03 Updating base class PlasticCase_01_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_PlasticCase_01_medium_F/ (original a3\structures_f_heli\items\luggage\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Research_HQ_F/ (original a3\structures_f\research\config.bin)
21:04:03 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Research_house_V1_F/ (original a3\structures_f\research\config.bin)
21:04:03 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Airport_01_hangar_F/ (original a3\structures_f_exp\infrastructure\airports\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Ammobox_rounds_F/ (original a3\structures_f_epb\items\military\config.bin)
21:04:03 Updating base class Slingload_01_Base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/B_Slingload_01_Ammo_F/ (original a3\supplies_f_heli\slingload\config.bin)
21:04:03 Updating base class Slingload_01_Base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/B_Slingload_01_fuel_F/ (original a3\supplies_f_heli\slingload\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IRMaskingCover_01_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_IRMaskingCover_02_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Land_BagFence_Long_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Bagfence_01_long_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_BagFence_Short_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Bagfence_01_short_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_BagBunker_Large_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Bagbunker_01_large_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Land_HBarrierTower_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_HBarrier_01_big_tower_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Suitcase_F/ (original a3\structures_f\items\luggage\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_powerSupply_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_camera_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Land_WaterPump_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/WaterPump_01_forest_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class Land_WaterPump_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/WaterPump_01_sand_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TripodScreen_01_large_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TripodScreen_01_dual_v2_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TripodScreen_01_dual_v1_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Target_Swivel_01_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class EventHandlers->, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/EventHandlers/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class AnimationSources->, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/AnimationSources/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class Screws_source->, by extendedbase\config.bin/CfgVehicles/Target_Swivel_01_ground_F/AnimationSources/Screws_source/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class TargetP_Inf_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TargetP_Inf_Acc2_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class TargetBootcampHumanSimple_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TargetBootcampHuman_F/ (original a3\structures_f_bootcamp\training\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Target_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_SatelliteAntenna_01_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Projector_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PortableGenerator_01_F/ (original a3\props_f_exp\military\camps\config.bin)
21:04:03 Updating base class Land_Obstacle_Bridge_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Obstacle_Ramp_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class Land_MetalBarrel_empty_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/MetalBarrel_burning_F/ (original a3\structures_f\items\vessels\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_FlatTV_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_ChairPlastic_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_console_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GamingSet_01_controller_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class SportsGrounds_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GymBench_01_F/ (original a3\structures_f_bootcamp\civ\sportsgrounds\config.bin)
21:04:03 Updating base class SportsGrounds_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_GymRack_03_F/ (original a3\structures_f_bootcamp\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_Microwave_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_OfficeCabinet_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_OfficeChair_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_case_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_keyboard_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_mouse_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PCSet_01_screen_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Printer_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_RattanChair_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_RattanTable_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Land_Sleeping_bag_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sleeping_bag_blue_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_Sleeping_bag_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sleeping_bag_brown_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Land_Trophy_01_gold_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Trophy_01_bronze_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
21:04:03 Updating base class SportItems_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Trophy_01_gold_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
21:04:03 Updating base class Land_Trophy_01_gold_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Trophy_01_silver_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
21:04:03 Updating base class Land_Sun_chair_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sun_chair_green_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_01_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_02_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_03_F/ (original a3\structures_f_epc\civ\camping\config.bin)
21:04:03 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sunshade_F/ (original a3\structures_f\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_TablePlastic_01_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WoodenTable_large_F/ (original a3\structures_f_epa\civ\camping\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WoodenTable_small_F/ (original a3\structures_f_epa\civ\camping\config.bin)
21:04:03 Updating base class Land_OfficeTable_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/OfficeTable_01_new_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_DieselGroundPowerUnit_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_EngineCrane_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class PalletTrolley_01_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PalletTrolley_01_yellow_F/ (original a3\structures_f_heli\civ\market\config.bin)
21:04:03 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PressureWasher_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
21:04:03 Updating base class ToolTrolley_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ToolTrolley_01_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
21:04:03 Updating base class ToolTrolley_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ToolTrolley_02_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
21:04:03 Updating base class Constructions_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_WeldingTrolley_01_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Workbench_01_F/ (original a3\structures_f_heli\furniture\config.bin)
21:04:03 Updating base class Thing->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/ArrowDesk_L_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class ArrowDesk_L_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/ArrowDesk_R_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_02_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_02_grey_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_02_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_02_yellow_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_03_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_03_blue_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class Land_PlasticBarrier_03_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PlasticBarrier_03_orange_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
21:04:03 Updating base class RoadCone_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadBarrier_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadCone_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Sign_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TapeSign_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Sign_Mines_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class Land_Fridge_01_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Fridge_01_closed_F/ (original a3\structures_f_heli\items\electronics\config.bin)
21:04:03 Updating base class MetalCase_01_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_MetalCase_01_large_F/ (original a3\structures_f_heli\items\luggage\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesWooden_F/ (original a3\structures_f_epb\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesWooden_blue_F/ (original a3\structures_f\furniture\config.bin)
21:04:03 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.bin/CfgVehicles/Land_ShelvesWooden_khaki_F/ (original a3\structures_f_epb\furniture\config.bin)
21:04:03 Updating base class RoadCone_L_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadBarrier_small_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/RoadCone_L_F/ (original a3\signs_f\config.bin)
21:04:03 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_PortableHelipadLight_01_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_blue_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_blue_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_blue_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_green_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_green_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_green_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_red_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_red_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_red_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_white_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_white_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_white_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_yellow_F/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class MarkerLights->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_yellow_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class Light_1->, by extendedbase\config.bin/CfgVehicles/PortableHelipadLight_01_yellow_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Target_Dueling_01_F/ (original a3\structures_f_mark\training\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/Land_Target_Oval_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.bin/CfgVehicles/TargetP_Inf_F/ (original a3\structures_f\training\config.bin)
21:04:03 Updating base class ->rhsusf_assault_eagleaiii_ucp, by rhsusf\addons\rhsusf_c_troops\config.bin/CfgVehicles/rhsusf_assault_eagleaiii_ocp/ (original rhsusf\addons\rhsusf_c_troops\config.bin)
21:04:03 Updating base class ->RscStandardDisplay, by x\cba\addons\help\config.bin/RscDisplayMain/ (original bin\config.bin)
21:04:03 Updating base class ->Plane_Civil_01_base_F, by a3\air_f_exp\plane_civil_01\config.bin/CfgVehicles/C_Plane_Civil_01_F/ (original a3\air_f_exp\plane_civil_01\config.bin)
21:04:03 Updating base class ->VTOL_01_infantry_base_F, by a3\air_f_exp\vtol_01\config.bin/CfgVehicles/B_T_VTOL_01_infantry_F/ (original a3\air_f_exp\vtol_01\config.bin)
21:04:03 Updating base class ->VTOL_01_vehicle_base_F, by a3\air_f_exp\vtol_01\config.bin/CfgVehicles/B_T_VTOL_01_vehicle_F/ (original a3\air_f_exp\vtol_01\config.bin)
21:04:03 Updating base class ->Boat_Transport_02_base_F, by a3\boat_f_exp\boat_transport_02\config.bin/CfgVehicles/B_G_Boat_Transport_02_F/ (original a3\boat_f_exp\boat_transport_02\config.bin)
21:04:03 Updating base class ->Scooter_Transport_01_base_F, by a3\boat_f_exp\scooter_transport_01\config.bin/CfgVehicles/C_Scooter_Transport_01_F/ (original a3\boat_f_exp\scooter_transport_01\config.bin)
21:04:04 Updating base class ->SoundsExt, by rhsusf\addons\rhsusf_c_a2port_air\config.bin/CfgVehicles/Heli_Transport_01_base_F/SoundsExt/ (original a3\air_f_beta\heli_transport_01\config.bin)
21:04:04 Updating base class ->asdg_SlotInfo, by x\cba\addons\jr\config.bin/asdg_OpticRail/ (original x\cba\addons\jr\config.bin)
21:04:04 Updating base class ->asdg_MuzzleSlot, by x\cba\addons\jr\config.bin/asdg_MuzzleSlot_762/ (original x\cba\addons\jr\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_RU556/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_rifle_RU556, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_RU5562/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_M4/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_Colt727/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_ar15_base, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_SAMR/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_rifle_SAMR, by hlc_wp_AR15\config.bin/CfgWeapons/hlc_rifle_samr2/ (original hlc_wp_AR15\config.bin)
21:04:04 Updating base class ->hlc_aug_base, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aug/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1_t/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1_b/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1carb/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga1carb, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1carb_B/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga1carb, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga1carb_t/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aughbar/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aughbar, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aughbar_B/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aughbar, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_aughbar_t/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_aug, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_bl/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_b/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_GL/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3_GL, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_GL_BL/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_rifle_auga3_GL, by hlc_wp_aug\config.bin/CfgWeapons/hlc_rifle_auga3_GL_B/ (original hlc_wp_aug\config.bin)
21:04:04 Updating base class ->hlc_fal_base, by hlc_WP_FAL\config.bin/CfgWeapons/hlc_rifle_FAL5061Rail/ (original hlc_WP_FAL\config.bin)
21:04:04 Updating base class ->hlc_rifle_FAL5061Rail, by hlc_WP_FAL\config.bin/CfgWeapons/hlc_rifle_FAL5000Rail/ (original hlc_WP_FAL\config.bin)
21:04:04 Updating base class ->hlc_G36_base, by hlc_wp_g36\config.bin/CfgWeapons/hlc_rifle_G36A1/ (original hlc_wp_g36\config.bin)
21:04:04 Updating base class ->hlc_G36_base, by hlc_wp_g36\config.bin/CfgWeapons/hlc_rifle_G36C/ (original hlc_wp_g36\config.bin)
21:04:04 Updating base class optic_Aco->optic_Arco, by hlc_wp_g3\config.bin/CfgWeapons/hlc_optic_ZF4xBase/ (original hlc_core\config.bin)
21:04:04 Updating base class ->hlc_g3_base, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3sg1/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_g3_base, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_psg1/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_rifle_g3sg1, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3a3/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_rifle_g3a3, by hlc_wp_g3\config.bin/CfgWeapons/hlc_rifle_g3a3ris/ (original hlc_wp_g3\config.bin)
21:04:04 Updating base class ->hlc_M14_base, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M14/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_M14, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M14_Rail/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_M14_base, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M21/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_M21, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M21_Rail/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_M21, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_m14dmr/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_rifle_m14dmr, by hlc_wp_m14\config.bin/CfgWeapons/hlc_rifle_M14dmr_Rail/ (original hlc_wp_m14\config.bin)
21:04:04 Updating base class ->hlc_lmg_minimi_railed, by hlc_wp_saw\config.bin/CfgWeapons/hlc_m249_pip1/ (original hlc_wp_saw\config.bin)
21:04:04 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin)
21:04:04 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin)
21:04:04 Updating base class burlap->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_BurlapSack/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_blk->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Black/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_red->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Red/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_grn->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Green/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_wht->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_White/ (original exile_client\config.bin)
21:04:04 Updating base class spraycan_blu->Exile_AbstractItem, by exitems\config.bin/CfgMagazines/Exile_Item_SprayCan_Blue/ (original exile_client\config.bin)
21:04:04 Updating base class Exile_Construction_Abstract_Static->Land_MetalBarrel_empty_F, by x\cba\addons\xeh\config.bin/CfgVehicles/MetalBarrel_burning_F/ (original (a3\structures_f\items\vessels\config.bin - no unload))
21:04:04 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin)
21:04:04 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin)
21:04:04 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin)
21:04:04 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by LAxemann\L_ES\addons\ES_sys\config.bin/CfgWeapons/SMG_02_base_F/ (original (a3\weapons_f\smgs\smg_02\config.bin - no unload))
21:04:04 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by LAxemann\L_ES\addons\ES_sys\config.bin/CfgWeapons/SMG_01_base/ (original (a3\weapons_f\smgs\smg_01\config.bin - no unload))
21:04:04 Updating base class Rifle_Short_Base_F->Rifle_Base_F, by LAxemann\L_ES\addons\ES_sys\config.bin/CfgWeapons/pdw2000_base_F/ (original (a3\weapons_f\smgs\pdw2000\config.bin - no unload))
21:04:05 Updating base class ->Attributes, by rhsafrf\addons\rhs_c_a2port_armor\config.bin/CfgVehicles/rhs_btr_base/Attributes/ (original rhsafrf\addons\rhs_c_btr\config.bin)
21:04:06 Initializing Steam Manager
21:04:06 Steam Manager initialized.
21:04:06 
21:04:06 ==== Loaded addons ====
21:04:06 
21:04:06 dta\bin.pbo - 143869
21:04:06 dta\core.pbo - 109319
21:04:06 dta\languagecore_f.pbo - 124255
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\dbo_old_bike.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_assets.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_client.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_danny_items.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_an2.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_brdm.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_btr40.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_gaz_volha.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_hmmw.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_ikarus.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_lada.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_lrc.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_octavia.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_suvarm_a3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_suv_a3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_towtractor.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_tractor.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_uaz.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_uh1h.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_ural.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_v3s.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_vwgolf.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\exile_psycho_weapons.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile\addons\gnt_c185.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_a1always_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_a1_editorobjects.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_a2_editorobjects.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_aia_compat.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_baseconfig_f.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_buildings.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_a10_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air3_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_d_baf_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_air_pmc_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_animals2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings2_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_buildings_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_acr.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ca_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_characters2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_cti_buildings.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_data.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_data_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_data_baf_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_hotfix.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_hotfix_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_l39_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_acr.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_language_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc3.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc3_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_acr.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_acr_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_baf.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_e_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_misc_rtm2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_mp_armory_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants_e2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_plants_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_roads_rtm2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_rocks.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_rocks2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_rocks_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_signs.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_signs2.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_signs_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_c_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_e.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_e_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_pmc.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_structures_pmc_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_tracked2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_tracked_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_tracked_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_uifonts.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_ui_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_water2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_water_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_pmc_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_wheeled2_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_wheeled_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ca_wheeled_e_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_core.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dbe1_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dbe1_models_dbe1.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dbe1_models_dbe1_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_editor_c.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_hsim_data_h_dummy.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_hsim_languagemissions_h.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_hsim_language_h.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_ibr_plants.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_plants.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_terrains_core.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_weather.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core\addons\cup_terrains_worlds.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement\addons\babe_core.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement\addons\babe_em.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement\addons\babe_int.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Base_Mod\addons\extendedbase.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_anims.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_bp.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_characters.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_compatibility.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_dsr.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_dummy.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_structures.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile\addons\exitems_weapons.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_core.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_acr.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_ak.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_ar15.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_aug.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_fal.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_fhawc.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_fn3011.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_g3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_g36.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_m14.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_m60e4.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_mg3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_minigun.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_mp5.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_p226.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_saw.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_sigamt.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One\addons\hlc_wp_springfield.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\essgoggles.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\kio_balaclava.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\shemagh.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\tryk_backpack.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\tryk_uniforms.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\tryk_unit.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]\addons\zara.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_2s3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_2s3_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_armor_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a2port_car_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_a3retex.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_accessory.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_aps.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmd.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmd_34.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmd_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp3_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_bmp_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr70.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr70_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr80.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_btr80_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_2s3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_a3retex.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmd.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmd_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmp.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_bmp3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_btr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_btr70_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_cars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_cti_indep.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_identity.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_kamaz.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_mi28.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_mig29.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_pts.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_radars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_rva.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_sprut.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_t72.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_tanks.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_troops.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_trucks.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_c_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_decals.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_editorpreviews.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_gaz66.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_gaz66_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_identity.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_infantry.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_infantry2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_kamaz.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_main.pbo - RedHammerStudios.0.4.4
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_mi28.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_mig29.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_missions.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_mtlb.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_muzzleflash.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_optics.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_pts.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_radars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_servicemenu.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_sprut.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_ss21.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_ss21_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_s_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t72.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t72_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t80.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t80u.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_t80u_camo.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_tigr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_vehiclesounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapons2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapons3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF\addons\rhs_weapon_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Temp fix for exile miniguns\addons\sad_minigun_fix.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_air2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_caiman.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_cars.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_ch53.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_a2port_air.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_a2port_armor.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_a2port_car.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_airweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_caiman.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_ch53.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_f22.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_fmtv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_hemtt_a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_hemtt_a4.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_hmmwv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_identity.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m109.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m1117.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m113.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m1a1.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m1a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_m252.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_markvsoc.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_melb.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_mrzr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_mtvr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_rg33.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_rg33l.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_statics.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_troops.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_uav.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_c_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_decals.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_editorpreviews.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_f22.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_fmtv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_heavyweapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_hemtt_a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_hemtt_a4.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_hmmwv.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_infantry.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_infantry2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m109.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m1117.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m113.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m1a1.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m1a2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_m252.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_main.pbo - RedHammerStudios.0.4.4
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_markvsoc.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_melb.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_mrzr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_mtvr.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_mtvr_tx.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_muzzleflash.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_optics.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_rg33.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_rg33l.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_scopes.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_s_radio.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_uav.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapons.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapons2.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapons3.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_weapon_sounds.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF\addons\rhsusf_xmas.pbo - RedHammerStudios
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_bus.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_challenger.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_cobrar.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_data.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_fireengine.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_landcruiser.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_m5t.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_outsider.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_patrol.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars\addons\fox_r34.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux.pbo - 17121623
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_animals.pbo - 17100418
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_buildings.pbo - 17121618
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_bushes.pbo - 17100220
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_c.pbo - 17121618
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_chz.pbo - 17100321
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_clutter.pbo - 17100222
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_data.pbo - 17121618
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_layers.pbo - 17100220
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_ponds.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_sounds.pbo - 17093000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux\addons\chernarusredux_trees.pbo - 17092923
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Zombies and Demons\addons\ryanzombies.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@DS Houses\addons\ds_houses.pbo - 00000000
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_accessory.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_ai.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_arrays.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_common.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_diagnostic.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_events.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_hashes.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_help.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_jr.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_jr_prep.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_keybinding.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_main.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_main_a3.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_modules.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_music.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_network.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_settings.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_statemachine.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_strings.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_ui.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_ui_helper.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_vectors.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_versioning.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3\addons\cba_xeh.pbo - 945b81e3
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape\addons\es_main.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape\addons\es_sounds.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape\addons\es_sys.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\characters_f_tacops.ebo - 124006
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\data_f_tacops.ebo - 124116
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\dubbing_f_tacops.ebo - 123940
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\functions_f_tacops.ebo - 124108
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\languagemissions_f_tacops.ebo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\language_f_tacops.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\missions_f_tacops.ebo - 124106
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\modules_f_tacops.ebo - 123979
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\music_f_tacops.ebo - 124064
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\sounds_f_tacops.ebo - 123795
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops\addons\ui_f_tacops.ebo - 124116
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\air_f_orange.ebo - 123266
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\cargoposes_f_orange.ebo - 121102
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\characters_f_orange.ebo - 123851
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\data_f_orange.ebo - 121095
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\dubbing_f_orange.ebo - 121689
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\editorpreviews_f_orange.ebo - 123173
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\functions_f_orange.ebo - 120507
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\languagemissions_f_orange.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\language_f_orange.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\missions_f_orange.ebo - 124054
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\modules_f_orange.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\music_f_orange.ebo - 120725
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\props_f_orange.ebo - 121424
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\soft_f_orange.ebo - 124032
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\sounds_f_orange.ebo - 122301
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\structures_f_orange.ebo - 121553
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\supplies_f_orange.ebo - 120744
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\ui_f_orange.ebo - 123398
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange\addons\weapons_f_orange.ebo - 123493
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\armor_f_argo.pbo - 119456
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\characters_f_patrol.pbo - 120167
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\data_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\data_f_patrol.pbo - 121287
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\editorpreviews_f_argo.pbo - 121102
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\functions_f_patrol.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\languagemissions_f_patrol.pbo - 124115
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\language_f_argo.pbo - 124115
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\language_f_patrol.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden.pbo - 123497
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden_data.pbo - 123428
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden_data_layers.pbo - 123441
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\map_malden_scenes_f.pbo - 120026
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\missions_f_patrol.pbo - 123402
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\modules_f_patrol.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\music_f_argo.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\props_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\rocks_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\sounds_f_patrol.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\structures_f_argo.pbo - 123495
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\ui_f_patrol.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\vegetation_f_argo.pbo - 123488
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo\addons\weapons_f_patrol.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\air_f_jets.ebo - 122456
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\anims_f_jets.ebo - 123210
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\boat_f_jets.ebo - 121465
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\cargoposes_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\characters_f_jets.ebo - 120162
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\data_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\dubbing_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\editorpreviews_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\functions_f_jets.ebo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\languagemissions_f_jets.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\language_f_jets.ebo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\missions_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\modules_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\music_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\props_f_jets.ebo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\sounds_f_jets.ebo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\static_f_jets.ebo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\ui_f_jets.ebo - 123398
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets\addons\weapons_f_jets.ebo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\air_f_exp.pbo - 123077
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\anims_f_exp.pbo - 123208
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\armor_f_exp.pbo - 122301
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\boat_f_exp.pbo - 123046
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\cargoposes_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\characters_f_exp.pbo - 122887
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\data_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp.pbo - 119458
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\editorpreviews_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\functions_f_exp.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\languagemissions_f_exp.pbo - 124111
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\language_f_exp.pbo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_data_exp.pbo - 123499
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka.pbo - 123528
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka_data.pbo - 123523
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka_data_layers.pbo - 121192
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\map_tanoa_scenes_f.pbo - 123527
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\missions_f_exp.pbo - 122734
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\missions_f_exp_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\missions_f_exp_video.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\modules_f_exp.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\music_f_exp.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\music_f_exp_music.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\props_f_exp.pbo - 123522
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\rocks_f_exp.pbo - 119519
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\soft_f_exp.pbo - 124032
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\sounds_f_exp.pbo - 124103
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\static_f_exp.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp.pbo - 123419
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_civilian.pbo - 123425
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_commercial.pbo - 123430
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_cultural.pbo - 123423
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_data.pbo - 123431
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_industrial.pbo - 123429
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\structures_f_exp_infrastructure.pbo - 123432
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\supplies_f_exp.pbo - 119865
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\ui_f_exp.pbo - 123398
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\vegetation_f_exp.pbo - 121192
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion\addons\weapons_f_exp.pbo - 123709
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\anims_f_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\characters_f_mark.pbo - 120163
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\data_f_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\dubbing_f_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\dubbing_f_mp_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\functions_f_mark.pbo - 122467
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\functions_f_mp_mark.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\languagemissions_f_mark.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\languagemissions_f_mp_mark.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\language_f_mark.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\language_f_mp_mark.pbo - 124115
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mark.pbo - 122301
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mark_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mark_video.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mp_mark.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\missions_f_mp_mark_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\modules_f_mark.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\modules_f_mp_mark.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\music_f_mark.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\music_f_mark_music.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\sounds_f_mark.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\static_f_mark.pbo - 122307
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\structures_f_mark.pbo - 123419
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\supplies_f_mark.pbo - 120112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\ui_f_mark.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\ui_f_mp_mark.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark\addons\weapons_f_mark.pbo - 122681
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\air_f_heli.pbo - 123312
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\anims_f_heli.pbo - 123210
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\boat_f_heli.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\cargoposes_f_heli.pbo - 123912
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\data_f_heli.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\dubbing_f_heli.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\functions_f_heli.pbo - 123022
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\languagemissions_f_heli.pbo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\language_f_heli.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\missions_f_heli.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\missions_f_heli_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\missions_f_heli_video.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\modules_f_heli.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\music_f_heli.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\music_f_heli_music.pbo - 119477
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\soft_f_heli.pbo - 121447
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\sounds_f_heli.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\structures_f_heli.pbo - 121553
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\supplies_f_heli.pbo - 121339
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli\addons\ui_f_heli.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\anims_f_kart.pbo - 123210
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\characters_f_kart.pbo - 120162
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\data_f_kart.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\languagemissions_f_kart.pbo - 124112
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\language_f_kart.pbo - 124113
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\missions_f_kart.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\missions_f_kart_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\modules_f_kart.pbo - 119510
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\modules_f_kart_data.pbo - 119459
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\soft_f_kart.pbo - 124032
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\sounds_f_kart.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\structures_f_kart.pbo - 123419
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\ui_f_kart.pbo - 119478
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart\addons\weapons_f_kart.pbo - 120217
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\data_f_curator.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\data_f_curator_music.pbo - 119457
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\functions_f_curator.pbo - 123333
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\language_f_curator.pbo - 124116
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\missions_f_curator.pbo - 121570
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\modules_f_curator.pbo - 124043
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator\addons\ui_f_curator.pbo - 123831
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_dms.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_exile_occupation-development.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_exile_occupation.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\a3_infistar_exile_customapps.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\claimvehicles_server.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exad_core.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exad_vg.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exilez_mod.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exile_custom_difficulty.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exile_server.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\exile_server_config.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\extdb3.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\addons\marxet_server.pbo - unknown
21:04:06 C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile\addons\a3_infistar_exile.pbo - unknown
21:04:06 addons\3den.pbo - 123729
21:04:06 addons\3den_language.pbo - 124115
21:04:06 addons\a3.pbo - unknown
21:04:06 addons\air_f.pbo - 124040
21:04:06 addons\air_f_beta.pbo - 124040
21:04:06 addons\air_f_epb.pbo - 122783
21:04:06 addons\air_f_epc.pbo - 122779
21:04:06 addons\air_f_gamma.pbo - 122454
21:04:06 addons\animals_f.pbo - 123417
21:04:06 addons\animals_f_beta.pbo - 123208
21:04:06 addons\anims_f.pbo - 123109
21:04:06 addons\anims_f_bootcamp.pbo - 123209
21:04:06 addons\anims_f_data.pbo - 123109
21:04:06 addons\anims_f_epa.pbo - 123209
21:04:06 addons\anims_f_epc.pbo - 121358
21:04:06 addons\anims_f_exp_a.pbo - 123209
21:04:06 addons\armor_f.pbo - 119457
21:04:06 addons\armor_f_beta.pbo - 124054
21:04:06 addons\armor_f_epb.pbo - 124054
21:04:06 addons\armor_f_epc.pbo - 122765
21:04:06 addons\armor_f_gamma.pbo - 124055
21:04:06 addons\baseconfig_f.pbo - 119457
21:04:06 addons\boat_f.pbo - 123357
21:04:06 addons\boat_f_beta.pbo - 123357
21:04:06 addons\boat_f_epc.pbo - 119457
21:04:06 addons\boat_f_gamma.pbo - 123329
21:04:06 addons\cargoposes_f.pbo - 119457
21:04:06 addons\characters_f.pbo - 123944
21:04:06 addons\characters_f_beta.pbo - 123759
21:04:06 addons\characters_f_bootcamp.pbo - 123475
21:04:06 addons\characters_f_epa.pbo - 120161
21:04:06 addons\characters_f_epb.pbo - 120161
21:04:06 addons\characters_f_epc.pbo - 123851
21:04:06 addons\characters_f_gamma.pbo - 120293
21:04:06 addons\data_f.pbo - 124040
21:04:06 addons\data_f_bootcamp.pbo - 119457
21:04:06 addons\data_f_exp_a.pbo - 119457
21:04:06 addons\data_f_exp_b.pbo - 119457
21:04:06 addons\drones_f.pbo - 124040
21:04:06 addons\dubbing_f.pbo - 119457
21:04:06 addons\dubbing_f_beta.pbo - 119457
21:04:06 addons\dubbing_f_bootcamp.pbo - 119457
21:04:06 addons\dubbing_f_epa.pbo - 119457
21:04:06 addons\dubbing_f_epb.pbo - 119457
21:04:06 addons\dubbing_f_epc.pbo - 119457
21:04:06 addons\dubbing_f_gamma.pbo - 122449
21:04:06 addons\dubbing_radio_f.pbo - 119457
21:04:06 addons\dubbing_radio_f_data_eng.pbo - 119457
21:04:06 addons\dubbing_radio_f_data_engb.pbo - 119458
21:04:06 addons\dubbing_radio_f_data_gre.pbo - 119458
21:04:06 addons\dubbing_radio_f_data_per.pbo - 119458
21:04:06 addons\dubbing_radio_f_data_vr.pbo - 119458
21:04:06 addons\editorpreviews_f.pbo - 124116
21:04:06 addons\editor_f.pbo - 121103
21:04:06 addons\functions_f.pbo - 124042
21:04:06 addons\functions_f_bootcamp.pbo - 124071
21:04:06 addons\functions_f_epa.pbo - 119458
21:04:06 addons\functions_f_epc.pbo - 119458
21:04:06 addons\functions_f_exp_a.pbo - 122619
21:04:06 addons\languagemissions_f.pbo - 124112
21:04:06 addons\languagemissions_f_beta.pbo - 124112
21:04:06 addons\languagemissions_f_bootcamp.pbo - 124113
21:04:06 addons\languagemissions_f_epa.pbo - 124112
21:04:06 addons\languagemissions_f_epb.pbo - 124112
21:04:06 addons\languagemissions_f_epc.pbo - 124112
21:04:06 addons\languagemissions_f_exp_a.pbo - 124116
21:04:06 addons\languagemissions_f_gamma.pbo - 124112
21:04:06 addons\language_f.pbo - 124114
21:04:06 addons\language_f_beta.pbo - 124115
21:04:06 addons\language_f_bootcamp.pbo - 124113
21:04:06 addons\language_f_epa.pbo - 124111
21:04:06 addons\language_f_epb.pbo - 124114
21:04:06 addons\language_f_epc.pbo - 124111
21:04:06 addons\language_f_exp_a.pbo - 124110
21:04:06 addons\language_f_exp_b.pbo - 124111
21:04:06 addons\language_f_gamma.pbo - 124113
21:04:06 addons\map_altis.pbo - 123457
21:04:06 addons\map_altis_data.pbo - 123439
21:04:06 addons\map_altis_data_layers.pbo - 123456
21:04:06 addons\map_altis_data_layers_00_00.pbo - 0000
21:04:06 addons\map_altis_data_layers_00_01.pbo - 0000
21:04:06 addons\map_altis_data_layers_01_00.pbo - 0000
21:04:06 addons\map_altis_data_layers_01_01.pbo - 0000
21:04:06 addons\map_altis_scenes_f.pbo - 119459
21:04:06 addons\map_data.pbo - 123422
21:04:06 addons\map_stratis.pbo - 123655
21:04:06 addons\map_stratis_data.pbo - 122905
21:04:06 addons\map_stratis_data_layers.pbo - 122917
21:04:06 addons\map_stratis_scenes_f.pbo - 119459
21:04:06 addons\map_vr.pbo - 105264
21:04:06 addons\map_vr_scenes_f.pbo - 119459
21:04:06 addons\misc_f.pbo - 119459
21:04:06 addons\missions_f.pbo - 123018
21:04:06 addons\missions_f_beta.pbo - 122470
21:04:06 addons\missions_f_beta_data.pbo - 119459
21:04:06 addons\missions_f_beta_video.pbo - 119459
21:04:06 addons\missions_f_bootcamp.pbo - 119459
21:04:06 addons\missions_f_bootcamp_data.pbo - 119459
21:04:06 addons\missions_f_bootcamp_video.pbo - 119459
21:04:06 addons\missions_f_data.pbo - 119459
21:04:06 addons\missions_f_epa.pbo - 123774
21:04:06 addons\missions_f_epa_data.pbo - 119459
21:04:06 addons\missions_f_epa_video.pbo - 119459
21:04:06 addons\missions_f_epb.pbo - 119459
21:04:06 addons\missions_f_epc.pbo - 119459
21:04:06 addons\missions_f_exp_a.pbo - 121496
21:04:06 addons\missions_f_exp_a_data.pbo - 119459
21:04:06 addons\missions_f_gamma.pbo - 122934
21:04:06 addons\missions_f_gamma_data.pbo - 119459
21:04:06 addons\missions_f_gamma_video.pbo - 119459
21:04:06 addons\missions_f_video.pbo - 119459
21:04:06 addons\modules_f.pbo - 123979
21:04:06 addons\modules_f_beta.pbo - 119459
21:04:06 addons\modules_f_beta_data.pbo - 119459
21:04:06 addons\modules_f_bootcamp.pbo - 119459
21:04:06 addons\modules_f_data.pbo - 122470
21:04:06 addons\modules_f_epb.pbo - 119459
21:04:06 addons\modules_f_exp_a.pbo - 119459
21:04:06 addons\music_f.pbo - 119459
21:04:06 addons\music_f_bootcamp.pbo - 119459
21:04:06 addons\music_f_bootcamp_music.pbo - 119459
21:04:06 addons\music_f_epa.pbo - 119459
21:04:06 addons\music_f_epa_music.pbo - 119459
21:04:06 addons\music_f_epb.pbo - 119459
21:04:06 addons\music_f_epb_music.pbo - 119459
21:04:06 addons\music_f_epc.pbo - 119459
21:04:06 addons\music_f_epc_music.pbo - 119477
21:04:06 addons\music_f_music.pbo - 119477
21:04:06 addons\plants_f.pbo - 122470
21:04:06 addons\props_f_exp_a.pbo - 119459
21:04:06 addons\roads_f.pbo - 119459
21:04:06 addons\rocks_f.pbo - 122712
21:04:06 addons\signs_f.pbo - 123419
21:04:06 addons\soft_f.pbo - 124040
21:04:06 addons\soft_f_beta.pbo - 124034
21:04:06 addons\soft_f_bootcamp.pbo - 123582
21:04:06 addons\soft_f_epc.pbo - 124034
21:04:06 addons\soft_f_gamma.pbo - 124032
21:04:06 addons\sounds_f.pbo - 123459
21:04:06 addons\sounds_f_arsenal.pbo - 119477
21:04:06 addons\sounds_f_bootcamp.pbo - 119477
21:04:06 addons\sounds_f_characters.pbo - 121082
21:04:06 addons\sounds_f_environment.pbo - 120046
21:04:06 addons\sounds_f_epb.pbo - 119864
21:04:06 addons\sounds_f_epc.pbo - 119477
21:04:06 addons\sounds_f_exp_a.pbo - 119477
21:04:06 addons\sounds_f_sfx.pbo - 119477
21:04:06 addons\sounds_f_vehicles.pbo - 123211
21:04:06 addons\static_f.pbo - 122642
21:04:06 addons\static_f_beta.pbo - 122642
21:04:06 addons\static_f_gamma.pbo - 122615
21:04:06 addons\structures_f.pbo - 124041
21:04:06 addons\structures_f_bootcamp.pbo - 123488
21:04:06 addons\structures_f_data.pbo - 121694
21:04:06 addons\structures_f_epa.pbo - 123407
21:04:06 addons\structures_f_epb.pbo - 123407
21:04:06 addons\structures_f_epc.pbo - 123407
21:04:06 addons\structures_f_exp_a.pbo - 123423
21:04:06 addons\structures_f_households.pbo - 122287
21:04:06 addons\structures_f_ind.pbo - 123419
21:04:06 addons\structures_f_mil.pbo - 123655
21:04:06 addons\structures_f_wrecks.pbo - 123419
21:04:06 addons\uifonts_f.pbo - 119478
21:04:06 addons\uifonts_f_data.pbo - 119478
21:04:06 addons\ui_f.pbo - 124053
21:04:06 addons\ui_f_bootcamp.pbo - 119478
21:04:06 addons\ui_f_data.pbo - 124053
21:04:06 addons\ui_f_exp_a.pbo - 119478
21:04:06 addons\weapons_f.pbo - 123870
21:04:06 addons\weapons_f_beta.pbo - 123870
21:04:06 addons\weapons_f_bootcamp.pbo - 119478
21:04:06 addons\weapons_f_epa.pbo - 123022
21:04:06 addons\weapons_f_epb.pbo - 122682
21:04:06 addons\weapons_f_epc.pbo - 123212
21:04:06 addons\weapons_f_gamma.pbo - 120217
21:04:06 
21:04:06 =======================
21:04:06 
21:04:06 ============================================================================================= List of mods ===============================================================================================
21:04:06 modsReadOnly = true
21:04:06 safeModsActivated = false
21:04:06 customMods = true
21:04:06 hash = 'AED55BF5600F47C633D08D56A151393708C18309'
21:04:06 hashShort = 'e0deeb80'
21:04:06                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath
21:04:06 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
21:04:06                                          Exile Mod |               @Exile |      false |             GAME DIR | 4889db0a63d731985e5387b33e6e245812442446 |   16019b2 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Exile
21:04:06                          CUP Terrains - Core 1.4.2 | @CUP Terrains - Core |      false |             GAME DIR | 3e43cf6f60835dfe6d8e450bcd49eab579e096eb |   9e41eb9 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CUP Terrains - Core
21:04:06                                  Enhanced Movement |   @Enhanced Movement |      false |             GAME DIR | b03ca2f171c2c7826aa2f6f35cb81bab27664ea2 |  47cf7417 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Movement
21:04:06                                  Extended Base Mod |   @Extended_Base_Mod |      false |             GAME DIR | 42313702aaf6848e1149348033c80f155d6ebfe6 |  d57a5f73 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Base_Mod
21:04:06                              @Extended_Items_Exile | @Extended_Items_Exile |      false |             GAME DIR | aeb1472b5bcccf183a122f0d5305160ec47cfcab |  10807594 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Extended_Items_Exile
21:04:06                                          NIArsenal |   @NIArms All in One |      false |             GAME DIR | 022784945a87260f3ee2f2e7fee19f12e8dceb8f |  68d7502e | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@NIArms All in One
21:04:06                   TRYK's Multi-Play Unifrom's pack | @TRYK [TRYK's Multi-play Uniforms] |      false |             GAME DIR | aba46385af3be7b2cb5b2b50bbf92ba1438672c6 |   2118b09 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@TRYK [TRYK's Multi-play Uniforms]
21:04:06        RHS: Armed Forces of the Russian Federation |             @RHSAFRF |      false |             GAME DIR | d9933e91cdbe33a886209bc91344408701a44306 |  59ac2c65 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSAFRF
21:04:06                                    SAD Minigun Fix | @Temp fix for exile miniguns |      false |             GAME DIR | d6e3ea71ea85fc76ead0494af3e44d5fa9777988 |  96975fc4 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Temp fix for exile miniguns
21:04:06                          RHS: United States Forces |             @RHSUSAF |      false |             GAME DIR | ee2f45071a28b77147e0298d2a44d9edaff8c6e1 |  31106ae3 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@RHSUSAF
21:04:06                                   Fox SurvivalCars |    @Fox_SurvivalCars |      false |             GAME DIR | ce69ebd6bdc6af9250bae8a20edc356daf1cffd9 |  b37f41e5 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Fox_SurvivalCars
21:04:06                                    Chernarus Redux |     @Chernarus Redux |      false |             GAME DIR | 651893a4833bf13011e91a205fad1d141a16699b |  30d2c122 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Chernarus Redux
21:04:06                            Ryan's Zombies & Demons |  @Zombies and Demons |      false |             GAME DIR | a8e40ba92bbdc0eed3beaad1536a841396a2083d |  62057cac | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Zombies and Demons
21:04:06                                          DS Houses |           @DS Houses |      false |             GAME DIR | d3cd43652f8b5fe347fdf7011e805b6237b98753 |  6a77c533 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@DS Houses
21:04:06                         Community Base Addons v3.5 |              @CBA_A3 |      false |             GAME DIR | a6957c17163522f3055b61fa72208a1e95d0c8be |  b54b08cd | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@CBA_A3
21:04:06                                Enhanced Soundscape | @Enhanced Soundscape |      false |             GAME DIR | d546d6c49fd2c3411567850e7fab28c698e01ae0 |  7ad6b2cb | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@Enhanced Soundscape
21:04:07                                Arma 3 DLC Bundle 2 |           dlcbundle2 |       true |            NOT FOUND |                                          |           | 
21:04:07                                Arma 3 DLC Bundle 1 |            dlcbundle |       true |            NOT FOUND |                                          |           | 
21:04:07                                     Arma 3 Tac-Ops |               tacops |       true |             GAME DIR | f1dc09577c3e9808b7aa2c87d830a2b26a6b5fee |  fa26d009 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\tacops
21:04:07                                 Arma 3 Laws of War |               orange |       true |             GAME DIR | 4218684688ce66df818f107e2f95c59a26323121 |  b3b9582b | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\orange
21:04:07                                      Arma 3 Malden |                 argo |       true |             GAME DIR | 05003900123009df799f674dab222647cc0cc676 |  36610ff1 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\argo
21:04:07                                        Arma 3 Jets |                 jets |       true |             GAME DIR | 8d1003272f4550977c09f9c3de192339a29268ad |  5d2e6b70 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\jets
21:04:07                                        Arma 3 Apex |            expansion |       true |             GAME DIR | ed1b8b914be28b134d041da7deebf7b5b68e6ed3 |  ed5a9be7 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\expansion
21:04:07                                    Arma 3 Marksmen |                 mark |       true |             GAME DIR | e405dfd48cf0dc78bc48e630f5065676723be5df |  d0f859df | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\mark
21:04:07                                 Arma 3 Helicopters |                 heli |       true |             GAME DIR | abbb58afcd71da8d6f39462585ce554c2bde319e |  3b66e8c1 | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\heli
21:04:07                                       Arma 3 Karts |                 kart |       true |             GAME DIR | 0a38a8eedccec3bd371c52470ecfbc300bce7e26 |  5248a2ba | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\kart
21:04:07                                        Arma 3 Zeus |              curator |       true |             GAME DIR | e9e394b64efe10fcde232d90ae425eb377c62b16 |  42741b1b | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\curator
21:04:07                                             Arma 3 |                   A3 |       true |            NOT FOUND |                                          |           | 
21:04:07                                       @ExileServer |         @ExileServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer
21:04:07                                    @infiSTAR_Exile |      @infiSTAR_Exile |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile
21:04:07 ==========================================================================================================================================================================================================
21:04:07 InitSound ...
21:04:07 InitSound - complete
21:04:07 PhysX3 SDK Init started ...
21:04:07 PhysX3 SDK Init ended.
21:04:10 [0,25.413,0,"XEH: PreStart started."]
21:04:10 [0,25.601,0,"XEH: PreStart finished."]
21:04:10 [XEH]: Car does not support Extended Event Handlers! Addon: @CUP Terrains - Core
21:04:10 [XEH]: Tank does not support Extended Event Handlers! Addon: @CUP Terrains - Core
21:04:10 [XEH]: Air does not support Extended Event Handlers! Addon: @Enhanced Movement
21:04:10 [XEH]: GNT_C185wreck does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: GNT_C185 does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: GNT_C185F does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Ryanzombieslogiceasy does not support Extended Event Handlers! Addon: @Zombies and Demons
21:04:10 [XEH]: Ryanzombieslogicspawnfast1opfor does not support Extended Event Handlers! Addon: @Zombies and Demons
21:04:10 [XEH]: rhs_2P3_1 does not support Extended Event Handlers! Addon: @RHSAFRF
21:04:10 [XEH]: rhs_mig29s_base does not support Extended Event Handlers! Addon: @RHSAFRF
21:04:10 [XEH]: Exile_Cutscene_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Guard_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_PopTabs does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Trader_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Effect_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Effect_Flies does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Exile_Animal_Abstract does not support Extended Event Handlers! Addon: @Exile
21:04:10 [XEH]: Target_Swivel_01_ground_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: TargetP_Inf_Acc2_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: TargetBootcampHuman_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: MetalBarrel_burning_F_Preview does not support Extended Event Handlers! Addon: @Extended_Base_Mod
21:04:10 [XEH]: B_Patrol_Respawn_tent_F does not support Extended Event Handlers! Addon: argo
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:10 Warning Message: No entry '.scope'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:10 Warning Message: No entry '.displayName'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.nameSound'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.type'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.picture'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.Library'.
21:04:10 Warning Message: No entry '.libTextDesc'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.model'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.simulation'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDuration'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightIntensity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.fireLightDiffuse'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.fireLightAmbient'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.weaponLockDelay'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weaponLockSystem'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.cmImmunity'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.weight'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.lockingTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.lockedTargetSound'.
21:04:10 Warning Message: Size: '/' not an array
21:04:10 Warning Message: No entry '.detectRange'.
21:04:10 Warning Message: '/' is not a value
21:04:10 Warning Message: No entry '.muzzles'.
21:04:10 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:11 Warning Message: No entry '.scope'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:11 Warning Message: No entry '.displayName'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.nameSound'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.type'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.picture'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.Library'.
21:04:11 Warning Message: No entry '.libTextDesc'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.model'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.simulation'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDuration'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightIntensity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.fireLightDiffuse'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.fireLightAmbient'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.weaponLockDelay'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weaponLockSystem'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.cmImmunity'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.weight'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.lockingTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.lockedTargetSound'.
21:04:11 Warning Message: Size: '/' not an array
21:04:11 Warning Message: No entry '.detectRange'.
21:04:11 Warning Message: '/' is not a value
21:04:11 Warning Message: No entry '.muzzles'.
21:04:11 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:12 Warning Message: No entry '.scope'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:12 Warning Message: No entry '.displayName'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.nameSound'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.type'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.picture'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.Library'.
21:04:12 Warning Message: No entry '.libTextDesc'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.model'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.simulation'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDuration'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightIntensity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.fireLightDiffuse'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.fireLightAmbient'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.weaponLockDelay'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weaponLockSystem'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.cmImmunity'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.weight'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.lockingTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.lockedTargetSound'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: No entry '.detectRange'.
21:04:12 Warning Message: '/' is not a value
21:04:12 Warning Message: No entry '.muzzles'.
21:04:12 Warning Message: Size: '/' not an array
21:04:12 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
a3_characters_f
21:04:12 Loading movesType CfgGesturesMale
21:04:12 Creating action map cache
21:04:12 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:12 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 MovesType CfgGesturesMale load time 592 ms
21:04:13 Loading movesType CfgMovesMaleSdr
21:04:13 Reading cached action map data
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
21:04:13 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
21:04:14 Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\sittingchair\hubsittingchaira_idle1.rtm differs (looped now 1)! MoveName: exile_roulettesitting01
21:04:14 MovesType CfgMovesMaleSdr load time 1679 ms
21:04:15 VoteThreshold must be in 0..1 range. Defaulting to 0.5
21:04:15 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
21:04:15 Steam AppId from steam_appid.txt: 107410
21:04:15 Unsupported language English in stringtable
21:04:15 Unsupported language English in stringtable
21:04:15 Starting mission:
21:04:15  Mission file: Exile (__cur_mp)
21:04:15  Mission world: ChernarusRedux
21:04:15  Mission directory: mpmissions\__cur_mp.ChernarusRedux\
21:04:21 No more slot to add connection at 036072 (3642.7,8100.2)
21:04:21 No more slot to add connection at 046127 (4674.8,2605.5)
21:04:21 No more slot to add connection at 053067 (5363.6,8571.2)
21:04:21 No more slot to add connection at 130045 (13086.6,10791.6)
21:04:21 Land_Cargo_House_V2_F: door_1_rot - unknown animation source door_1_sound_source
21:04:21 Land_Cargo_House_V2_F: door_1_locked_rot - unknown animation source door_1_locked_source
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend4) in ds_houses\derevnya\a2_housev_1l2\d_housev_1l2.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionbegin7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionbegin7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend7) in ds_houses\derevnya\a2_housev_2l\d_housev_2l.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend3) in ds_houses\derevnya\a2_housev_3i2\d_housev_3i2.p3d
21:04:22 Warning: Unaccessible ladder point for AI (already used for actionend3) in ds_houses\derevnya\a2_housev_3i2\d_housev_3i2.p3d
21:04:23 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:23 Bad simulation fire, type Land_FirePlace_F (class=house), a3\structures_f\civ\camping\fireplace_f.p3d
21:04:24 Bad simulation fire, type Land_FirePlace_F (class=house), a3\structures_f\civ\camping\fireplace_f.p3d
21:04:24 Bad simulation fire, type Land_FirePlace_F (class=house), a3\structures_f\civ\camping\fireplace_f.p3d
21:04:24 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:24 Sewer_Dead_End_Bones: Invalid parent bone 'camo2' for 'camo1'
21:04:24 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:24 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:25 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [BIS_fnc_preload] ----- Initializing scripts in Exile -----"
21:04:25 No speaker given for 
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [recompile] recompile BIS_fnc_missionTasksLocal"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [recompile] recompile BIS_fnc_missionConversationsLocal"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [recompile] recompile BIS_fnc_missionFlow"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_feedbackMain (0 ms)"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_missionHandlers (0 ms)"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_storeParamsValues (0 ms)"
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ""DeltaTime computation started"""
21:04:25 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_keyframeAnimation_deltaTime (0 ms)"
21:04:25 CallExtension loaded: updatearmalog (C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile\updatearmalog_x64.dll) [1.0.0.0] [1.0.0.0]

21:04:26 "<infiSTAR.de> updatearmalog callExtension: [30.01.2018][21:04:26] Downloaded and installed new armalog_x64.dll"
21:04:26 CallExtension loaded: armalog (C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@infiSTAR_Exile\armalog_x64.dll) [1.0.0.0] [1.0.0.0]

21:04:35 Warning: 8943 ms spent in callExtension calling name: "armalog", function: "14787f0f07d55&l=f38fffcdc388d836e6729df9ca7ced68&sn=[91,84,73,82,78,65,93,32,69,88,73,76,69,45,68,65,89,90,32,124,32,67,72,69,82,78,65,82,85,83,45,82,69,68,85,88,32,124,32,83,85,82,86,73,86,65,76,32,124,32,66,76,85,69,80,82,73,78,84,32,124,32,77,73,83,83,73,79,78,32,67,85,83,84,79,77,32,124,32,84,82,65,68,69,82,32,67,85,83,84,79,77,32,32,124,32,66,65,83,69,83,80,65,87,78,45,80,65,73,78,84,45,78,79,32,71,82,73,78,68,47,84,72,69,82,77,65,76,32,124,32,54,48,70,80,83]"
21:04:35 "<infiSTAR.de> infiSTAR dll loaded successfully"
21:04:35 "<infiSTAR.de> [TIRNA] EXILE-DAYZ | CHERNARUS-REDUX | SURVIVAL | BLUEPRINT | MISSION CUSTOM | TRADER CUSTOM  | BASESPAWN-PAINT-NO GRIND/THERMAL | 60FPS"
21:04:35 "<infiSTAR.de> License accepted!"
21:04:35 "<infiSTAR.de> Loading infiSTAR code.."
21:04:35 CallExtension loaded: extDB3 (C:\Users\DEVELOPPEMENT\Desktop\TIRNA EXILE\steamapps\common\Arma 3 Server\@ExileServer\extDB3_x64.dll) [1.0.3.1] [1.0.3.1]

21:04:35 "<infiSTAR.de> 0 - checking for EXILE_SERVER.."
21:04:35 "<infiSTAR.de> 0 - EXILE_SERVER has been found."
21:04:35 "<infiSTAR.de> 0 - checking for Cfg_infiSTAR_settings.."
21:04:35 "<infiSTAR.de> 0 - Cfg_infiSTAR_settings has been found."
21:04:35 "<infiSTAR.de> 0 - TESTING IF serverCommandPassword IS SET PROPERLY"
21:04:35 "<infiSTAR.de> 0 - serverCommandPassword IS FINE"
21:04:35 "<infiSTAR.de> 0 - STARTUP - including AdminTools"
21:04:35 "<infiSTAR.de> 0 - STARTUP - AdminTools included!"
21:04:35 "<infiSTAR.de> 0 - STARTUP - including AntiHack"
21:04:35 "<infiSTAR.de> 0 - VERSION: 18-01-2018 14-36-36 - v90"
21:04:35 "<infiSTAR.de> 0 - adding valid admin uid 76561198184549166"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid ..."
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID1"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid ..."
21:04:35 "<infiSTAR.de> 0 - adding valid admin uid 76561197976459949"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
21:04:35 "<infiSTAR.de> 0 - removing invalid admin uid ..."
21:04:35 "<infiSTAR.de> _fnc_RandomGen: {
private '_gen';
_fnc_actualGen = {
_start	= ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_main	= ['a','f','3','8','f','f','f','c','d','c','3','8','8','d','8','3','6','e','6','7','2','9','d','f','9','c','a','7','c','e','d','6','8'];
_filler	= ['1','2','3','4','5','6','7','8','9','0','_','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'];
_gen = selectRandom _start;
_randmax = {((round(random _randminval)) + (round(random _randmaxval))) max _randminval};
for '_i' from 0 to (call _randmax)do
{
_gen = _gen + (selectRandom _filler) + (selectRandom _main);
};
_gen
};
for '_i' from 0 to 10000 do
{
_gen = call _fnc_actualGen;
_index = _allRandomGenVars pushBackUnique _gen;
if(_index > -1)exitWith{_gen};
};
_gen
}"
21:04:35 "<infiSTAR.de> 0 - loading AntiHack.."
21:04:35 "<infiSTAR.de> 0 - Thread MAIN: none-threaded code compiled and/or sent!"
21:04:35 "<infiSTAR.de> 0 - VoteTimeServer compiled"
21:04:35 "<infiSTAR.de> 0 - Thread BEFORE MAIN: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - Thread BEFORE MAIN: added !"
21:04:35 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: added !"
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: added !"
21:04:35 "<infiSTAR.de> 0 - fnc_AdminReqReal: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - fnc_AdminReqReal: added !"
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: added !"
21:04:35 "<infiSTAR.de> 0 - adminStartupCode: adding to main string.."
21:04:35 "<infiSTAR.de> 0 - adminStartupCode: added !"
21:04:35 "<infiSTAR.de> 0 - Thread #1: Preparing Server Loop #1.."
21:04:35 "<infiSTAR.de> 0 - Thread #1: added !"
21:04:35 "<infiSTAR.de> 0 - compiling AntiHack"
21:04:35 "<infiSTAR.de> 0 - Thread BEFORE MAIN: still compiling..."
21:04:35 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: still compiling..."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: still compiling..."
21:04:35 "<infiSTAR.de> 0 - fnc_AdminReqReal: still compiling..."
21:04:35 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: still compiling..."
21:04:35 "<infiSTAR.de> 0 - adminStartupCode: still compiling..."
21:04:35 "<infiSTAR.de> 0 - Thread MAIN: compiling adminStartupCode"
21:04:35 "<infiSTAR.de> 0 - AntiHack loaded!"
21:04:35 "<infiSTAR.de> 0 - STARTUP - AntiHack included!"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] a3_infiSTAR_Exile_fnc_preInit (9402 ms)"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "extDB3 Loaded"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "---------------------------------------------------------------------"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] extDB3_fnc_preInit (0 ms)"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] BIS_fnc_getServerVariable (0 ms)"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] RyanZM_fnc_rzfunctionpreinit (3.9978 ms)"
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] RHS_fnc_init (0 ms)"
21:04:35 [9032,50.158,0,"XEH: PreInit started. v3.5.0.171204"]
21:04:35 Wrong init state
21:04:35 [9032,50.678,0,"XEH: PreInit finished."]
21:04:35 "DEVELOPPEMENT/BIS_fnc_log: [preInit] CBA_fnc_preInit (520 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ExileClient_fnc_preInit (326 ms)"
21:04:36 "Starting Exile Custom Difficulty Overrides"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] exile_custom_difficulty_fnc_preInit (0 ms)"
21:04:36 "ExileServer - Server is loading..."
21:04:36 Client: Nonnetwork object 8a862400.
21:04:36 "ExileServer - Exile Trader/Loottable Config Warning!"
21:04:36 "ExileServer - You have weapons in your loot tables that spawn with attachments!"
21:04:36 "ExileServer - This will allow duping and money farming!"
21:04:36 "ExileServer - To solve this, please remove the following weapons from your loot tables and trader config OR replace them with their non-attachment equivalent:"
21:04:36 "ExileServer - [""rhs_weap_pb_6p9"",""rhs_weap_ak74m_fullplum_npz"",""rhs_weap_ak103_1_npz"",""rhs_weap_ak103"",""rhs_weap_ak105"",""rhs_weap_ak74n"",""rhs_weap_ak74n_gp25"",""rhs_weap_ak74m"",""rhs_weap_ak74m_npz"",""rhs_weap_ak74m_camo"",""rhs_weap_ak74m_camo_npz"",""rhs_weap_ak74m_2mag"",""rhs_weap_ak74m_2mag_camo"",""rhs_weap_aks74n"",""rhs_weap_aks74n_gp25"",""rhs_weap_aks74un"",""rhs_weap_aks74un_folded"",""rhs_weap_akm"",""rhs_weap_akm_gp25"",""rhs_weap_akm_zenitco01_b33"",""rhs_weap_akmn"",""rhs_weap_ak104_zenitco01_b33_grip1"",""rhs_weap_ak74m_plummag"",""rhs_weap_ak103_zenitco01""]"
21:04:36 "ExileServer - Installed extDB3 version: 1.031"
21:04:36 "ExileServer - Connected to database!"
21:04:36 "ExileServer - Database protocol initialized!"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ExileServer_fnc_preInit (156.002 ms)"
21:04:36 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loading Configs at 0"
21:04:36 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loaded all Configs at 0"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] exilez_mod_fnc_preInit (12.001 ms)"
21:04:36 "MarXet: [PreInit] : MarXet has been compiled"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] MarXet_Server_fnc_preInit (6.99997 ms)"
21:04:36 "DMS :: Initializing Static Mission Variables"
21:04:36 "DMS :: Initializing Dynamic Mission Variables"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] DMS_fnc_DMS_preInit (33.9966 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] ClaimVehicles_Server_fnc_preInit (1.00327 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [preInit] HLC_fnc_barrel_init (0 ms)"
21:04:36 Connected to Steam servers
21:04:36 "<infiSTAR.de> 0 - Thread #1: Server Loop #1 starting"
21:04:36 "<infiSTAR.de> 0 - Thread #1: Server Loop #1 running now!"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [script] initServer.sqf"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_missionFlow (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_initParams (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_initRespawn (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_keyframeAnimation_init (3.9978 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] a3_infiSTAR_Exile_fnc_postInit (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] CUP_fnc_emissiveLights (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BIS_fnc_reviveInit (0 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] BABE_CORE_fnc_init (0 ms)"
21:04:36 [9032,51.27,0,"XEH: PostInit started. MISSIONINIT: missionName=Exile, missionVersion=53, worldName=ChernarusRedux, isMultiplayer=true, isServer=true, isDedicated=true, CBA_isHeadlessClient=false, hasInterface=false, didJIP=false"]
21:04:36 [9032,51.297,0,"CBA_VERSIONING: cba=3.5.0.171204, "]
21:04:36 Attempt to override final function - l_es_es_sys_fnc_fired
21:04:36 [9032,51.305,0,"XEH: PostInit finished."]
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] CBA_fnc_postInit (34.9998 ms)"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExileClient_fnc_postInit (0 ms)"
21:04:36 "Started Exile Custom Difficulty Overrides"
21:04:36 "DEVELOPPEMENT/BIS_fnc_log: [postInit] exile_custom_difficulty_fnc_postInit (0 ms)"
21:04:36 "ExileServer - Job with handle 10000 added."
21:04:36 "ExileServer - Job with handle 10001 added."
21:04:36 "ExileServer - Job with handle 10002 added."
21:04:36 Successfull attempt to execute serverCommand '#exec users' by server.
21:04:36 Successfull attempt to execute serverCommand '#exec users' by server.
21:04:36 Successfull attempt to execute serverCommand '#lock' by server.
21:04:36 c:\w\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
21:04:36  Mission id: eab70d0a262007c36fc3de545976ce603e747956
21:04:36 Weather was forced to change
21:04:36 "ExileServer - Job with handle 10003 added."
21:04:36 "ExileServer - Job with handle 10004 added."
21:04:36 "ExileServer - Initializing game world..."
21:04:36 "ExileServer - Loading families from database..."
21:04:36 "ExileServer - Done loading families!"
21:04:36 "ExileServer - Loading territories from database..."
21:04:36 "ExileServer - Done loading territories!"
21:04:36 "ExileServer - Loading constructions from database..."
21:04:36 Attempt to override final function - bis_fnc_storeparamsvalues_data
21:04:36 "ExileServer - Done loading constructions!"
21:04:36 "ExileServer - Loading vehicles from database..."
21:04:36 UH1H_Skeleton: Invalid parent bone 'damagehide' for 'glass1'
21:04:36 UH1H_Skeleton: Invalid parent bone 'damagehide' for 'glass4'
21:04:36 UH1H_Skeleton: Invalid parent bone 'damagehide' for 'glass5'
21:04:36 Warning: Convex component representing Skids not found
21:04:36 Array mat in bin\config.bin/CfgVehicles/UH1HL_base/Damage/ not multiply of 3
21:04:36 Exile_Chopper_Huey_Green: Glass7_destruct - unknown animation source hitglass7
21:04:36 Error: bin\config.bin/CfgVehicles/UH1H_Clo/Turrets/MainTurret/: Turret body NewTurret not found while initializing the model exile_psycho_uh1h\uh1h_closed.p3d
21:04:36 Error: bin\config.bin/CfgVehicles/UH1H_Clo/Turrets/MainTurret/: Turret gun mainGun not found while initializing the model exile_psycho_uh1h\uh1h_closed.p3d
21:04:36 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Green'
21:04:36 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Green'
21:04:36 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Green'
21:04:36 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Green'
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:36 Warning Message: No entry '.scope'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:36 Warning Message: No entry '.displayName'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.nameSound'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.type'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.picture'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.Library'.
21:04:36 Warning Message: No entry '.libTextDesc'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.model'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.simulation'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDuration'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightIntensity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.fireLightDiffuse'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.fireLightAmbient'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.weaponLockDelay'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weaponLockSystem'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.cmImmunity'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.weight'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.lockingTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.lockedTargetSound'.
21:04:36 Warning Message: Size: '/' not an array
21:04:36 Warning Message: No entry '.detectRange'.
21:04:36 Warning Message: '/' is not a value
21:04:36 Warning Message: No entry '.muzzles'.
21:04:36 Warning Message: Size: '/' not an array
21:04:37 Fox_CobraR_Police: wheel_1_1_destruct - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_destruct - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_1_3_destruct - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_destruct - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_1_destruct - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_destruct - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: wheel_2_3_destruct - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_destruct - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: wheel_1_1_destruct_unhide - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_destruct_unhide - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_1_3_destruct_unhide - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_destruct_unhide - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_1_destruct_unhide - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_destruct_unhide - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: wheel_2_3_destruct_unhide - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_destruct_unhide - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: wheel_1_3_Damage - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_Damage - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_3_Damage - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_Damage - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: wheel_1_3_Damper_Damage_BackAnim - unknown animation source hitlmwheel
21:04:37 Fox_CobraR_Police: wheel_1_4_Damper_Damage_BackAnim - unknown animation source hitlf2wheel
21:04:37 Fox_CobraR_Police: wheel_2_3_Damper_Damage_BackAnim - unknown animation source hitrmwheel
21:04:37 Fox_CobraR_Police: wheel_2_4_Damper_Damage_BackAnim - unknown animation source hitrf2wheel
21:04:37 Fox_CobraR_Police: Glass1_destruct - unknown animation source hitglass1
21:04:37 Fox_CobraR_Police: Glass2_destruct - unknown animation source hitglass2
21:04:37 Fox_CobraR_Police: Glass3_destruct - unknown animation source hitglass3
21:04:37 Fox_CobraR_Police: Glass4_destruct - unknown animation source hitglass4
21:04:37 Fox_CobraR_Police: wheel_1_1_Damage - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_Damage - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_2_1_Damage - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_Damage - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: wheel_1_1_Damper_Damage_BackAnim - unknown animation source hitlfwheel
21:04:37 Fox_CobraR_Police: wheel_1_2_Damper_Damage_BackAnim - unknown animation source hitlbwheel
21:04:37 Fox_CobraR_Police: wheel_2_1_Damper_Damage_BackAnim - unknown animation source hitrfwheel
21:04:37 Fox_CobraR_Police: wheel_2_2_Damper_Damage_BackAnim - unknown animation source hitrbwheel
21:04:37 Fox_CobraR_Police: Beacon1 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: BeaconsStart - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon2 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon3 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon4 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon5 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon6 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon7 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Beacon8 - unknown animation source beacons
21:04:37 Fox_CobraR_Police: Glass5_destruct - unknown animation source hitglass5
21:04:37 Fox_CobraR_Police: BeaconUnhide - unknown animation source clamp
21:04:37 Fox_CobraR_Police: IdleHide - unknown animation source clamp
21:04:37 Fox_Pickup_Apocalypse: RH - unknown animation source rh
21:04:37 Fox_Pickup_Apocalypse: BeaconsStart - unknown animation source beacons
21:04:37 Bad cargo proxy index
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_destruct - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_destruct - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_destruct - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_destruct - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_destruct - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_destruct - unknown animation source hitrf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_destruct_unhide - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_destruct_unhide - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_destruct_unhide - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_destruct_unhide - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_destruct_unhide - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_destruct_unhide - unknown animation source hitrf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_Damage - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_Damage - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_Damage - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_Damage - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_Damage - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_Damage - unknown animation source hitrf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_2_Damper_Damage_BackAnim - unknown animation source hitlbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_3_Damper_Damage_BackAnim - unknown animation source hitlmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_1_4_Damper_Damage_BackAnim - unknown animation source hitlf2wheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_2_Damper_Damage_BackAnim - unknown animation source hitrbwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_3_Damper_Damage_BackAnim - unknown animation source hitrmwheel
21:04:37 Exile_Car_V3S_Covered: wheel_2_4_Damper_Damage_BackAnim - unknown animation source hitrf2wheel
21:04:37 In Vehicle: exile_psycho_v3s\v3s_transport.p3d missing cargo 0 get in direction point
21:04:37 In Vehicle: exile_psycho_v3s\v3s_transport.p3d missing cargo 1 get in direction point
21:04:37 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_V3S_Covered'
21:04:37 Duplicate HitPoint name 'HitGun' in 'Exile_Car_V3S_Covered'
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:37 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:37 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Covered_Yellow'
21:04:37 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Covered_Yellow'
21:04:37 Warning Message: Embedded skeleton Weapon in 'exile_assets\model\exile_melee_axe.p3d' has different [ bones count ] in different p3d files. Skeleton/model 'a3\weapons_f\data\zaslehsdl_proxy.p3d' will probably not work correctly.
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Fox_Tahoe_Apocalypse: RH - unknown animation source rh
21:04:37 Fox_Tahoe_Apocalypse: BeaconsStart - unknown animation source beacons
21:04:37 Bad cargo proxy index
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 "ExileServer - Done loading vehicles!"
21:04:37 "ExileServer - Loading containers from database..."
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:37 Warning Message: No entry '.scope'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:37 Warning Message: No entry '.displayName'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.nameSound'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.type'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.picture'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.Library'.
21:04:37 Warning Message: No entry '.libTextDesc'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.model'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.simulation'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDuration'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightIntensity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.fireLightDiffuse'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.fireLightAmbient'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.weaponLockDelay'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weaponLockSystem'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.cmImmunity'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.weight'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.lockingTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.lockedTargetSound'.
21:04:37 Warning Message: Size: '/' not an array
21:04:37 Warning Message: No entry '.detectRange'.
21:04:37 Warning Message: '/' is not a value
21:04:37 Warning Message: No entry '.muzzles'.
21:04:37 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_mtp_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_mtp_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_scope_v2_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_scope_v2_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry 'bin\config.bin/CfgWeapons.bnae_truglo_blk_virtual'.
21:04:38 Warning Message: No entry '.scope'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: Error: creating weapon bnae_truglo_blk_virtual with scope=private
21:04:38 Warning Message: No entry '.displayName'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.nameSound'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.type'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.picture'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.Library'.
21:04:38 Warning Message: No entry '.libTextDesc'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.model'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.simulation'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDuration'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightIntensity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.fireLightDiffuse'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.fireLightAmbient'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.weaponLockDelay'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weaponLockSystem'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.cmImmunity'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.weight'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.lockingTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.lockedTargetSound'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 Warning Message: No entry '.detectRange'.
21:04:38 Warning Message: '/' is not a value
21:04:38 Warning Message: No entry '.muzzles'.
21:04:38 Warning Message: Size: '/' not an array
21:04:38 "ExileServer - Done loading containers!"
21:04:38 "ExileServer - Creating spawn zone vehicles..."
21:04:38 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire
21:04:38 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
21:04:38 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
21:04:38 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
21:04:38 ca\buildings\tents\fortress_02.p3d: house, config class missing
21:04:38 ca\buildings\misc\gate.p3d: house, config class missing
21:04:38 ca\misc_acr\scaffoldingsmall\misc_crossing30st.p3d: house, config class missing
21:04:38 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:38 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 ca\misc_acr\scaffoldingsmall\misc_crossing0st.p3d: house, config class missing
21:04:39 Land_fishing_boat: fuel_1 - unknown animation source fuel
21:04:39 Land_fishing_boat: rpm_1 - unknown animation source speed
21:04:39 Land_fishing_boat: kompas_1 - unknown animation source direction
21:04:39 Land_fishing_boat: volant_1 - unknown animation source drivingwheel
21:04:39 Land_fishing_boat: kormidlo_1 - unknown animation source drivingwheel
21:04:39 Land_fishing_boat: vrtule_1 - unknown animation source rotor
21:04:39 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:39 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:39 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:39 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:39 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:39 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:40 Bad simulation thing, type Land_Barrel_water (class=house), ca\structures\misc\armory\barels\barrel_water.p3d
21:04:40 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:40 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:40 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Strange convex component25 in ca\structures\barn_w\barn_w_02.p3d:geometryView
21:04:41 Strange convex component26 in ca\structures\barn_w\barn_w_02.p3d:geometryView
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:41 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 a3\structures_f\training\target_popup_moving_90deg_f.p3d: house, config class missing
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 "ExileServer - Spawning Dynamic Vehicles. GridSize: 5000 Vehs/Grid: 3"
21:04:42 Fox_BUS: RH - unknown animation source rh
21:04:42 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Open_Military'
21:04:42 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Open_Military'
21:04:42 Fox_Pickup_6S: RH - unknown animation source rh
21:04:42 Fox_Pickup_6S: BeaconsStart - unknown animation source beacons
21:04:42 Bad cargo proxy index
21:04:42 Fox_Charger_Apocalypse: RH - unknown animation source rh
21:04:42 Fox_Charger_Apocalypse: BeaconsStart - unknown animation source beacons
21:04:42 Array mat in bin\config.bin/CfgVehicles/V3S_base/Damage/ not multiply of 3
21:04:42 Exile_Car_V3S_Open: wheel_1_2_destruct - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_destruct - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_destruct - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_destruct - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_destruct - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_destruct - unknown animation source hitrf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_1_2_destruct_unhide - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_destruct_unhide - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_destruct_unhide - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_destruct_unhide - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_destruct_unhide - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_destruct_unhide - unknown animation source hitrf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_1_2_Damage - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_Damage - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_Damage - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_Damage - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_Damage - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_Damage - unknown animation source hitrf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_1_2_Damper_Damage_BackAnim - unknown animation source hitlbwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_3_Damper_Damage_BackAnim - unknown animation source hitlmwheel
21:04:42 Exile_Car_V3S_Open: wheel_1_4_Damper_Damage_BackAnim - unknown animation source hitlf2wheel
21:04:42 Exile_Car_V3S_Open: wheel_2_2_Damper_Damage_BackAnim - unknown animation source hitrbwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_3_Damper_Damage_BackAnim - unknown animation source hitrmwheel
21:04:42 Exile_Car_V3S_Open: wheel_2_4_Damper_Damage_BackAnim - unknown animation source hitrf2wheel
21:04:42 In Vehicle: exile_psycho_v3s\v3s.p3d missing cargo 0 get in direction point
21:04:42 In Vehicle: exile_psycho_v3s\v3s.p3d missing cargo 1 get in direction point
21:04:42 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_V3S_Open'
21:04:42 Duplicate HitPoint name 'HitGun' in 'Exile_Car_V3S_Open'
21:04:42 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Covered_Military'
21:04:42 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Covered_Military'
21:04:42 Cannot create entity with abstract type Exile_Car_Van_Abstract (scope = private?)
21:04:42 Cannot create non-ai vehicle Exile_Car_Van_Abstract,
21:04:42 Cannot create entity with abstract type Exile_Car_HEMMT_Abstract (scope = private?)
21:04:42 Cannot create non-ai vehicle Exile_Car_HEMMT_Abstract,
21:04:42 "ExileServer - Dynamic vehicles spawned. Count : 27"
21:04:42 "ExileServer - Game world initialized! Let the fun begin!"
21:04:42 "ExileServer - There are no Russian Roulette chairs defined. Russian Roulette will not work!"
21:04:42 "ExileServer - Server is up and running! Version: 1.0.3"
21:04:42 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExileServer_fnc_postInit (6227 ms)"
21:04:42 "ExileServer - Job with handle 10005 added."
21:04:42 "ExileZ Mod: Added Zombie Monitor to ExileServer Thread"
21:04:42 "ExileServer - Job with handle 10006 added."
21:04:42 "ExileZ Mod: Added Dead Zombie Monitor to ExileServer Thread"
21:04:42 "ExileServer - Job with handle 10007 added."
21:04:42 "ExileZ Mod: Added Harassing Zombies Loop to ExileServer Thread"
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:42 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Bad simulation thing, type Land_Barrel_water (class=house), ca\structures\misc\armory\barels\barrel_water.p3d
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Bad simulation thing, type Land_Barrel_empty (class=house), ca\structures\misc\armory\barels\barrel_empty.p3d
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 ca\buildings\misc\gate.p3d: house, config class missing
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:43 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_dead_end_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\characters2\other\massgrave.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 ca\chernarusredux_buildings\sewer_segment_01.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\buildings\misc\gate.p3d: house, config class missing
21:04:44 ca\buildings\tents\pristresek.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 ca\misc3\tent_west.p3d: house, config class missing
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Warn: Shape '???' contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!
21:04:44 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d
21:04:44 "ExileServer - Main thread started"
21:04:44 Successfull attempt to execute serverCommand '#unlock' by server.
21:04:45 "ExileZ Mod: Version v1.5.6 - 13/10/17 Started at (3.562)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] exilez_mod_fnc_postInit (3028 ms)"
21:04:45 "MarXet: [InventoryInitalize] : Loading MarXet Inventory..."
21:04:45 "ExileServer - Database Error: Error No Custom Call Not Found"
21:04:45 "DEVELOPPEMENT/log: ERROR: [BIS_fnc_sortBy] Error: type STRING, expected ARRAY, on index 0, in [""Error No Custom Call Not Found"",[],{(_x select 2) select 0},""DESCEND"",{}]"
21:04:45 "MarXet: [InventoryInitalize] : Loaded MarXet Inventory! MarXetInventory is public!"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] MarXet_Server_fnc_postInit (1.00327 ms)"
21:04:45 "ExileServer - Job with handle 10008 added."
21:04:45 "DMS_DEBUG :: DMS post-init complete. productVersion: [""Arma 3"",""Arma3"",180,143869,""Stable"",true,""Windows"",""x64""] | infiSTAR version: 18-01-2018 14-36-36 - v90 |::|::| (DMS_Version: ""September 7, 2017"" | time: 3.562 | diag_tickTime: 60.563 | 4.59374 FPS)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] DMS_fnc_DMS_postInit (1.9989 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] yorkshire_fnc_YORKS_init (0 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] apps_fnc_postInit (0.999451 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ClaimVehicles_Server_fnc_postInit (0 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExAd_fnc_changeable (0 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExAd_fnc_postInitVG (3.00217 ms)"
21:04:45 "DEVELOPPEMENT/BIS_fnc_log: [postInit] ExAd_fnc_postInitXM8 (2.99835 ms)"
21:04:45 "[OCCUPATION]:: Occupation V69 (21-07-2017) Giving the server time to start before starting [OCCUPATION] (3.584)"
21:04:45 "DMS :: Initializing FSM mission script"
21:04:46 "DEVELOPPEMENT/BIS_fnc_log: [BIS_fnc_preload] ----- Scripts initialized at 20093 ms -----"
21:04:55 "[OCCUPATION MOD]:: Occupation V69 (21-07-2017) Loading Config at 13.59"
21:04:55 "ExileServer - Job with handle 10009 added."
21:05:10 "ExileServer - Job with handle 10010 added."
21:05:10 "ExileServer - Job with handle 10011 added."
21:05:13 "[Display #24]"
21:05:18 BEServer: registering a new player #1145667246
21:05:20 BEServer: registering a new player #1407831940
21:50:09 "MarXet: [createNewListingRequest] : Player: Louis Mac just listed Exile_Magazine_10Rnd_127x99_m107 for 350... New listing Array: [""EO151418"",1,[""Exile_Magazine_10Rnd_127x99_m107""],""350"",""76561198055418232""]"
21:50:13 "MarXet: [createNewListingRequest] : Player: Louis Mac just listed Exile_Magazine_10Rnd_127x99_m107 for 350... New listing Array: [""XP376213"",1,[""Exile_Magazine_10Rnd_127x99_m107""],""350"",""76561198055418232""]"
21:50:27 "MarXet: [createNewListingRequest] : Player: Louis Mac just listed Exile_Magazine_45Rnd_545x39_RPK_Green for 125... New listing Array: [""xU293711"",1,[""Exile_Magazine_45Rnd_545x39_RPK_Green""],""125"",""76561198055418232""]"
21:51:47 "MarXet: [BuyNowRequest] : Player: 76561198184549166 bought player: 76561198055418232's Exile_Magazine_10Rnd_127x99_m107 for 350"
21:52:14 "MarXet: [createNewListingRequest] : Player: Alésio Bélentofe just listed rhs_weap_svdp_npz for 1200... New listing Array: [""FY482578"",1,[""rhs_weap_svdp_npz""],""1200"",""76561198184549166""]"
21:53:39 "MarXet: [createNewListingRequest] : Player: Alésio Bélentofe just listed H_Ghillie_Suit2 for 5000... New listing Array: [""pt298924"",1,[""H_Ghillie_Suit2""],""5000"",""76561198184549166""]"

and EXILE.INI


[Default]

Version = 1
Strip Chars = "\/\|;{}<>\'"
Strip Chars Mode = 0
Input SQF Parser = false
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Account related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[isKnownAccount]
SQL1_1 = SELECT CASE WHEN EXISTS(SELECT uid FROM account WHERE uid = ?) THEN 'true' ELSE 'false' END

SQL1_INPUTS = 1
OUTPUT = 1

[createAccount]
SQL1_1 = INSERT INTO account SET uid = ?, name = ?

SQL1_INPUTS = 1,2

[startAccountSession]
SQL1_1 = UPDATE account SET name = ?, last_connect_at = NOW(), total_connections = total_connections + 1 WHERE uid = ?

SQL1_INPUTS = 2,1

[endAccountSession]
SQL1_1 = UPDATE account SET last_disconnect_at = NOW() WHERE uid = ?

SQL1_INPUTS = 1

[getAccountStats]
SQL1_1 = SELECT score, kills, deaths, clan_id, locker FROM account WHERE uid = ?

SQL1_INPUTS = 1
OUTPUT = 1,2,3,4,5

[addAccountKill]
SQL1_1 = UPDATE account SET kills = kills + 1 WHERE uid = ?

SQL1_INPUTS = 1

[addAccountDeath]
SQL1_1 = UPDATE account SET deaths = deaths + 1 WHERE uid = ?

SQL1_INPUTS = 1

[getAccountScore]
SQL1_1 = SELECT score FROM account WHERE uid = ?

SQL1_INPUTS = 1
OUTPUT = 1

[setAccountScore]
SQL1_1 = UPDATE account SET score = ? WHERE uid = ?

SQL1_INPUTS = 1,2

[modifyAccountScore]
SQL1_1 = UPDATE account SET score = score + ? WHERE uid = ?

SQL1_INPUTS = 1,2

[updateLocker]
SQL1_1 = UPDATE account SET locker = ? WHERE uid = ?

SQL1_INPUTS = 1,2

[getLocker]
SQL1_1 = SELECT locker FROM account WHERE uid = ?

SQL1_INPUTS = 1
OUTPUT = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Player related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;  MarXet by whatshisface?
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[createNewListing]
SQL1_1 = INSERT INTO marxet SET listingID = ?, itemAvailable = ?, itemArray = ?, price = ?, sellerUID = ?
SQL1_INPUTS = 1,2,3,4,5

[getListings]
SQL1_1 = SELECT listingID, itemAvailable, itemArray, price, sellerUID FROM marxet
OUTPUT = 1-STRING,2,3,4-STRING,5-STRING

[updateListing]
SQL1_1 = UPDATE marxet SET itemAvailable = 0 WHERE listingID = ?
SQL1_INPUTS = 1

[deleteListing]
SQL1_1 = DELETE FROM marxet WHERE listingID = ?
SQL1_INPUTS = 1

[restrictOldListings]
SQL1_1 = UPDATE marxet SET sellerUID = 0 WHERE created_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND sellerUID != 0
SQL1_INPUTS = 1

[deleteOldListings]
SQL1_1 = DELETE FROM marxet WHERE created_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND sellerUID = 0
SQL1_INPUTS = 1

[getListingsCount]
SQL1_1 = SELECT COUNT(listingID) FROM marxet WHERE sellerUID = ?
SQL1_INPUTS = 1
OUTPUT = 1

[hasAlivePlayer]
SQL1_1 = SELECT CASE WHEN EXISTS(SELECT account_uid FROM player WHERE account_uid = ? AND damage < 1) THEN 'true' ELSE 'false' END

SQL1_INPUTS = 1
OUTPUT = 1

[createPlayer]
SQL1_1 = INSERT INTO player SET account_uid = ?, name = ?

SQL1_INPUTS = 1,2
Return InsertID = true

[insertPlayerHistory]
SQL1_1 = INSERT INTO player_history SET account_uid = ?, name = ?, position_x = ?, position_y = ?, position_z = ?

SQL1_INPUTS = 1,2,3,4,5

[deletePlayer]
SQL1_1 = DELETE FROM player WHERE id = ?

SQL1_INPUTS = 1

[loadPlayer]
SQL1_1 = SELECT p.id,
SQL1_2 = p.name,
SQL1_3 = p.account_uid,
SQL1_4 = p.damage,
SQL1_5 = p.hunger,
SQL1_6 = p.thirst,
SQL1_7 = p.alcohol,
SQL1_8 = p.oxygen_remaining,
SQL1_9 = p.bleeding_remaining,
SQL1_10 = p.hitpoints,
SQL1_11 = p.direction,
SQL1_12 = p.position_x,
SQL1_13 = p.position_y,
SQL1_14 = p.position_z,
SQL1_15 = p.assigned_items,
SQL1_16 = p.backpack,
SQL1_17 = p.backpack_items,
SQL1_18 = p.backpack_magazines,
SQL1_19 = p.backpack_weapons,
SQL1_20 = p.current_weapon,
SQL1_21 = p.goggles,
SQL1_22 = p.handgun_items,
SQL1_23 = p.handgun_weapon,
SQL1_24 = p.headgear,
SQL1_25 = p.binocular,
SQL1_26 = p.loaded_magazines,
SQL1_27 = p.primary_weapon,
SQL1_28 = p.primary_weapon_items,
SQL1_29 = p.secondary_weapon,
SQL1_30 = p.secondary_weapon_items,
SQL1_31 = p.uniform,
SQL1_32 = p.uniform_items,
SQL1_33 = p.uniform_magazines,
SQL1_34 = p.uniform_weapons,
SQL1_35 = p.vest,
SQL1_36 = p.vest_items,
SQL1_37 = p.vest_magazines,
SQL1_38 = p.vest_weapons,
SQL1_39 = p.money,
SQL1_40 = a.score,
SQL1_41 = a.kills,
SQL1_42 = a.deaths,
SQL1_43 = c.id,
SQL1_44 = c.name,
SQL1_45 = p.temperature,
SQL1_46 = p.wetness,
SQL1_47 = a.locker
SQL1_48 = FROM player p
SQL1_49 = INNER JOIN account a
SQL1_50 = ON a.uid = p.account_uid
SQL1_51 = LEFT JOIN clan c
SQL1_52 = ON c.id = a.clan_id
SQL1_53 = WHERE p.account_uid = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4,5,6,7,8,9,10,11,12,13,14,15,16-STRING,17,18,19,20-STRING,21-STRING,22,23-STRING,24-STRING,25-STRING,26,27-STRING,28,29-STRING,30,31-STRING,32,33,34,35-STRING,36,37,38,39,40,41,42,43,44-STRING,45,46,47

[updatePlayer]
SQL1_1 = UPDATE player SET
SQL1_2 = name = ?,
SQL1_3 = damage  = ?,
SQL1_4 = hunger = ?,
SQL1_5 = thirst = ?,
SQL1_6 = alcohol = ?,
SQL1_7 = oxygen_remaining  = ?,
SQL1_8 = bleeding_remaining = ?,
SQL1_9 = hitpoints = ?,
SQL1_10 = direction = ?,
SQL1_11 = position_x = ?,
SQL1_12 = position_y = ?,
SQL1_13 = position_z = ?,
SQL1_14 = assigned_items = ?,
SQL1_15 = backpack = ?,
SQL1_16 = backpack_items = ?,
SQL1_17 = backpack_magazines = ?,
SQL1_18 = backpack_weapons = ?,
SQL1_19 = current_weapon = ?,
SQL1_20 = goggles = ?,
SQL1_21 = handgun_items = ?,
SQL1_22 = handgun_weapon = ?,
SQL1_23 = headgear = ?,
SQL1_24 = binocular = ?,
SQL1_25 = loaded_magazines = ?,
SQL1_26 = primary_weapon = ?,
SQL1_27 = primary_weapon_items = ?,
SQL1_28 = secondary_weapon = ?,
SQL1_29 = secondary_weapon_items = ?,
SQL1_30 = uniform = ?,
SQL1_31 = uniform_items = ?,
SQL1_32 = uniform_magazines = ?,
SQL1_33 = uniform_weapons = ?,
SQL1_34 = vest = ?,
SQL1_35 = vest_items = ?,
SQL1_36 = vest_magazines = ?,
SQL1_37 = vest_weapons = ?,
SQL1_38 = temperature = ?,
SQL1_39 = wetness = ?
SQL1_40 = WHERE id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Vehicle related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[insertVehicle]
SQL1_1 = INSERT INTO vehicle SET
SQL1_2 = class = ?,
SQL1_3 = account_uid = ?,
SQL1_4 = is_locked = ?,
SQL1_5 = position_x = ?,
SQL1_6 = position_y = ?,
SQL1_7 = position_z = ?,
SQL1_8 = direction_x = ?,
SQL1_9 = direction_y = ?,
SQL1_10 = direction_z = ?,
SQL1_11 = up_x = ?,
SQL1_12 = up_y = ?,
SQL1_13 = up_z = ?,
SQL1_14 = pin_code = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13
Return InsertID = true

[deleteVehicle]
SQL1_1 = DELETE FROM vehicle WHERE id = ?

SQL1_INPUTS = 1

[loadVehicleIdPage]
;SQL1_1 = SELECT id FROM vehicle LIMIT ?,?
SQL1_1 = SELECT id FROM vehicle WHERE deleted_at IS NULL AND territory_id IS NULL LIMIT ?,?
SQL1_INPUTS = 1,2
OUTPUT = 1

[loadVehicle]
SQL1_1 = SELECT id,class,spawned_at,account_uid,is_locked,fuel,damage,hitpoints,position_x,position_y,position_z,direction_x,direction_y,direction_z,up_x,up_y,up_z,cargo_items,cargo_magazines,cargo_weapons,pin_code,vehicle_texture,deleted_at,money FROM vehicle WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4-STRING,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-STRING,22,23,24

[loadVehicleContainer]
SQL1_1 = SELECT cargo_container FROM vehicle WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1

[updateVehicle]
SQL1_1 = UPDATE vehicle SET
SQL1_2 = is_locked = ?,
SQL1_3 = fuel = ?,
SQL1_4 = damage = ?,
SQL1_5 = hitpoints = ?,
SQL1_6 = position_x = ?,
SQL1_7 = position_y = ?,
SQL1_8 = position_z = ?,
SQL1_9 = direction_x = ?,
SQL1_10 = direction_y = ?,
SQL1_11 = direction_z = ?,
SQL1_12 = up_x = ?,
SQL1_13 = up_y = ?,
SQL1_14 = up_z = ?,
SQL1_15 = cargo_items = ?,
SQL1_16 = cargo_magazines = ?,
SQL1_17 = cargo_weapons = ?,
SQL1_18 = cargo_container = ?,
SQL1_19 = money = ?,
SQL1_20 = last_updated_at = NOW()
SQL1_21 = WHERE id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19

[updateVehicleSkin]
SQL1_1 = UPDATE vehicle SET vehicle_texture = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[vehicleSetPinCode]
SQL1_1 = UPDATE vehicle SET pin_code = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Construction related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[insertConstruction]
SQL1_1 = INSERT INTO construction SET
SQL1_2 = class = ?,
SQL1_3 = account_uid = ?,
SQL1_4 = position_x = ?,
SQL1_5 = position_y = ?,
SQL1_6 = position_z = ?,
SQL1_7 = direction_x = ?,
SQL1_8 = direction_y = ?,
SQL1_9 = direction_z = ?,
SQL1_10 = up_x = ?,
SQL1_11 = up_y = ?,
SQL1_12 = up_z = ?,
SQL1_13 = territory_id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12-NULL
Return InsertID = true

[deleteConstruction]
SQL1_1 = DELETE FROM construction WHERE id = ?

SQL1_INPUTS = 1

[loadConstructionIdPage]
SQL1_1 = SELECT id FROM construction WHERE deleted_at IS NULL LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[loadConstruction]
SQL1_1 = SELECT id,class,account_uid,spawned_at,position_x,position_y,position_z,direction_x,direction_y,direction_z,up_x,up_y,up_z,is_locked,pin_code,territory_id,deleted_at,damage FROM construction WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4-STRING,5,6,7,8,9,10,11,12,13,14,15-STRING,16,17,18

[countConstruction]
SQL1_1 = SELECT COUNT(*) FROM construction

OUTPUT = 1

[constructionSetPinCode]
SQL1_1 = UPDATE construction SET pin_code= ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[upgradeObject]
SQL1_1 = UPDATE construction SET class = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[addDoorLock]
SQL1_1 = UPDATE construction SET pin_code = ?, is_locked = -1, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[updateLock]
SQL1_1 = UPDATE construction SET is_locked = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[updateConstructionTerritoryIDs]
SQL1_1 = UPDATE construction SET territory_id = ? WHERE id IN(?)

SQL1_INPUTS = 1,2

[updateDamage]
SQL1_1 = UPDATE construction SET damage = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Containers related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[insertContainer]
SQL1_1 = INSERT INTO container SET
SQL1_2 = class = ?,
SQL1_3 = account_uid = ?,
SQL1_4 = position_x = ?,
SQL1_5 = position_y = ?,
SQL1_6 = position_z = ?,
SQL1_7 = direction_x = ?,
SQL1_8 = direction_y = ?,
SQL1_9 = direction_z = ?,
SQL1_10 = up_x = ?,
SQL1_11 = up_y = ?,
SQL1_12 = up_z = ?,
SQL1_13 = cargo_items = ?,
SQL1_14 = cargo_magazines = ?,
SQL1_15 = cargo_weapons = ?,
SQL1_16 = cargo_container = ?,
SQL1_17 = money = ?,
SQL1_18 = pin_code = ?,
SQL1_19 = territory_id = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-NULL
Return InsertID = true

[deleteContainer]
SQL1_1 = DELETE FROM container WHERE id = ?

SQL1_INPUTS = 1

[loadContainerIdPage]
SQL1_1 = SELECT id FROM container WHERE deleted_at IS NULL LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[loadContainer]
SQL1_1 = SELECT id,class,account_uid,is_locked,position_x,position_y,position_z,direction_x,direction_y,direction_z,up_x,up_y,up_z,cargo_items,cargo_magazines,cargo_weapons,pin_code,territory_id,abandoned,deleted_at,money FROM container WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4,5,6,7,8,9,10,11,12,13,14,15,16,17-STRING,18,19-STRING,20,21

[loadContainerCargo]
SQL1_1 = SELECT cargo_container FROM container WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1

[updateContainer]
SQL1_1 = UPDATE container SET
SQL1_2 = is_locked = ?,
SQL1_3 = position_x = ?,
SQL1_4 = position_y = ?,
SQL1_5 = position_z = ?,
SQL1_6 = direction_x = ?,
SQL1_7 = direction_y = ?,
SQL1_8 = direction_z = ?,
SQL1_9 = up_x = ?,
SQL1_10 = up_y = ?,
SQL1_11 = up_z = ?,
SQL1_12 = cargo_items = ?,
SQL1_13 = cargo_magazines = ?,
SQL1_14 = cargo_weapons = ?,
SQL1_15 = cargo_container = ?,
SQL1_16 = territory_id = ?,
SQL1_17 = money = ?
SQL1_18 = WHERE id = ?
SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-NULL,16,17

[containerSetPinCode]
SQL1_1 = UPDATE container SET pin_code= ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[updateContainerTerritoryIDs]
SQL1_1 = UPDATE container SET territory_id = ? WHERE id IN(?)

SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Clan related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[createClan]
SQL1_1 = INSERT INTO clan SET leader_uid = ?, name = ?

SQL1_INPUTS = 1,2
Return InsertID = true

[setAccountClanLink]
SQL1_1 = UPDATE account SET clan_id = ? WHERE uid = ?

SQL1_INPUTS = 1,2

[unLinkClanLink]
SQL1_1 = UPDATE account SET clan_id = NULL WHERE uid = ?

SQL1_INPUTS = 1

[updateClanLeader]
SQL1_1 = UPDATE clan SET leader_uid = ? WHERE id = ?

SQL1_INPUTS = 1,2

[deleteClan]
SQL1_1 = DELETE FROM clan WHERE id = ?

SQL1_INPUTS = 1

[loadClansIdPage]
SQL1_1 = SELECT id FROM clan LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[getClanInfo]
SQL1_1 = SELECT name,leader_uid FROM clan WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1-STRING,2-STRING

[getClanMembers]
SQL1_1 = SELECT uid,name FROM account WHERE clan_id = ?

SQL1_INPUTS = 1
OUTPUT = 1-STRING,2-STRING

[getClanMarkers]
SQL1_1 = SELECT id,markerType,positionArr,color,icon,iconSize,label,labelSize FROM clan_map_marker WHERE clan_id = ?

SQL1_INPUTS = 1
OUTPUT = 1,2,3,4,5-STRING,6,7-STRING,8

[addMarker]
SQL1_1 = INSERT INTO clan_map_marker SET clan_id = ?, markerType = 0, positionArr = ?, color = ?, icon = ?, iconSize = ?, label = ?, labelSize = ?

SQL1_INPUTS = 1,2,3,4,5,6,7
Return InsertID = true

[addPoly]
SQL1_1 = INSERT INTO clan_map_marker SET clan_id = ?, markerType = 1, positionArr = ?, color = ?

SQL1_INPUTS = 1,2,3
Return InsertID = true

[deleteMarker]
SQL1_1 = DELETE FROM clan_map_marker WHERE id = ?

SQL1_INPUTS = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Territory related queries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[createTerritory]
SQL1_1 = INSERT INTO territory SET owner_uid = ?, name = ?, position_x = ? , position_y = ? , position_z = ?, radius = ? , level = ? , flag_texture = ? , flag_stolen = ? , flag_stolen_by_uid =? , build_rights = ? , moderators = ?

SQL1_INPUTS = 1,2,3,4,5,6,7,8,9,12-NULL,10,11
Return InsertID = true

[loadTerriotryIdPage]
SQL1_1 = SELECT id FROM territory WHERE deleted_at IS NULL LIMIT ?,?

SQL1_INPUTS = 1,2
OUTPUT = 1

[loadTerritory]
SQL1_1 = SET @connector = ?;
SQL2_1 = SELECT id,owner_uid,name,position_x,position_y,position_z,radius, level,flag_texture,flag_stolen,flag_stolen_by_uid,last_paid_at,build_rights,moderators,deleted_at,(SELECT COUNT(*)FROM construction c WHERE c.territory_id = @connector) FROM territory WHERE id = @connector

SQL1_INPUTS = 1
OUTPUT = 1,2-STRING,3-STRING,4,5,6,7,8,9-STRING,10,11-STRING,12,13,14,15,16

[setTerritoryLevel]
SQL1_1 = UPDATE territory SET level = ? WHERE id = ?

SQL1_INPUTS = 1,2

[setTerritorySize]
SQL1_1 = UPDATE territory SET radius = ? WHERE id = ?

SQL1_INPUTS = 1,2

[updateTerritoryBuildRights]
SQL1_1 = UPDATE territory SET build_rights = ? WHERE id = ?

SQL1_INPUTS = 1,2

[updateTerritoryModerators]
SQL1_1 = UPDATE territory SET moderators = ? WHERE id = ?

SQL1_INPUTS = 1,2

[maintainTerritory]
SQL1_1 = UPDATE territory SET last_paid_at = NOW(),xm8_protectionmoney_notified = 0 WHERE id = ?

SQL1_INPUTS = 1

[deleteTerritory]
SQL1_1 = DELETE FROM territory WHERE id = ?

SQL1_INPUTS = 1

[flagStolen]
SQL1_1 = UPDATE territory SET flag_stolen = 1, flag_stolen_by_uid = ?, flag_stolen_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[flagRestore]
SQL1_1 = UPDATE territory SET flag_stolen = 0, flag_stolen_by_uid = NULL, flag_stolen_at = NULL WHERE id = ?

SQL1_INPUTS = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Garbage Collector
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; Marks for deletion containers outside territories that were not accessed within ? days
[markDeleteOldContainers]
SQL1_1 = UPDATE container SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL AND deleted_at IS NULL

SQL1_INPUTS = 1

; Removes containers outside territories that were not accessed within ? days
[deleteOldContainers]
SQL1_1 = DELETE FROM container WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL

SQL1_INPUTS = 1

; Marks contructions outside territories deleted after ? days
[markDeleteOldConstructions]
SQL1_1 = UPDATE construction SET deleted_at = NOW() WHERE spawned_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL AND deleted_at IS NULL

SQL1_INPUTS = 1

; Removes contructions outside territories after ? days
[deleteOldConstructions]
SQL1_1 = DELETE FROM construction WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL

SQL1_INPUTS = 1

; Marks for deletion vehicles that were not used within ? days
[markDeleteOldVehicles]
; SQL1_1 = UPDATE vehicle SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY)
SQL1_1 = UPDATE vehicle SET deleted_at = NOW() WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND territory_id IS NULL
SQL1_INPUTS = 1

;2. Add all below in the end of the file.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Virtual Garage related queries | ADDED BY [ExAd]Jan
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[loadTerritoryVehicles]
SQL1_1 = SELECT id, class FROM vehicle WHERE territory_id = ?
SQL1_INPUTS = 1
OUTPUT = 1,2-STRING

[loadVehFromVG]
SQL1_1 = UPDATE vehicle SET territory_id = NULL WHERE id = ?
SQL1_INPUTS = 1

[loadVehToVG]
SQL1_1 = UPDATE vehicle SET territory_id = ? WHERE id = ?
SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Virtual Garage related queries | ADDED BY [ExAd]Jan
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[deleteOldVehicles]
;SQL1_1 = DELETE FROM vehicle WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY)
SQL1_1 = DELETE FROM vehicle WHERE territory_id IS NULL AND deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY)
SQL1_INPUTS = 1

[markDeleteUnpaidTerritories]
SQL1_1 = UPDATE territory SET deleted_at = NOW() WHERE last_paid_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND deleted_at IS NULL
SQL2_1 = UPDATE construction SET deleted_at = (SELECT deleted_at FROM territory WHERE territory.id = construction.territory_id AND territory.deleted_at IS NOT NULL) WHERE construction.territory_id IS NOT NULL
SQL3_1 = UPDATE container SET deleted_at = (SELECT deleted_at FROM territory WHERE territory.id = container.territory_id AND territory.deleted_at IS NOT NULL) WHERE container.territory_id IS NOT NULL

SQL1_INPUTS = 1

; Removes territories (and all containers/constructions) that were not paid within ? days
[deleteUnpaidTerritories]
SQL1_1 = DELETE FROM territory WHERE deleted_at < DATE_SUB(NOW(), INTERVAL ? DAY)

SQL1_INPUTS = 1

[addAbandonedSafes]
SQL1_1 = UPDATE container SET abandoned = NOW(), pin_code = '0000' WHERE last_updated_at < DATE_SUB(NOW(), INTERVAL ? DAY) AND class = "Exile_Container_Safe" AND territory_id IS NULL

SQL1_INPUTS = 1

[deleteBaseFlagStolen]
SQL1_1 = DELETE FROM territory WHERE flag_stolen_at < DATE_SUB(NOW(), INTERVAL ? DAY)

SQL1_INPUTS = 1

; Unlock doors and mark safes as abandoned if flag stolen for X days
[setAbandonedUnlocked]
SQL1_1 = UPDATE container SET abandoned = NOW(), pin_code = '0000' WHERE (SELECT flag_stolen_at FROM territory WHERE territory.id = container.territory_id AND territory.flag_stolen_at < DATE_SUB(NOW(), INTERVAL ? DAY));
SQL2_1 = UPDATE construction SET pin_code = '0000' WHERE (SELECT flag_stolen_at FROM territory WHERE territory.id = construction.territory_id AND territory.flag_stolen_at < DATE_SUB(NOW(), INTERVAL ? DAY)) AND pin_code != '000000'

SQL1_INPUTS = 1
SQL2_INPUTS = 1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Moneh moneh moneh
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[setPlayerMoney]
SQL1_1 = UPDATE player SET money = ? WHERE id = ?

SQL1_INPUTS = 1,2

[getPlayerMoney]
SQL1_1 = SELECT money FROM player WHERE id = ?

SQL1_INPUTS = 1
OUTPUT = 1

[setContainerMoney]
SQL1_1 = UPDATE container SET money = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

[setVehicleMoney]
SQL1_1 = UPDATE vehicle SET money = ?, last_updated_at = NOW() WHERE id = ?

SQL1_INPUTS = 1,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;	XM8
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[getAllNotifTerritory]
SQL1_1 = SELECT id FROM territory WHERE last_paid_at < DATE_SUB(NOW(), INTERVAL ? - 1 DAY) and xm8_protectionmoney_notified = 0

SQL1_INPUTS = 1

[setTerritoryNotified]
SQL1_1 = UPDATE territory SET xm8_protectionmoney_notified = ? WHERE id = ?

SQL1_INPUTS = 1,2

 

Next time please pastebin your files.

Here is a corrected version of the exile.ini

https://gist.github.com/BrettNordin/aba5966f03d1b2e8bc51b175e2f93415

 

Share this post


Link to post
Share on other sites
Advertisement

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.