Bishopob 1 Report post Posted September 11, 2018 Hello, Changed this via page 38 _player = _this select 0; _nr = _this select 1; _cIndex = EPOCH_customVars find "Crypto"; _vars = _player getVariable["VARS", call EPOCH_defaultVars_SEPXVar]; _current_crypto = _vars select _cIndex; _current_cryptoRaw = _current_crypto; _playerCryptoLimit = EPOCH_customVarLimits select _cIndex; _playerCryptoLimit params ["_playerCryptoLimitMax","_playerCryptoLimitMin"]; _current_crypto = ((_current_cryptoRaw + _nr) min _playerCryptoLimitMax) max _playerCryptoLimitMin; _newcrypt remoteExec ['EPOCH_effectCrypto',(owner _player)]; _vars set[_cIndex, _current_crypto]; _player setVariable["VARS", _vars]; Even tried both syntax 'VARS' and "Vars" as this is how it is written in the "fix" Still no money changing hands, So i cant even tell if the money comes back after player logs. ***Update: Fixed. Works! To clarify why the fix. This fixes BM trader from selling and buying items with no crypto exchange taking place. Change this line _newcrypt remoteExec ['EPOCH_effectCrypto',(owner _player)]; to _current_crypto remoteExec ['EPOCH_effectCrypto',(owner _player)]; This being said, One of the Masters of the Universe pointed out in my .cfg file that on the last line there was a hidden symbol in the x position. ["VARS",_vats];x can't see it in notepad++ Rewrote the entire line. Works! I likely added it in that space somehow, somewhere a day or two ago and simply couldn't find it. Tip: sometimes copy/paste does this. 1 He-Man reacted to this Quote Share this post Link to post Share on other sites
He-Man 414 Report post Posted September 11, 2018 Are there any errors in client or server rpt? Normally it should work. Someone has posted a while ago, he was using other mods from halv, where also was HALV_takegive_crypto in. Eventually you also use others mods with this variable and you have to also change this file? Quote Share this post Link to post Share on other sites
Bishopob 1 Report post Posted September 11, 2018 Ok got it working. I created a typo when i copy/pasted. Edited my above post. Great addon works great for me as of. 9/11/2018 Quote Share this post Link to post Share on other sites
Bishopob 1 Report post Posted September 12, 2018 Hello, has anyone tried changing the HS blackmarket trader billboard and flag yet? I cut and saved out the old dkflagpole and trader .jpg and placing new image same size/name .jpg for both into the epoch.Altis\trader folder where they are located. But the old images still remain after i restart the server. I thought perhaps a cache folder on my side is keeping the old files, so i removed the cached missions, then removed both jpg files from the trader folder in the mission.pbo and popped the server...no flag no billboard As expected... because i removed them right? Now once i replaced the NEW images once again, and only them, the old pics come back. My question is. How the heck is it reading the old pictures if they don't exist in the folder? Moreover, why is it not showing the .jpg i placed in that very folder? Quote Share this post Link to post Share on other sites
Grahame 410 Report post Posted September 12, 2018 I do that on all my servers. Did you save them as dkflagpole.jpg? You can also change this line in the init.sqf for HSTrader if you renamed them: _flagtexture = "trader\dkflagpole.jpg"; Quote Share this post Link to post Share on other sites
Bishopob 1 Report post Posted September 13, 2018 Yes. Made sure of that first thing. i dropped worrying about it for other projects, and after like the 4th restart of the day i noticed they were working. Not sure why it changed i hadn't changed anything since it appeared not to work. Working fine now it seems. Thanks Quote Share this post Link to post Share on other sites
C4-timah 1 Report post Posted September 28, 2018 On 9/7/2016 at 5:16 AM, Karma_UK said: It is very simple to fix. Open tradedialog.hpp Got to line 123. Assuming you have the default file, the few lines above this should read : class HS_trader_tree: HALV_CT_TREE { idc = 9997; text = ""; x = 0.458763 * safezoneW + safezoneX; y = 0.225069 * safezoneH + safezoneY; w = 0.247423 * safezoneW; h = 0.549862 * safezoneH; onTreeDblClick = "_this call HS_additemtolb;false"; onTreeSelChanged = "_this call Halv_onlbtreeselected;false"; If not, then the end of this block of code is where you want to be, BEFORE the curly bracket that closes off the section. Cut and paste the following to that location: colorPicture[] = {0,0,0,0}; colorPictureSelected[] = {0,8,0,0,8}; colorPictureDisabled[] = {0,8,0,0,8}; colorPictureRight[] = {0,8,0,0,8}; colorPictureRightSelected[] = {0,8,0,0,8}; colorPictureRightDisabled[] = {0,8,0,0,8}; All you are doing is defining colours for items as called for by the script. The (0,8,0,0,8} can be changed to any colour you wish but for now I suggest you check that it works before you start changing it. Hope that is clear enough. Shout if you have any questions. PS I only just read back through the thread and saw you asked these questions before. Wish I had said something sooner. Sorry to leave you hanging like that bro. Hope you get it sorted now anyway My server refuses to load with this fix. Could there be an issue with the HALV_CT_TREE itself in the Halv_defines.hpp? I haven't modified that file but the tradedialog.hpp calls for the tree from that file yes? class HALV_CT_TREE { access = 0; // Control access (0 - ReadAndWrite, 1 - ReadAndCreate, 2 - ReadOnly, 3 - ReadOnlyVerified) type = CT_TREE; // Type is 12 style = ST_LEFT; // Style x = 0.35567 * safezoneW + safezoneX; y = 0.137091 * safezoneH + safezoneY; w = 0.438144 * safezoneW; h = 0.725818 * safezoneH; colorBorder[] = {0,.5,1,.8}; // Frame color colorBackground[] = {0.2,0.2,0.2,0.6}; // Fill color colorSelect[] = {1,0.5,0,1}; // Selected item fill color (when multiselectEnabled is 0) colorMarked[] = {1,0.5,0,0.5}; // Marked item fill color (when multiselectEnabled is 1) colorMarkedSelected[] = {1,0.5,0,1}; // Selected item fill color (when multiselectEnabled is 1) sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";// Text size font = "EtelkaMonospacePro"; // Font from CfgFontFamilies shadow = 1; // Shadow (0 - none, 1 - N/A, 2 - black outline) colorText[] = {1,1,1,1}; // Text color colorSelectText[] = {1,1,1,1}; // Selected text color (when multiselectEnabled is 0) colorMarkedText[] = {1,1,1,1}; // Selected text color (when multiselectEnabled is 1) tooltip = ""; // Tooltip text tooltipColorShade[] = {0,0,0,1}; // Tooltip background color tooltipColorText[] = {1,1,1,1}; // Tooltip text color tooltipColorBox[] = {1,1,1,1}; // Tooltip frame color multiselectEnabled = 0; // Allow selecting multiple items while holding Ctrl or Shift expandOnDoubleclick = 1; // Expand/collapse item upon double-click hiddenTexture = "A3\ui_f\data\gui\rsccommon\rsctree\hiddenTexture_ca.paa"; // Expand icon expandedTexture = "A3\ui_f\data\gui\rsccommon\rsctree\expandedTexture_ca.paa"; // Collapse icon maxHistoryDelay = 1; // Time since last keyboard type search to reset it // Scrollbar configuration class ScrollBar { width = 0; // width of ScrollBar height = 0; // height of ScrollBar // scrollSpeed = 0.01; // scroll speed of ScrollBar arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; // Arrow arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; // Arrow when clicked on border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; // Slider background (stretched vertically) thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; // Dragging element (stretched vertically) color[] = {1,1,1,1}; // Scrollbar color }; colorDisabled[] = {0,0,0,0}; // Does nothing, but must be present, otherwise an error is shown colorArrow[] = {0,0,0,0}; // Does nothing, but must be present, otherwise an error is shown }; Any ideas? Quote Share this post Link to post Share on other sites
He-Man 414 Report post Posted September 28, 2018 YOu should provide us your server rpt log to check for errors Quote Share this post Link to post Share on other sites
C4-timah 1 Report post Posted September 28, 2018 5 hours ago, He-Man said: YOu should provide us your server rpt log to check for errors 7:38:20 Error context ] = {0,0,0,0}; 7:38:20 Warning Message: File mpmissions\__cur_mp.Altis\trader\tradedialog.hpp, line 115: '/HS_trader_dialog/controls/HS_trader_tree.colorPicture': '[' encountered instead of '=' 7:38:20 Warning Message: Config : some input after EndOfFile. Quote Share this post Link to post Share on other sites
C4-timah 1 Report post Posted September 28, 2018 Quote 7:38:20 Error context ] = {0,0,0,0}; 7:38:20 Warning Message: File mpmissions\__cur_mp.Altis\trader\tradedialog.hpp, line 115: '/HS_trader_dialog/controls/HS_trader_tree.colorPicture': '[' encountered instead of '=' 7:38:20 Warning Message: Config : some input after EndOfFile. Quote If there is a typo somewhere in that line, I'll have to unpack the PBO and have a go at it. I'll know for sure once I get home from work. Here is line 114-130. I am unable to figure out why the error is triggering: class HS_trader_tree: HALV_CT_TREE { <---line 115 idc = 9997; text = ""; x = 0.458763 * safezoneW + safezoneX; y = 0.225069 * safezoneH + safezoneY; w = 0.247423 * safezoneW; h = 0.549862 * safezoneH; onTreeDblClick = "_this call HS_additemtolb;false"; onTreeSelChanged = "_this call Halv_onlbtreeselected;false"; colorPicture [] = {0,0,0,0}; colorPictureSelected [] = {0,8,0,0,8}; colorPictureDisabled [] = {0,8,0,0,8}; colorPictureRight [] = {0,8,0,0,8}; colorPictureRightSelected [] = {0,8,0,0,8}; colorPictureRightDisabled [] = {0,8,0,0,8}; }; Quote Share this post Link to post Share on other sites
He-Man 414 Report post Posted September 29, 2018 I am not 100% sure, but it seems you have some weird (invisible) symbols in the text. Replace these lines please and try again: class HS_trader_tree: HALV_CT_TREE { idc = 9997; text = ""; x = 0.458763 * safezoneW + safezoneX; y = 0.225069 * safezoneH + safezoneY; w = 0.247423 * safezoneW; h = 0.549862 * safezoneH; onTreeDblClick = "_this call HS_additemtolb;false"; onTreeSelChanged = "_this call Halv_onlbtreeselected;false"; colorPicture[] = {0,0,0,0}; colorPictureSelected[] = {0,8,0,0,8}; colorPictureDisabled[] = {0,8,0,0,8}; colorPictureRight[] = {0,8,0,0,8}; colorPictureRightSelected[] = {0,8,0,0,8}; colorPictureRightDisabled[] = {0,8,0,0,8}; }; Quote Share this post Link to post Share on other sites
C4-timah 1 Report post Posted September 29, 2018 3 hours ago, He-Man said: I am not 100% sure, but it seems you have some weird (invisible) symbols in the text. Replace these lines please and try again: class HS_trader_tree: HALV_CT_TREE { idc = 9997; text = ""; x = 0.458763 * safezoneW + safezoneX; y = 0.225069 * safezoneH + safezoneY; w = 0.247423 * safezoneW; h = 0.549862 * safezoneH; onTreeDblClick = "_this call HS_additemtolb;false"; onTreeSelChanged = "_this call Halv_onlbtreeselected;false"; colorPicture[] = {0,0,0,0}; colorPictureSelected[] = {0,8,0,0,8}; colorPictureDisabled[] = {0,8,0,0,8}; colorPictureRight[] = {0,8,0,0,8}; colorPictureRightSelected[] = {0,8,0,0,8}; colorPictureRightDisabled[] = {0,8,0,0,8}; }; Please make a note that the original post for this fix has a space before the double brackets for lines 124-129. That was the issue. Server started immediately using the above text and the error no longer appears. Many Thanks He-Man! Spot on! Now for the colors. The following code will allow the original item icons to show in the menu instead of being transparent until you click on them. colorPicture[] = {1,1,1,1}; colorPictureSelected[] = {1,1,1,1}; colorPictureDisabled[] = {1,1,1,0.25}; colorPictureRight[] = {1,1,1,1}; colorPictureRightSelected[] = {1,1,1,1}; colorPictureRightDisabled[] = {1,1,1,0.25}; The above code is the correct color scheme. Thanks to everyone who has contributed to this post and the original fix. Brilliant minds! Quote Share this post Link to post Share on other sites
megaz 18 Report post Posted October 2, 2018 Hello People, I have a issue that keeps poping up : Player finds a vehicle and tries to sell but get a error message : ERROR Attempt to sell (name of Vehicle) twice, and does not give Crypto and does not remove the vehicle. I look at the script and say this which refers to it, but not a clue if or how to fix. ( HS_playertraderequest.sqf) if(_isrental > 0)then{ _message = _message + format[" || %1 'Rental' is OK to sell, dam: %2 pricemod: %3",_x select 4,damage _obj,_damagepricereduction]; removeFromRemainsCollector[_obj]; _obj setVariable["VEHICLE_SLOT","ABORT",true]; _obj setVariable["HSHALFPRICE",0,true]; _obj call HALV_PurgeObject; _cost = ((_x select 1)/_damagepricereduction); _return = _return + _cost; }else{ _message = _message + format[" || - ERROR Attempt to sell %1 twice -",_x select 4,_player]; }; pics below https://imgur.com/a/UsOXJ81 https://imgur.com/a/4WMLhhL Quote Share this post Link to post Share on other sites
megaz 18 Report post Posted October 4, 2018 On 5/29/2015 at 5:09 PM, psychosis said: some trouble with selling car and etc vehicle from mission (ZEV) Anyone else have this issue ? Quote Share this post Link to post Share on other sites
C4-timah 1 Report post Posted October 4, 2018 On 10/2/2018 at 10:54 AM, megaz said: Hello People, I have a issue that keeps poping up : Player finds a vehicle and tries to sell but get a error message : ERROR Attempt to sell (name of Vehicle) twice, and does not give Crypto and does not remove the vehicle. I look at the script and say this which refers to it, but not a clue if or how to fix. ( HS_playertraderequest.sqf) if(_isrental > 0)then{ _message = _message + format[" || %1 'Rental' is OK to sell, dam: %2 pricemod: %3",_x select 4,damage _obj,_damagepricereduction]; removeFromRemainsCollector[_obj]; _obj setVariable["VEHICLE_SLOT","ABORT",true]; _obj setVariable["HSHALFPRICE",0,true]; _obj call HALV_PurgeObject; _cost = ((_x select 1)/_damagepricereduction); _return = _return + _cost; }else{ _message = _message + format[" || - ERROR Attempt to sell %1 twice -",_x select 4,_player]; }; pics below https://imgur.com/a/UsOXJ81 https://imgur.com/a/4WMLhhL I believe the answer to this is back on page 38. I had a similar issue but with buying vehicles from the HS Traders. Quote Share this post Link to post Share on other sites
megaz 18 Report post Posted October 4, 2018 Thank for the reply I already have that see below ? Spoiler /* HALV_takegive_crypto.sqf by Halv Copyright (C) 2015 Halvhjearne & Suppe This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. Contact : [email protected] */ //he-mans fix _player = _this select 0; _nr = _this select 1; _cIndex = EPOCH_customVars find "Crypto"; _vars = _player getVariable["VARS", call EPOCH_defaultVars_SEPXVar]; _current_crypto = _vars select _cIndex; _current_cryptoRaw = _current_crypto; _playerCryptoLimit = EPOCH_customVarLimits select _cIndex; _playerCryptoLimit params ["_playerCryptoLimitMax","_playerCryptoLimitMin"]; _current_crypto = ((_current_cryptoRaw + _nr) min _playerCryptoLimitMax) max _playerCryptoLimitMin; _current_crypto remoteExec ['EPOCH_effectCrypto',(owner _player)]; _vars set[_cIndex, _current_crypto]; _player setVariable["VARS", _vars]; Or should it be like this ? //he-mans fix _player = _this select 0; _nr = _this select 1; _cIndex=EPOCH_customVars find 'Crypto'; _vars = _player getVariable['VARS', call EPOCH_defaultVars_SEPXVar]; _curcrypt = _vars select _cIndex; _newcrypt = _curcrypt+_nr; _newcrypt remoteExec ['EPOCH_effectCrypto',(owner _player)]; _vars set[_cIndex,_newcrypt]; _player setVariable["VARS",_vars]; Quote Share this post Link to post Share on other sites
C4-timah 1 Report post Posted October 4, 2018 I had more lines than what was posted. The lines that were similar I corrected to match He-Mans fix. I'll post my file after I get home from work. But what he posted did in fact work for me. I'll update with specifics so you can see the difference. This is the original file: _player = _this select 0; _nr = _this select 1; _cIndex=EPOCH_customVars find 'Crypto'; _vars = _player getVariable['VARS',[]+EPOCH_defaultVars_SEPXVar]; _curcrypt = _vars select _cIndex; _newcrypt = _curcrypt+_nr; [['effectCrypto',_newcrypt],(owner _player)]call EPOCH_sendPublicVariableClient; _vars set[_cIndex,_newcrypt]; _player setVariable["VARS",_vars]; This is what I had to change it to: _player = _this select 0; _nr = _this select 1; _cIndex=EPOCH_customVars find 'Crypto'; _vars = _player getVariable['VARS', call EPOCH_defaultVars_SEPXVar]; _curcrypt = _vars select _cIndex; _newcrypt = _curcrypt+_nr; _newcrypt remoteExec ['EPOCH_effectCrypto',(owner _player)]; _vars set[_cIndex,_newcrypt]; _player setVariable["VARS",_vars]; Also make sure your init.sqf for your mission.pbo contains these: [] execVM "trader\init.sqf"; [] execVM "trader\resetvehicleammo.sqf"; [] execVM "trader\HALV_takegive_crypto_init.sqf"; Quote Share this post Link to post Share on other sites
megaz 18 Report post Posted October 5, 2018 Thanks for the reply C4- Added the same as you have in HALV_takegive_crypto.sqf //he-mans fix _cryptolimit = 250000; (This is the only difference) _player = _this select 0; _nr = _this select 1; _cIndex=EPOCH_customVars find 'Crypto'; _vars = _player getVariable['VARS', call EPOCH_defaultVars_SEPXVar]; _curcrypt = _vars select _cIndex; _newcrypt = _curcrypt+_nr; _newcrypt remoteExec ['EPOCH_effectCrypto',(owner _player)]; _vars set[_cIndex,_newcrypt]; _player setVariable["VARS",_vars]; got these at top of my init: [] execVM "trader\init.sqf"; [] execVM "trader\resetvehicleammo.sqf"; [] execVM "trader\HALV_takegive_crypto_init.sqf"; [] execVM "R3F_LOG\init.sqf"; _igiload = execVM "IgiLoad\IgiLoadInit.sqf"; [] execVM "addons\halv_spawn\init.sqf"; but still getting : Cant sell vehicle twice error Seems to be random - if i sell say a box truck first one will sell and then the 2nd - 3rd or 4th wont sell with that error ? any one have any idea what to check ? thanks MegaZ Quote Share this post Link to post Share on other sites
C4-timah 1 Report post Posted October 5, 2018 Can you post the full .rpt log of when this error pops up? There could be a clue there as to why this is happening. And I assume this error applies to HS Traders and not Epoch Traders? Quote Share this post Link to post Share on other sites
megaz 18 Report post Posted October 5, 2018 Hi C4 logs below I could not see where it was not sold. Client RPT Spoiler ===================================================================== == C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Arma3_x64.exe == "C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Arma3_x64.exe" -showScriptErrors "-mod=C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Zombies and Demons;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch;C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Reduced Weapon Sway" -connect=194.147.120.63 -port=2302 -beservice Original output filename: Arma3Retail_DX11_x64 Exe timestamp: 2018/07/24 22:21:25 Current time: 2018/10/05 10:05:55 Type: Public Build: Stable Version: 1.84.144923 Allocator: C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Dll\tbb4malloc_bi_x64.dll [2017.0.0.0] [2017.0.0.0] PhysMem: 16 GiB, VirtMem : 131072 GiB, AvailPhys : 12 GiB, AvailVirt : 131068 GiB, AvailPage : 12 GiB ===================================================================== 10:05:55 Detected number of DLCs: 20 10:05:55 DLC index:3 - unable to get DLC data 10:05:55 ----------------------------------------- Dlcs ----------------------------------------- 10:05:55 name appId owned installed available isDlc 10:05:55 Arma 3 107410 yes yes yes no 10:05:55 Unknown -1 no no no yes 10:05:55 Arma 3 Zeus 275700 yes yes yes yes 10:05:55 Arma 3 Helicopters 304380 yes yes yes yes 10:05:55 Arma 3 Laws of War 571710 no no yes yes 10:05:55 Arma 3 DLC Bundle 2 612480 no no yes yes 10:05:55 Arma 3 Malden 639600 yes yes yes yes 10:05:55 Arma 3 Tanks 798390 no no yes yes 10:05:55 Arma 3 Alpha Lite - expires now 228800 no no no yes 10:05:55 Arma 3 Server 233780 yes yes no yes 10:05:55 Arma 3 Soundtrack 249860 yes yes no yes 10:05:55 Arma 3 DLC Bundle 1 304400 yes yes yes yes 10:05:55 Arma 3 Samples 390500 yes yes no yes 10:05:55 Arma 3 Apex 395180 yes yes yes yes 10:05:55 Arma 3 Jets 601670 no no yes yes 10:05:55 Arma 3 Tac-Ops Mission Pack 744950 no no yes yes 10:05:55 Arma 3 Maps 249861 yes yes no yes 10:05:55 Arma 3 Tactical Guide 249862 yes yes no yes 10:05:55 Arma 3 Tools 233800 yes yes no yes 10:05:55 Arma 3 Karts 288520 yes yes yes yes 10:05:55 Arma 3 Marksmen 332350 yes yes yes yes 10:05:55 ---------------------------------------------------------------------------------------- 10:05:55 Cannot register unknown string STR_3DEN_CAMERA_NAME 10:05:55 Cannot register unknown string STR_DIFF_SCENE_ONLY 10:05:55 Cannot register unknown string STR_DIFF_SCENE_AND_MAP 10:05:56 Initializing stats manager. 10:05:56 sessionID: 7c429703299b7777651b810b28e5cfc72b91114e 10:05:58 Unsupported language English in stringtable 10:05:58 Unsupported language English in stringtable 10:05:59 Item STR_EP1_ULB_actionX listed twice 10:05:59 Item str_ep1_paradrop listed twice 10:05:59 Item str_ep1_mortar listed twice 10:05:59 Item str_ep1_menu_title listed twice 10:05:59 Item str_ep1_cancel_support listed twice 10:05:59 Item str_ep1_artillery listed twice 10:05:59 Item str_ep1_ammo_drop listed twice 10:05:59 Item str_ep1_airstrike listed twice 10:05:59 Item STR_EP1_MPA_UI_ItemInfoGUI listed twice 10:05:59 Item STR_EP1_MPA_UI_SpectateGUI listed twice 10:05:59 Item STR_EP1_MPA_UI_SpectateGUI_Title listed twice 10:05:59 Item STR_EP1_MPA_UI_Action_QuickMenu listed twice 10:05:59 Item STR_EP1_MPA_UI_Action_FastTravel listed twice 10:05:59 Item STR_EP1_MPA_UI_Action_Select listed twice 10:05:59 Item STR_EP1_MPA_UI_DebriefingGUI listed twice 10:05:59 Item STR_EP1_MPA_UI_DebriefingGUI_Title listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickSelectItemGUI_Title listed twice 10:05:59 Item STR_EP1_MPA_UI_DebriefingGUI_TitlePlayers listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterFaction_toolTip listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterSet_toolTip listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterType_toolTip listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickSelectItemGUI_SelectButton listed twice 10:05:59 Item STR_EP1_MPA_UI_ShowRankingsGUI_Title listed twice 10:05:59 Item STR_EP1_MPA_UI_Action_ViewInfo listed twice 10:05:59 Item STR_EP1_MPA_UI_ShowRankingsGUI_CloseButton listed twice 10:05:59 Item STR_EP1_MPA_UI_ShowRankingsGUI_CloseButton_toolTip listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_long1 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_long2 listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickSelectItemGUI_CancelButton_toolTip listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_long3 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_long4 listed twice 10:05:59 Item STR_EP1_MPA_UI_VoteMenu1 listed twice 10:05:59 Item STR_EP1_MPA_UI_VoteMenu2 listed twice 10:05:59 Item STR_EP1_MPA_UI_VoteMenu3 listed twice 10:05:59 Item STR_EP1_MPA_UI_VoteMenu4 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_long5 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_long6 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_short1 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_short2 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_short3 listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickMenu1 listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickMenu2 listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickMenu3 listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickMenu4 listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickMenu5 listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickMenu6 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_short4 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_short5 listed twice 10:05:59 Item STR_EP1_MPA_UI_Brochure_short6 listed twice 10:05:59 Item STR_EP1_MPA_UI_DebriefingGUI_Rankings_Item listed twice 10:05:59 Item STR_EP1_MPA_UI_DebriefingGUI_Rankings_Name listed twice 10:05:59 Item STR_EP1_MPA_UI_DebriefingGUI_TitleGoal listed twice 10:05:59 Item STR_EP1_MPA_UI_DebriefingGUI_TitleTeam listed twice 10:05:59 Item STR_EP1_MPA_UI_FastTravel listed twice 10:05:59 Item STR_EP1_MPA_UI_ItemInfoGUI_Loading listed twice 10:05:59 Item STR_EP1_MPA_UI_ItemInfoGUI_Selected listed twice 10:05:59 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterFaction listed twice 10:05:59 Item STR_EP1_MPA_Area_Entrance listed twice 10:05:59 Item STR_EP1_MPA_Hint1 listed twice 10:05:59 Item STR_EP1_MPA_Hint2 listed twice 10:05:59 Item STR_EP1_MPA_Hint3 listed twice 10:05:59 Item STR_EP1_MPA_Hint4 listed twice 10:05:59 Item STR_EP1_MPA_Hint5 listed twice 10:05:59 Item STR_EP1_MPA_Hint6 listed twice 10:05:59 Item STR_EP1_MPA_Hint7 listed twice 10:05:59 Item STR_EP1_MPA_Hint8 listed twice 10:05:59 Item STR_EP1_MPA_Hint9 listed twice 10:05:59 Item STR_EP1_MPA_Hint10 listed twice 10:05:59 Item STR_EP1_MPA_Hint11 listed twice 10:05:59 Item STR_EP1_MPA_Hint12 listed twice 10:05:59 Item STR_EP1_MPA_Hint13 listed twice 10:05:59 Item STR_EP1_MPA_Hint_FastTravel listed twice 10:05:59 Item STR_EP1_MPA_Hint_Respawn listed twice 10:05:59 Item STR_EP1_MPA_Hint14 listed twice 10:05:59 Item STR_EP1_MPA_Hint15 listed twice 10:05:59 Item STR_EP1_MPA_Hint_Preparing listed twice 10:05:59 Item STR_EP1_MPA_Hint_Challenge listed twice 10:05:59 Item STR_EP1_MPA_Hint16 listed twice 10:05:59 Item STR_EP1_MPA_Hint17 listed twice 10:05:59 Item STR_EP1_MPA_Hint18 listed twice 10:05:59 Item STR_EP1_MPA_Hint19 listed twice 10:05:59 Item STR_EP1_MPA_Hint20 listed twice 10:05:59 Item STR_EP1_MPA_Hint21 listed twice 10:05:59 Item STR_EP1_MPA_Hint22 listed twice 10:05:59 Item STR_EP1_MPA_Hint23 listed twice 10:05:59 Item STR_EP1_MPA_Hint24 listed twice 10:05:59 Item STR_EP1_MPA_Hint25 listed twice 10:05:59 Item STR_EP1_MPA_Hint26 listed twice 10:05:59 Item STR_EP1_MPA_Hint27 listed twice 10:05:59 Item STR_EP1_MPA_Hint28 listed twice 10:05:59 Item STR_EP1_MPA_Hint29 listed twice 10:05:59 Item STR_EP1_MPA_Hint30 listed twice 10:05:59 Item STR_EP1_MPA_Hint31 listed twice 10:05:59 Item STR_EP1_MPA_Hint32 listed twice 10:05:59 Item STR_EP1_MPA_Hint33 listed twice 10:05:59 Item STR_EP1_MPA_Hint34 listed twice 10:05:59 Item STR_EP1_MPA_Hint35 listed twice 10:05:59 Item STR_EP1_MPA_Hint36 listed twice 10:05:59 Item STR_EP1_MPA_Hint37 listed twice 10:05:59 Item STR_EP1_MPA_Hint38 listed twice 10:05:59 Item STR_EP1_MPA_Hint39 listed twice 10:05:59 Item STR_EP1_MPA_Hint40 listed twice 10:05:59 Item STR_EP1_MPA_Hint41 listed twice 10:05:59 Item STR_EP1_MPA_Hint42 listed twice 10:05:59 Item STR_EP1_MPA_Hint43 listed twice 10:05:59 Item STR_EP1_MPA_Hint44 listed twice 10:05:59 Item STR_EP1_MPA_Hint45 listed twice 10:05:59 Item STR_EP1_MPA_Hint46 listed twice 10:05:59 Item STR_EP1_MPA_Hint47 listed twice 10:05:59 Item STR_EP1_MPA_Hint48 listed twice 10:05:59 Item STR_EP1_MPA_Hint49 listed twice 10:05:59 Item STR_EP1_MPA_Hint50 listed twice 10:05:59 Item STR_EP1_MPA_Hint51 listed twice 10:05:59 Item STR_EP1_MPA_Hint52 listed twice 10:05:59 Item STR_EP1_MPA_Hint53 listed twice 10:05:59 Item STR_EP1_MPA_Hint54 listed twice 10:05:59 Item STR_EP1_MPA_Hint55 listed twice 10:05:59 Item STR_EP1_MPA_Hint56 listed twice 10:05:59 Item STR_EP1_MPA_Hint57 listed twice 10:05:59 Item STR_EP1_MPA_Hint58 listed twice 10:05:59 Item STR_EP1_MPA_Hint59 listed twice 10:05:59 Item STR_EP1_MPA_Hint60 listed twice 10:05:59 Item STR_EP1_MPA_Hint61 listed twice 10:05:59 Item STR_EP1_MPA_Hint62 listed twice 10:05:59 Item STR_EP1_MPA_Hint63 listed twice 10:05:59 Item STR_EP1_MPA_Hint64 listed twice 10:05:59 Item STR_EP1_MPA_Hint65 listed twice 10:05:59 Item STR_EP1_MPA_Hint66 listed twice 10:05:59 Item STR_EP1_MPA_Hint67 listed twice 10:05:59 Item STR_EP1_MPA_Hint68 listed twice 10:05:59 Item STR_EP1_MPA_Hint69 listed twice 10:05:59 Item STR_EP1_MPA_ArmoryMPManager listed twice 10:05:59 Item STR_EP1_MPA_Area_Static listed twice 10:05:59 Item STR_EP1_MPA_briefingDescription listed twice 10:05:59 Item STR_EP1_MPA_Area_Tracked listed twice 10:05:59 Item STR_EP1_MPA_Briefing_Success listed twice 10:05:59 Item STR_EP1_MPA_Area_Wheeled listed twice 10:05:59 Item STR_EP1_MPA_Briefing_Failure listed twice 10:05:59 Item STR_EP1_MPA_ARMEX_task listed twice 10:05:59 Item STR_EP1_MPA_Briefing_End1 listed twice 10:05:59 Item STR_EP1_MPA_Briefing_End2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Gather listed twice 10:05:59 Item STR_EP1_MPA_Meta_Gather_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_Gather_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Gather_textTask2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Gather_textTask3 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Airtime listed twice 10:05:59 Item STR_EP1_MPA_Meta_Airtime_Current listed twice 10:05:59 Item STR_EP1_MPA_Meta_Airtime_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_MinimumSpeed_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_Airtime_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_MinimumSpeed_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Night listed twice 10:05:59 Item STR_EP1_MPA_Meta_Night_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_Night_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Gather_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Airtime_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Rush listed twice 10:05:59 Item STR_EP1_MPA_Meta_Rush_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_Rush_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Night_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Night_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Rush_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Rush_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_MinimumSpeed_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_AllAboard listed twice 10:05:59 Item STR_EP1_MPA_Meta_AllAboard_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_ProtectPlayer listed twice 10:05:59 Item STR_EP1_MPA_Meta_ProtectPlayer_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_ProtectPlayer_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_AllAboard_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_AllAboard_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_ProtectPlayer_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_ProtectPlayer_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_AllAboard_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_AllAboard_textTask2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Ceiling_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Ceiling_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_RaceToPosition listed twice 10:05:59 Item STR_EP1_MPA_Meta_RaceToPosition_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_RaceToPosition_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Stop_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_Stop_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Ceiling_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Ceiling_textTask2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Stop_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_RaceToPosition_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_RaceToPosition_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Completed listed twice 10:05:59 Item STR_EP1_MPA_Meta_Failed listed twice 10:05:59 Item STR_EP1_MPA_Meta_GetAway_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_GetAway_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_GetAway_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_HighSpeed_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_HighSpeed_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_HighSpeed_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Land_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_Land_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_Land_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_OneEighty_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_SkyHigh_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_SkyHigh_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_OneEighty_textLog listed twice 10:05:59 Item STR_EP1_MPA_Meta_OneEighty_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Meta_YourMetaChal listed twice 10:05:59 Item STR_EP1_MPA_Meta_SkyHigh_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_Aborted listed twice 10:05:59 Item STR_EP1_MPA_Chal_PlayersDisconnected listed twice 10:05:59 Item STR_EP1_MPA_Chal_AttackLocation_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_AttackLocation_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_AttackLocation_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_CheckpointRace_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_DefendLocation_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_CheckpointRace_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_DefendLocation_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_DefendLocation_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_DefendLocation_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Chal_Completion listed twice 10:05:59 Item STR_EP1_MPA_Chal_ConvoyAmbush listed twice 10:05:59 Item STR_EP1_MPA_Chal_ConvoyAmbush_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_ConvoyAmbush_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Chal_ConvoyAmbush_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_ConvoyAmbush_textDebriefing3 listed twice 10:05:59 Item STR_EP1_MPA_Chal_ConvoyAmbush_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_DeathMatch_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_DeathMatch_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Chal_DeathMatch_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_Triathlon listed twice 10:05:59 Item STR_EP1_MPA_Chal_Triathlon_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_DeathMatch_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_DeathMatch_textTask2 listed twice 10:05:59 Item STR_EP1_MPA_Chal_Survival_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_Survival_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_FastTraveled listed twice 10:05:59 Item STR_EP1_MPA_Chal_ItemsUsed listed twice 10:05:59 Item STR_EP1_MPA_Chal_Survival_textDebriefing1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_Survival_textDebriefing2 listed twice 10:05:59 Item STR_EP1_MPA_Chal_LastManStanding listed twice 10:05:59 Item STR_EP1_MPA_Chal_LastManStanding_textLog listed twice 10:05:59 Item STR_EP1_MPA_Chal_LastManStanding_textTask1 listed twice 10:05:59 Item STR_EP1_MPA_Chal_PlayersFastTraveled listed twice 10:05:59 Item STR_EP1_MPA_Chal_Triathlon_Checkpoint listed twice 10:05:59 Item STR_EP1_MPA_Chal_Total listed twice 10:05:59 Item STR_EP1_MPA_Chal_Points listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_hint1 listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_taskShort1 listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_hint2 listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_taskShort2 listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_task1 listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_taskShort3 listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_task2 listed twice 10:05:59 Item STR_EP1_MPA_Tutorial_task3 listed twice 10:05:59 Item STR_EP1_MPA_Briefing_End3 listed twice 10:05:59 Item STR_EP1_MPA_Briefing_End4 listed twice 10:05:59 Item STR_EP1_MPA_Votes_Broadcast1 listed twice 10:05:59 Item STR_EP1_MPA_Votes_Broadcast2 listed twice 10:05:59 Item STR_EP1_MPA_Votes_Broadcast3 listed twice 10:05:59 Item STR_EP1_MPA_Votes_Broadcast4 listed twice 10:05:59 Item STR_EP1_MPA_ARMEX_taskShort listed twice 10:05:59 Item STR_EP1_MPA_ArmoryManager listed twice 10:05:59 Item STR_EP1_MPA_Type_Tracked listed twice 10:05:59 Item STR_EP1_MPA_Misc_FlagCarrierARMEX listed twice 10:05:59 Item STR_EP1_MPA_Misc_ConcreteWall listed twice 10:05:59 Item STR_EP1_MPA_Misc_InfoBoard listed twice 10:05:59 Item STR_EP1_MPA_Misc_Loudspeakers listed twice 10:05:59 Item STR_EP1_MPA_Misc_RedLight listed twice 10:05:59 Item STR_EP1_MPA_Misc_EntranceGate listed twice 10:05:59 Item STR_EP1_MPA_Misc_Direction listed twice 10:05:59 Item STR_EP1_MPA_Misc_PlasticPole listed twice 10:05:59 Item STR_EP1_MPA_Misc_Laptop listed twice 10:05:59 Item STR_EP1_MPA_Type_Wheeled listed twice 10:05:59 Item STR_EP1_MPA_briefingName listed twice 10:05:59 Item STR_EP1_MPA_Broadcast2 listed twice 10:05:59 Item STR_EP1_MPA_Broadcast3 listed twice 10:05:59 Item STR_EP1_MPA_Broadcast4 listed twice 10:05:59 Item STR_EP1_MPA_Broadcast5 listed twice 10:05:59 Item STR_EP1_MPA_Broadcast6 listed twice 10:05:59 Item STR_EP1_MPA_Broadcast1 listed twice 10:05:59 Item STR_EP1_MPA_Broadcast7 listed twice 10:05:59 Item STR_EP1_MPA_Broadcast8 listed twice 10:05:59 Item STR_EP1_MPA_Log_diaryShort1 listed twice 10:05:59 Item STR_EP1_MPA_Log_Chal listed twice 10:05:59 Item STR_EP1_MPA_Log_diaryShort2 listed twice 10:05:59 Item STR_EP1_MPA_Log_diary1 listed twice 10:05:59 Item STR_EP1_MPA_Log_Chal_diary1 listed twice 10:05:59 Item STR_EP1_MPA_Log_diary2 listed twice 10:05:59 Item STR_EP1_MPA_Log_Chal_diaryShort1 listed twice 10:05:59 Item STR_EP1_MPA_Log_diary3 listed twice 10:05:59 Item STR_EP1_MPA_Log_diary4 listed twice 10:05:59 Item STR_EP1_MPA_Log_Meta listed twice 10:05:59 Item STR_EP1_MPA_Log_diary5 listed twice 10:05:59 Item STR_EP1_MPA_Log_Meta_diary1 listed twice 10:05:59 Item STR_EP1_MPA_Log_Meta1 listed twice 10:05:59 Item STR_EP1_MPA_Params_PointLimitAppliedTo listed twice 10:05:59 Item STR_EP1_MPA_Params_PointLimitAppliedTo_Team listed twice 10:05:59 Item STR_EP1_MPA_Params_PointLimit listed twice 10:05:59 Item STR_EP1_MPA_Params_TimeLimit listed twice 10:05:59 Item STR_EP1_MPA_Params_TimeLimit_30 listed twice 10:05:59 Item STR_EP1_MPA_Params_TimeLimit_60 listed twice 10:05:59 Item STR_EP1_MPA_Params_TimeLimit_90 listed twice 10:05:59 Item STR_EP1_MPA_Params_PointLimitAppliedTo_Individuals listed twice 10:05:59 Item STR_EP1_MPA_Params_TimeLimit_120 listed twice 10:05:59 Item STR_EP1_MPA_Params_TimeLimit_150 listed twice 10:05:59 Item str_ep1_location_zavarak listed twice 10:05:59 Item str_ep1_location_zargabad listed twice 10:05:59 Item str_ep1_location_taj listed twice 10:05:59 Item str_ep1_location_yarum listed twice 10:05:59 Item str_ep1_location_timurkalay listed twice 10:05:59 Item str_ep1_location_siahchub listed twice 10:05:59 Item str_ep1_location_thevilla listed twice 10:05:59 Item str_ep1_location_saresangpass listed twice 10:05:59 Item str_ep1_location_sultansafee listed twice 10:05:59 Item str_ep1_location_sanginakt listed twice 10:05:59 Item str_ep1_location_sagram listed twice 10:05:59 Item str_ep1_location_shukurkalay listed twice 10:05:59 Item str_ep1_location_shahbaz listed twice 10:05:59 Item str_ep1_location_shamali listed twice 10:05:59 Item str_ep1_location_safidab listed twice 10:05:59 Item str_ep1_location_rasmanmilitarybase listed twice 10:05:59 Item str_ep1_location_paresiahoilfield listed twice 10:05:59 Item str_ep1_location_naygulvalley listed twice 10:05:59 Item str_ep1_location_sakhee listed twice 10:05:59 Item str_ep1_location_narandarrepass listed twice 10:05:59 Item str_ep1_location_nar listed twice 10:05:59 Item str_ep1_location_nagara1oilfield listed twice 10:05:59 Item str_ep1_location_ravanay listed twice 10:05:59 Item str_ep1_location_mine listed twice 10:05:59 Item str_ep1_location_loymanaraoilfield listed twice 10:05:59 Item str_ep1_location_rasman listed twice 10:05:59 Item str_ep1_location_loymanaraairfield listed twice 10:05:59 Item str_ep1_location_nango listed twice 10:05:59 Item str_ep1_location_nur listed twice 10:05:59 Item str_ep1_location_lalezar listed twice 10:05:59 Item str_ep1_location_jangali listed twice 10:05:59 Item str_ep1_location_jabalassaraj listed twice 10:05:59 Item str_ep1_location_militarybase listed twice 10:05:59 Item str_ep1_location_hazardarakht listed twice 10:05:59 Item str_ep1_location_gurdur listed twice 10:05:59 Item str_ep1_location_nagara listed twice 10:05:59 Item str_ep1_location_durman listed twice 10:05:59 Item str_ep1_location_mulladoost listed twice 10:05:59 Item str_ep1_location_daryache listed twice 10:05:59 Item str_ep1_location_darbangpass listed twice 10:05:59 Item str_ep1_location_chinari listed twice 10:05:59 Item str_ep1_location_charsu listed twice 10:05:59 Item str_ep1_location_hazarbagh listed twice 10:05:59 Item str_ep1_location_loymanara listed twice 10:05:59 Item str_ep1_location_bamjahan listed twice 10:05:59 Item str_ep1_location_landay listed twice 10:05:59 Item str_ep1_location_balapass listed twice 10:05:59 Item str_ep1_location_firuzbaharv listed twice 10:05:59 Item str_ep1_location_khushab listed twice 10:05:59 Item str_ep1_location_aqtappa listed twice 10:05:59 Item str_ep1_location_karachinar listed twice 10:05:59 Item str_ep1_location_factory listed twice 10:05:59 Item str_ep1_location_kakaru listed twice 10:05:59 Item str_ep1_location_ahmaday listed twice 10:05:59 Item str_ep1_location_jilavur listed twice 10:05:59 Item str_ep1_location_abeshurdam listed twice 10:05:59 Item str_ep1_location_jaza listed twice 10:05:59 Item str_ep1_location_airport listed twice 10:05:59 Item str_ep1_location_anar listed twice 10:05:59 Item str_ep1_location_azizayt listed twice 10:05:59 Item str_ep1_location_imarat listed twice 10:05:59 Item STR_EP1_location_bandekirmiz listed twice 10:05:59 Item str_ep1_location_bastam listed twice 10:05:59 Item str_ep1_location_chakchak listed twice 10:05:59 Item str_ep1_location_huzrutimam listed twice 10:05:59 Item str_ep1_location_chaman listed twice 10:05:59 Item str_ep1_location_chardarakht listed twice 10:05:59 Item str_ep1_location_gospandi listed twice 10:05:59 Item str_ep1_location_falar listed twice 10:05:59 Item str_ep1_location_garmsar listed twice 10:05:59 Item str_ep1_location_feeruzabad listed twice 10:05:59 Item STR_EP1_takistan listed twice 10:05:59 Item str_ep1_location_garmarud listed twice 10:05:59 Item str_ep1_lib_uzi_sd listed twice 10:05:59 Item str_ep1_lib_uzi listed twice 10:05:59 Item str_ep1_lib_scar_l_std_mk4cqt listed twice 10:05:59 Item str_ep1_lib_scar_l_std_holo listed twice 10:05:59 Item str_ep1_lib_scar_l_std_eglm_tws listed twice 10:05:59 Item str_ep1_lib_scar_l_std_eglm_rco listed twice 10:05:59 Item str_ep1_lib_scar_l_cqc_holo listed twice 10:05:59 Item str_ep1_lib_scar_l_cqc_cco_sd listed twice 10:05:59 Item str_ep1_lib_scar_l_cqc listed twice 10:05:59 Item str_ep1_lib_scar_h_std_tws_sd listed twice 10:05:59 Item str_ep1_lib_scar_h_std_eglm_spect listed twice 10:05:59 Item str_ep1_lib_scar_h_lng_sniper_sd listed twice 10:05:59 Item str_ep1_lib_scar_h_lng_sniper listed twice 10:05:59 Item str_ep1_lib_scar_h_cqc_cco_sd listed twice 10:05:59 Item str_ep1_lib_scar_h_cqc_cco listed twice 10:05:59 Item str_ep1_lib_sa61 listed twice 10:05:59 Item str_ep1_lib_sa58p listed twice 10:05:59 Item str_ep1_lib_revolver_gold listed twice 10:05:59 Item str_ep1_lib_revolver listed twice 10:05:59 Item str_ep1_lib_mk13_ep1 listed twice 10:05:59 Item str_ep1_lib_maaws listed twice 10:05:59 Item str_ep1_lib_m79_ep1 listed twice 10:05:59 Item str_ep1_lib_m60a4 listed twice 10:05:59 Item str_ep1_lib_m47launcher_ep1 listed twice 10:05:59 Item str_ep1_lib_m32_ep1 listed twice 10:05:59 Item str_ep1_lib_m240_scoped_ep1 listed twice 10:05:59 Item str_ep1_lib_m14_ep1 listed twice 10:05:59 Item str_ep1_lib_m110_tws_ep1 listed twice 10:05:59 Item str_ep1_lib_leeenfield listed twice 10:05:59 Item str_ep1_lib_glock17 listed twice 10:05:59 Item str_ep1_lib_fn_fal listed twice 10:05:59 Item str_ep1_lib_aks_74_nspu listed twice 10:05:59 Item str_ep1_lib_aks_74_goshawk listed twice 10:05:59 Item str_ep1_lib_aks_74 listed twice 10:05:59 Item str_ep1_lib_ak_74_gl_kobra_library listed twice 10:05:59 Item str_ep1_dss_uzi_sd_ep1 listed twice 10:05:59 Item str_ep1_dss_uzi_ep1 listed twice 10:05:59 Item str_ep1_dss_scar_l_std_mk4cqt listed twice 10:05:59 Item str_ep1_dss_scar_l_std_holo listed twice 10:05:59 Item str_ep1_dss_scar_l_std_eglm_tws listed twice 10:05:59 Item str_ep1_dss_scar_l_std_eglm_rco listed twice 10:05:59 Item str_ep1_dss_scar_l_cqc_holo listed twice 10:05:59 Item str_ep1_dss_scar_l_cqc_cco_sd listed twice 10:05:59 Item str_ep1_dss_scar_l_cqc listed twice 10:05:59 Item str_ep1_dss_scar_h_std_tws_sd listed twice 10:05:59 Item str_ep1_dss_scar_h_std_eglm_spect listed twice 10:05:59 Item str_ep1_dss_scar_h_lng_sniper_sd listed twice 10:05:59 Item str_ep1_dss_scar_h_lng_sniper listed twice 10:05:59 Item str_ep1_dss_scar_h_cqc_cco_sd listed twice 10:05:59 Item str_ep1_dss_scar_h_cqc_cco listed twice 10:05:59 Item str_ep1_dss_sa61_ep1 listed twice 10:05:59 Item str_ep1_dss_sa58p_ep1 listed twice 10:05:59 Item str_ep1_dss_revolver_gold_ep1 listed twice 10:05:59 Item str_ep1_dss_revolver_ep1 listed twice 10:05:59 Item str_ep1_dss_mk13_ep1 listed twice 10:05:59 Item str_ep1_dss_maaws_hedp listed twice 10:05:59 Item str_ep1_dss_maaws_heat listed twice 10:05:59 Item str_ep1_dss_maaws listed twice 10:05:59 Item str_ep1_dss_m79_ep1 listed twice 10:05:59 Item str_ep1_dss_m60a4_ep1 listed twice 10:05:59 Item str_ep1_dss_m4a3_ep1 listed twice 10:05:59 Item str_ep1_dss_m4a3_cco_ep1 listed twice 10:05:59 Item str_ep1_dss_m47launcher_ep1 listed twice 10:05:59 Item str_ep1_dss_m32_ep1 listed twice 10:05:59 Item str_ep1_dss_m14_ep1 listed twice 10:05:59 Item str_ep1_dss_m110_tws_ep1 listed twice 10:05:59 Item str_ep1_dss_leeenfield listed twice 10:05:59 Item str_ep1_dss_irstrobe listed twice 10:05:59 Item str_ep1_dss_glock17_ep1 listed twice 10:05:59 Item str_ep1_dss_fn_fal listed twice 10:05:59 Item str_ep1_dss_dragon_ep1 listed twice 10:05:59 Item str_ep1_dss_aks_74_nspu listed twice 10:05:59 Item str_ep1_dss_aks_74_goshawk listed twice 10:05:59 Item str_ep1_dss_aks_74 listed twice 10:05:59 Item str_ep1_dss_ak_74_gl_kobra listed twice 10:05:59 Item str_ep1_dss_6rnd_smokeyellow_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_smokered_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_smoke_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_smokegreen_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_he_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_flareyellow_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_flarewhite_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_flarered_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_flaregreen_m203 listed twice 10:05:59 Item str_ep1_dss_6rnd_45acp listed twice 10:05:59 Item str_ep1_dss_6rnd_105mm_apds listed twice 10:05:59 Item str_ep1_dss_30rnd_9x19_uzi_sd listed twice 10:05:59 Item str_ep1_dss_30rnd_9x19_uzi listed twice 10:05:59 Item str_ep1_dss_30rnd_762x39_sa58 listed twice 10:05:59 Item str_ep1_dss_20rnd_762x51_sb_scar listed twice 10:05:59 Item str_ep1_dss_20rnd_762x51_fnfal listed twice 10:05:59 Item str_ep1_dss_20rnd_762x51_b_scar listed twice 10:05:59 Item str_ep1_dss_17rnd_9x19_glock17 listed twice 10:05:59 Item str_ep1_dss_12rnd_105mm_hesh listed twice 10:05:59 Item str_ep1_dss_10x_303 listed twice 10:05:59 Item str_ep1_dss_10rnd_b_765x17_ball listed twice 10:05:59 Item str_ep1_dss_100rnd_556x45_m249 listed twice 10:05:59 Item str_ep1_dn_yakb listed twice 10:05:59 Item str_ep1_dn_uzi_sd_ep1 listed twice 10:05:59 Item str_ep1_dn_uzi_ep1 listed twice 10:05:59 Item str_ep1_dn_usvehiclebox_ep1 listed twice 10:05:59 Item str_ep1_dn_us_uav_pack_ep1 listed twice 10:05:59 Item str_ep1_dn_usspecialweapons_ep1 listed twice 10:05:59 Item str_ep1_dn_us_patrol_pack_ep1 listed twice 10:05:59 Item str_ep1_dn_usordnancebox_ep1 listed twice 10:05:59 Item str_ep1_dn_uslaunchers_ep1 listed twice 10:05:59 Item str_ep1_dn_usbasicweapons_ep1 listed twice 10:05:59 Item str_ep1_dn_usbasicbag listed twice 10:05:59 Item str_ep1_dn_usbasicammunitionbox_ep1 listed twice 10:05:59 Item str_ep1_dn_us_backpack_ep1 listed twice 10:05:59 Item str_ep1_dn_us_assault_pack_ep1 listed twice 10:05:59 Item str_ep1_dn_unbasicweapons_ep1 listed twice 10:05:59 Item str_ep1_dn_unbasicammunitionbox_ep1 listed twice 10:05:59 Item str_ep1_dn_tripod_bag listed twice 10:05:59 Item str_ep1_dn_tow_tripod_us_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_tow_tripod_us_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_tkvehiclebox_ep1 listed twice 10:05:59 Item str_ep1_dn_tkspecialweapons_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_rpg_backpack_ep1 listed twice 10:05:59 Item str_ep1_dn_tkordnancebox_ep1 listed twice 10:05:59 Item str_ep1_lib_scar_l_cqc_eglm_holo listed twice 10:05:59 Item str_ep1_dn_tklaunchers_ep1 listed twice 10:05:59 Item str_ep1_dn_tkbasicweapons_ep1 listed twice 10:05:59 Item str_ep1_dn_tkbasicammunitionbox_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_assault_pack_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_alice_pack_ep1 listed twice 10:05:59 Item str_ep1_dn_svd_nspu_ep1 listed twice 10:05:59 Item str_ep1_dn_svd_des_ep1 listed twice 10:05:59 Item str_ep1_dn_svd listed twice 10:05:59 Item str_ep1_dn_spg9_tk_ins_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_spg9_tk_gue_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_spg9_tk_gue_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_some_bag_assembleinfo listed twice 10:05:59 Item str_ep1_dn_some_bag listed twice 10:05:59 Item str_ep1_dn_smokelauncher listed twice 10:05:59 Item str_ep1_dn_sgmt listed twice 10:05:59 Item str_ep1_dn_scar_l_std_mk4cqt listed twice 10:05:59 Item str_ep1_dn_scar_l_std_holo listed twice 10:05:59 Item str_ep1_dn_scar_l_std_eglm_tws listed twice 10:05:59 Item str_ep1_dn_scar_l_std_eglm_rco listed twice 10:05:59 Item str_ep1_dn_scar_l_cqc_holo listed twice 10:05:59 Item str_ep1_dn_scar_l_cqc_eglm_holo listed twice 10:05:59 Item str_ep1_dn_scar_l_cqc_cco_sd listed twice 10:05:59 Item str_ep1_dn_scar_l_cqc listed twice 10:05:59 Item str_ep1_dn_scar_h_std_tws_sd listed twice 10:05:59 Item str_ep1_dn_scar_h_std_eglm_spect listed twice 10:05:59 Item str_ep1_dn_scar_h_lng_sniper_sd listed twice 10:05:59 Item str_ep1_dn_scar_h_lng_sniper listed twice 10:05:59 Item str_ep1_dn_scar_h_cqc_cco_sd listed twice 10:05:59 Item str_ep1_dn_scar_h_cqc_cco listed twice 10:05:59 Item str_ep1_dn_sa61_ep1 listed twice 10:05:59 Item str_ep1_dn_sa58v_rco_ep1 listed twice 10:05:59 Item str_ep1_dn_sa58v_ep1 listed twice 10:05:59 Item str_ep1_dn_sa58v_cco_ep1 listed twice 10:05:59 Item str_ep1_dn_sa58p_ep1 listed twice 10:05:59 Item str_ep1_dn_rpg7v listed twice 10:05:59 Item str_ep1_dn_rifle_m203muzzle listed twice 10:05:59 Item str_ep1_dss_scar_l_cqc_eglm_holo listed twice 10:05:59 Item str_ep1_dn_revolver_gold_ep1 listed twice 10:05:59 Item str_ep1_dn_revolver_ep1 listed twice 10:05:59 Item str_ep1_dn_mk_48_des_ep1 listed twice 10:05:59 Item str_ep1_dn_mk19_tripod_us_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_mk19_tripod_us_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_mk19 listed twice 10:05:59 Item str_ep1_dn_mk13_ep1 listed twice 10:05:59 Item str_ep1_dn_mg36_camo listed twice 10:05:59 Item str_ep1_dn_metis_tk_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_metis_tk_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_makarovsd listed twice 10:05:59 Item str_ep1_dn_maaws_hedp listed twice 10:05:59 Item str_ep1_dn_maaws_heat listed twice 10:05:59 Item str_ep1_dn_maaws listed twice 10:05:59 Item str_ep1_dn_m9sd listed twice 10:05:59 Item str_ep1_dn_m79_ep1 listed twice 10:05:59 Item str_ep1_dn_m68 listed twice 10:05:59 Item str_ep1_dn_m60a4_ep1 listed twice 10:05:59 Item str_ep1_dn_m4a3_rco_gl_ep1 listed twice 10:05:59 Item str_ep1_dn_m4a3_ep1 listed twice 10:05:59 Item str_ep1_dn_m4a3_cco_ep1 listed twice 10:05:59 Item str_ep1_dn_m47launcher_ep1 listed twice 10:05:59 Item str_ep1_dn_m32_ep1 listed twice 10:05:59 Item str_ep1_dn_m2staticmg_us_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_m2staticmg_us_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_m2hd_mini_tripod_us_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_m2hd_mini_tripod_us_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_m252_us_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_m252_us_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_m252_base listed twice 10:05:59 Item str_ep1_dn_m24_des_ep1 listed twice 10:05:59 Item str_ep1_dn_m249_tws_ep1 listed twice 10:05:59 Item str_ep1_dn_m249_m145_ep1 listed twice 10:05:59 Item str_ep1_dn_m240_scoped_ep1 listed twice 10:05:59 Item str_ep1_dn_m2 listed twice 10:05:59 Item str_ep1_dn_m14_ep1 listed twice 10:05:59 Item str_ep1_dn_m134_lowrof listed twice 10:05:59 Item str_ep1_dn_m134_highrof listed twice 10:05:59 Item str_ep1_dn_m134 listed twice 10:05:59 Item str_ep1_dn_m120 listed twice 10:05:59 Item str_ep1_dn_m110_tws_ep1 listed twice 10:05:59 Item str_ep1_dn_m110_nvg_ep1 listed twice 10:05:59 Item str_ep1_dn_m107_tws_ep1 listed twice 10:05:59 Item str_ep1_dn_leeenfield listed twice 10:05:59 Item str_ep1_dn_kpvt listed twice 10:05:59 Item str_ep1_dn_kord_un_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_kord_tk_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_kord_tk_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_kord_high_un_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_kord_high_tk_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_kord_high_tk_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_ir_strobe_target listed twice 10:05:59 Item str_ep1_dn_ir_strobe_marker listed twice 10:05:59 Item str_ep1_dn_grad listed twice 10:05:59 Item str_ep1_dn_glock17_ep1 listed twice 10:05:59 Item str_ep1_dn_gerbasicweapons_ep1 listed twice 10:05:59 Item str_ep1_dn_g36k_camo listed twice 10:05:59 Item str_ep1_dn_g36_c_sd_camo listed twice 10:05:59 Item str_ep1_dn_g36c_camo listed twice 10:05:59 Item str_ep1_dn_g36a_camo listed twice 10:05:59 Item str_ep1_dn_fn_fal_anpvs4 listed twice 10:05:59 Item str_ep1_dn_fn_fal listed twice 10:05:59 Item str_ep1_dn_ffarlauncher listed twice 10:05:59 Item str_ep1_dn_eglm listed twice 10:05:59 Item str_ep1_dn_dshkm_tk_ins_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_dshkm_tk_gue_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_dshkm_tk_gue_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_dshkm_mini_tripod_tk_ins_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_dshkm_mini_tripod_tk_gue_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_dshkm_mini_tripod_tk_gue_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_dshkm_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_dragon_ep1 listed twice 10:05:59 Item str_ep1_dn_de_backpack_specops_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_vestpouch_ep1 listed twice 10:05:59 Item str_ep1_dn_czbasicweapons_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_backpack_ep1 listed twice 10:05:59 Item str_ep1_dn_colt1911_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgweapons_throw_irstrobe listed twice 10:05:59 Item str_ep1_dn_cfgweapons_binocular_vector listed twice 10:05:59 Item str_ep1_dn_cfgweapons_aks_74_nspu listed twice 10:05:59 Item str_ep1_dn_cfgweapons_aks_74_goshawk listed twice 10:05:59 Item str_ep1_dn_cfgweapons_ak_74_gl_kobra listed twice 10:05:59 Item str_ep1_dn_cfgweapons_ak_74_gl listed twice 10:05:59 Item str_ep1_dn_azp85 listed twice 10:05:59 Item str_ep1_dn_ags_un_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_ags_tk_ins_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_ags_tk_gue_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_ags_tk_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_ags_tk_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_ags_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_80mmlauncher listed twice 10:05:59 Item str_ep1_dn_6rnd_smokeyellow_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_smokered_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_smoke_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_smokegreen_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_he_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_flareyellow_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_flarewhite_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_flarered_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_flaregreen_m203 listed twice 10:05:59 Item str_ep1_dn_6rnd_45acp listed twice 10:05:59 Item str_ep1_dn_6rnd_105mm_apds listed twice 10:05:59 Item str_ep1_dn_57mmlauncher listed twice 10:05:59 Item str_ep1_dn_30rnd_9x19_uzi_sd listed twice 10:05:59 Item str_ep1_dn_30rnd_9x19_uzi listed twice 10:05:59 Item str_ep1_dn_30rnd_762x39_sa58 listed twice 10:05:59 Item str_ep1_dn_2b14_82mm_tk_ins_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_2b14_82mm_tk_gue_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_2b14_82mm_tk_bag_ep1_assembleinfo listed twice 10:05:59 Item str_ep1_dn_2b14_82mm_tk_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_2b14_82mm_bag_ep1 listed twice 10:05:59 Item str_ep1_dn_2a42_lowrof listed twice 10:05:59 Item str_ep1_dn_2a42_highrof listed twice 10:05:59 Item str_ep1_dn_2a14 listed twice 10:05:59 Item str_ep1_dn_24rnd_120mmhe_m120 listed twice 10:05:59 Item str_ep1_dn_21rnd_100mmheat_d10 listed twice 10:05:59 Item str_ep1_dn_20rnd_762x51_sb_scar listed twice 10:05:59 Item str_ep1_dn_20rnd_762x51_fnfal listed twice 10:05:59 Item str_ep1_dn_20rnd_762x51_b_scar listed twice 10:05:59 Item str_ep1_dn_17rnd_9x19_glock17 listed twice 10:05:59 Item str_ep1_dn_12rnd_105mm_hesh listed twice 10:05:59 Item str_ep1_dn_10x_303_leeenfield listed twice 10:05:59 Item str_ep1_dn_10rnd_b_765x17_ball listed twice 10:05:59 Item str_ep1_dn_100rnd_556x45_m249 listed twice 10:05:59 Item str_ep1_dn_20rnd_b_765x17_ball listed twice 10:05:59 Item str_ep1_dss_20rnd_b_765x17_ball listed twice 10:05:59 Item str_ep1_dss_aks74_kobra listed twice 10:05:59 Item str_ep1_dss_m4a3_cco listed twice 10:05:59 Item str_ep1_dss_m4a3_rco_gl listed twice 10:05:59 Item str_ep1_dss_metis listed twice 10:05:59 Item str_ep1_sn_sd listed twice 10:05:59 Item str_ep1_lib_aks74_kobra listed twice 10:05:59 Item str_ep1_sn_white listed twice 10:05:59 Item str_ep1_sn_he listed twice 10:05:59 Item str_ep1_lib_m4a3_cco listed twice 10:05:59 Item str_ep1_sn_yellow listed twice 10:05:59 Item str_ep1_lib_m4a3_rco_gl listed twice 10:05:59 Item str_ep1_sn_red listed twice 10:05:59 Item str_ep1_sn_green listed twice 10:05:59 Item str_ep1_sn_ap listed twice 10:05:59 Item str_ep1_sn_purple listed twice 10:05:59 Item str_ep1_sn_apfsds listed twice 10:05:59 Item str_ep1_sn_at listed twice 10:05:59 Item str_ep1_sn_orange listed twice 10:05:59 Item str_ep1_sn_pg7v listed twice 10:05:59 Item str_ep1_sn_pg7vl listed twice 10:05:59 Item str_ep1_sn_pg7vr listed twice 10:05:59 Item str_ep1_sn_blue listed twice 10:05:59 Item str_ep1_sn_frag listed twice 10:05:59 Item str_ep1_sn_heaa listed twice 10:05:59 Item str_ep1_sn_hedp listed twice 10:05:59 Item str_ep1_sn_og7 listed twice 10:05:59 Item str_ep1_lib_volha_tk_civ listed twice 10:05:59 Item str_ep1_lib_v3s listed twice 10:05:59 Item str_ep1_lib_suv listed twice 10:05:59 Item str_ep1_lib_s1203_tk_civ listed twice 10:05:59 Item str_ep1_lib_old_bike listed twice 10:05:59 Item str_ep1_lib_maz_543_scud listed twice 10:05:59 Item str_ep1_lib_landrover_spg9 listed twice 10:05:59 Item str_ep1_lib_landrover_special_cz listed twice 10:05:59 Item str_ep1_lib_landrover_mg listed twice 10:05:59 Item str_ep1_lib_landrover listed twice 10:05:59 Item str_ep1_lib_hmmwv_m998_crows_mk19_des listed twice 10:05:59 Item str_ep1_lib_hmmwv_m998_crows_m2_des listed twice 10:05:59 Item str_ep1_lib_hmmwv_m1151_m2_des listed twice 10:05:59 Item str_ep1_lib_hmmwv_m1035_des listed twice 10:05:59 Item str_ep1_lib_btr60_tk listed twice 10:05:59 Item str_ep1_lib_btr40_mg listed twice 10:05:59 Item str_ep1_lib_btr40 listed twice 10:05:59 Item str_ep1_lib_atv listed twice 10:05:59 Item str_ep1_dn_volha_tk_civ_base_ep1 listed twice 10:05:59 Item str_ep1_dn_volhalimo_tk_civ_ep1 listed twice 10:05:59 Item str_ep1_dn_volha_2_tk_civ_ep1 listed twice 10:05:59 Item str_ep1_dn_volha_1_tk_civ_ep1 listed twice 10:05:59 Item str_ep1_dn_v3s_repair_tk_gue_ep1 listed twice 10:05:59 Item str_ep1_dn_v3s_refuel_tk_gue_ep1 listed twice 10:05:59 Item str_ep1_dn_v3s_reammo_tk_gue_ep1 listed twice 10:05:59 Item str_ep1_dn_v3s_open_tk_ep1 listed twice 10:05:59 Item str_ep1_dn_v3s_open_tk_civ_ep1 listed twice 10:05:59 Item str_ep1_dn_suv_base_ep1 listed twice 10:05:59 Item str_ep1_dn_s1203_tk_civ_ep1 listed twice 10:05:59 Item str_ep1_dn_s1203_funeral_ep1 listed twice 10:05:59 Item str_ep1_dn_s1203_ambulance_ep1 listed twice 10:05:59 Item str_ep1_dn_old_moto_base listed twice 10:05:59 Item str_ep1_dn_old_bike_base_ep1 listed twice 10:05:59 Item str_ep1_dn_mtvrrepair_des_ep1 listed twice 10:05:59 Item str_ep1_dn_mtvrrefuel_des_ep1 listed twice 10:05:59 Item str_ep1_dn_mtvrreammo_des_ep1 listed twice 10:05:59 Item str_ep1_dn_mtvr_des_ep1 listed twice 10:05:59 Item str_ep1_dn_maz_543_scud_base_ep1 listed twice 10:05:59 Item str_ep1_dn_m1135_atgmv_ep1 listed twice 10:05:59 Item str_ep1_dn_m1133_mev_ep1 listed twice 10:05:59 Item str_ep1_dn_m1130_cv_ep1 listed twice 10:05:59 Item str_ep1_dn_m1129_mc_ep1 listed twice 10:05:59 Item str_ep1_dn_m1128_mgs_ep1 listed twice 10:05:59 Item str_ep1_dn_m1126_icv_mk19_ep1 listed twice 10:05:59 Item str_ep1_dn_m1126_icv_m2_ep1 listed twice 10:05:59 Item str_ep1_dn_m1126_icv_base_ep1 listed twice 10:05:59 Item str_ep1_dn_landrover_spg9_base_ep1 listed twice 10:05:59 Item str_ep1_dn_landrover_special_cz_ep1 listed twice 10:05:59 Item str_ep1_dn_landrover_mg_base_ep1 listed twice 10:05:59 Item str_ep1_dn_landrover_base listed twice 10:05:59 Item str_ep1_dn_lada2_tk_civ_ep1 listed twice 10:05:59 Item str_ep1_dn_lada1_tk_civ_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_terminal_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_m998_crows_mk19_des_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_m998_crows_m2_des_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_m998a2_sov_des_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_m1151_m2_des_base_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_m1035_des_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_avenger listed twice 10:05:59 Item str_ep1_dn_hilux1_civil_3_open_ep1 listed twice 10:05:59 Item str_ep1_dn_btr60_tk_ep1 listed twice 10:05:59 Item str_ep1_dn_btr40_mg_base_ep1 listed twice 10:05:59 Item str_ep1_dn_btr40_base_ep1 listed twice 10:05:59 Item str_ep1_dn_atv_base_ep1 listed twice 10:05:59 Item STR_EP1_dn_motorcycle listed twice 10:05:59 Item STR_EP1_dn_old_moto listed twice 10:05:59 Item STR_EP1_lib_motorcycle listed twice 10:05:59 Item str_ep1_dn_waterbasin_conc_ep1 listed twice 10:05:59 Item str_ep1_dn_uh60_wreck_ep1 listed twice 10:05:59 Item str_ep1_dn_training_target_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_sphere25cm_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_sphere10cm_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_sphere100cm_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_mp_op_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_mp_ind_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_mp_blu_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_circle_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_checkpoint_us_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_checkpoint_tk_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_arrow_down_large_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_arrow_down_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_1l_noentry_ep1 listed twice 10:05:59 Item str_ep1_dn_sign_1l_firstaid_ep1 listed twice 10:05:59 Item str_ep1_dn_misc_videoprojektor_platno listed twice 10:05:59 Item str_ep1_dn_misc_backpackheap_ep1 listed twice 10:05:59 Item str_ep1_dn_microphone3_ep1 listed twice 10:05:59 Item str_ep1_dn_microphone2_ep1 listed twice 10:05:59 Item str_ep1_dn_microphone1_ep1 listed twice 10:05:59 Item str_ep1_dn_map_for_briefing_ep1 listed twice 10:05:59 Item str_ep1_dn_land_radar_ep1 listed twice 10:05:59 Item str_ep1_dn_land_misc_cargo1eo_ep1 listed twice 10:05:59 Item str_ep1_dn_land_misc_cargo1e_ep1 listed twice 10:05:59 Item str_ep1_dn_land_hlidac_budka_ep1 listed twice 10:05:59 Item str_ep1_dn_land_fort_rampart_ep1 listed twice 10:05:59 Item str_ep1_dn_land_fortified_nest_small_ep1 listed twice 10:05:59 Item str_ep1_dn_land_fort_artillery_nest_ep1 listed twice 10:05:59 Item str_ep1_dn_land_camonetvar_nato_ep1 listed twice 10:05:59 Item str_ep1_dn_land_camonetvar_east_ep1 listed twice 10:05:59 Item str_ep1_dn_land_camonet_nato_ep1 listed twice 10:05:59 Item str_ep1_dn_land_camonet_east_ep1 listed twice 10:05:59 Item str_ep1_dn_land_camonetb_nato_ep1 listed twice 10:05:59 Item str_ep1_dn_land_camonetb_east_ep1 listed twice 10:05:59 Item str_ep1_dn_hmmwv_ghost_ep1 listed twice 10:05:59 Item str_ep1_dn_gunrackus_ep1 listed twice 10:05:59 Item str_ep1_dn_gunracktk_ep1 listed twice 10:05:59 Item str_ep1_dn_flagpole_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierwhite_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierusarmy_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierusa_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrieruno_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriertkmilitia_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriertfknight_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriertakistankingdom_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriertakistan_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierredcrystal_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierredcross_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierredcrescent_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierpowmia_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrieropfor_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriernato_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierindfor_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriergermany_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierczechrepublic_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriercdf_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarriercdfensign_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierblufor_ep1 listed twice 10:05:59 Item str_ep1_dn_flagcarrierbis_ep1 listed twice 10:05:59 Item str_ep1_dn_dirtmount_ep1 listed twice 10:05:59 Item str_ep1_dn_cluttercutter_small_ep1 listed twice 10:05:59 Item str_ep1_dn_cluttercutter_small_2_ep1 listed twice 10:05:59 Item str_ep1_dn_cluttercutter_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgvehicles_protectionzone_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgvehicles_infostand_2_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgvehicles_infostand_1_ep1 listed twice 10:05:59 Item str_ep1_dn_c130j_wreck_ep1 listed twice 10:05:59 Item str_ep1_dn_c130j_static_ep1_useractions_cargoopen listed twice 10:05:59 Item str_ep1_dn_c130j_static_ep1_useractions_cargoclose listed twice 10:05:59 Item str_ep1_dn_c130j_static_ep1 listed twice 10:05:59 Item str_ep1_dn_bleacher_ep1 listed twice 10:05:59 Item str_ep1_dn_ammocrates_nointeractive_small listed twice 10:05:59 Item str_ep1_dn_ammocrates_nointeractive_medium listed twice 10:05:59 Item str_ep1_dn_ammocrates_nointeractive_large listed twice 10:05:59 Item str_ep1_dn_ammocrate_nointeractive_base_ep1 listed twice 10:05:59 Item str_ep1_dn_ammocrate_nointeractive_ listed twice 10:05:59 Item str_ep1_dn_wf_vehicleservicepoint listed twice 10:05:59 Item str_ep1_dn_wf_uavterminal listed twice 10:05:59 Item str_ep1_dn_wf_lightfactory listed twice 10:05:59 Item str_ep1_dn_wf_hq_unfolded listed twice 10:05:59 Item str_ep1_dn_wf_heavyfactory listed twice 10:05:59 Item str_ep1_dn_wf_fieldhhospital listed twice 10:05:59 Item str_ep1_dn_wf_contructionsite2 listed twice 10:05:59 Item str_ep1_dn_wf_contructionsite listed twice 10:05:59 Item str_ep1_dn_wf_barracks listed twice 10:05:59 Item str_ep1_dn_wf_artilleryradar listed twice 10:05:59 Item str_ep1_dn_wf_antiairradar listed twice 10:05:59 Item str_ep1_dn_wf_aircraftfactory listed twice 10:05:59 Item str_ep1_lib_uh60m listed twice 10:05:59 Item str_ep1_lib_uh1h listed twice 10:05:59 Item str_ep1_lib_mh6j listed twice 10:05:59 Item str_ep1_lib_ch47 listed twice 10:05:59 Item str_ep1_lib_an2 listed twice 10:05:59 Item str_ep1_lib_ah6x listed twice 10:05:59 Item str_ep1_lib_ah6j listed twice 10:05:59 Item str_ep1_lib_ah64 listed twice 10:05:59 Item str_ep1_lib_mq9predatorb listed twice 10:05:59 Item str_ep1_lib_t55 listed twice 10:05:59 Item str_ep1_lib_m6 listed twice 10:05:59 Item str_ep1_lib_m2a2 listed twice 10:05:59 Item str_ep1_dn_t55 listed twice 10:05:59 Item str_ep1_dn_m6_ep1 listed twice 10:05:59 Item str_ep1_dn_m2a3_ep1 listed twice 10:05:59 Item str_ep1_dn_m2a2_ep1 listed twice 10:05:59 Item str_ep1_dn_m2a2_base listed twice 10:05:59 Item STR_EP1_dn_t34 listed twice 10:05:59 Item STR_EP1_lib_t34 listed twice 10:05:59 Item str_ep1_dn_vc_test_ep1 listed twice 10:05:59 Item str_ep1_dn_vc_structures_e listed twice 10:05:59 Item str_ep1_dn_vc_military_us listed twice 10:05:59 Item str_ep1_dn_vc_military_tka listed twice 10:05:59 Item str_ep1_dn_vc_military_gue listed twice 10:05:59 Item str_ep1_dn_vc_menspecialforces listed twice 10:05:59 Item str_ep1_dn_vc_menspecial listed twice 10:05:59 Item str_ep1_dn_vc_mendeltaforce listed twice 10:05:59 Item str_ep1_dn_vc_helpers listed twice 10:05:59 Item str_ep1_dn_vc_backpacks listed twice 10:05:59 Item str_ep1_dn_vc_animals_tk listed twice 10:05:59 Item str_ep1_dn_uh60m_mev listed twice 10:05:59 Item str_ep1_dn_uh60m listed twice 10:05:59 Item str_ep1_dn_uh60_base listed twice 10:05:59 Item str_ep1_dn_uh1h_base listed twice 10:05:59 Item str_ep1_dn_mi171sh_rockets listed twice 10:05:59 Item str_ep1_dn_mi171sh listed twice 10:05:59 Item str_ep1_dn_mh6j listed twice 10:05:59 Item str_ep1_dn_m230 listed twice 10:05:59 Item str_ep1_dn_fn_bis_us listed twice 10:05:59 Item str_ep1_dn_fn_bis_un listed twice 10:05:59 Item str_ep1_dn_fn_bis_tk_ins listed twice 10:05:59 Item str_ep1_dn_fn_bis_tk_gue listed twice 10:05:59 Item str_ep1_dn_fn_bis_tk_civ listed twice 10:05:59 Item str_ep1_dn_fn_bis_tk listed twice 10:05:59 Item str_ep1_dn_fn_bis_ger listed twice 10:05:59 Item str_ep1_dn_fn_bis_cz listed twice 10:05:59 Item str_ep1_dn_fn_bis_civ_special listed twice 10:05:59 Item str_ep1_dn_ch47f listed twice 10:05:59 Item str_ep1_dn_ch47_base listed twice 10:05:59 Item str_ep1_dn_cfgmods_expansion listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_usa_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_uno_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_tkm_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_tkg_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_tka_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_opfor_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_nato_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_indfor_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_germany_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_czechrepublic_ep1 listed twice 10:05:59 Item str_ep1_dn_cfgmarkers_faction_blufor_ep1 listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_motorizedsectionat listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_motorizedsection listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_deltapatrolhmmwv listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_deltapatrolatv listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_motorized listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_mechanized_us_mechanizedreconsection listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_mechanized_us_mechanizedinfantrysquadicvmk19 listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_mechanized_us_mechanizedinfantrysquadicvm2 listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_mechanized listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_weaponssquad listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_teamsupport listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_teammg listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_teamat listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_team listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_sniperteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_riflesquad listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_heavyatteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_deltaforceteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_infantry listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_mgsplatoon listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_m1a2section listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_m1a2platoon listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_m1a1platoon listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_armored listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_uh60mflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_mq9flight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_mh6jflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ch47fflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_c130jflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ah6xflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ah6jflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ah64dflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air_us_a10flight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us_air listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_us listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_ger_infantry_kskteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_ger_infantry listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_ger listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_motorized_acr_specialforcespatrollandrover listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_motorized_acr_specialforcespatrolatv listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_motorized_acr_motorizedpatrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_motorized listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_infantry_acr_specialforcesteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_infantry_acr_infantrypatrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_infantry listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_air_acr_mi171sh_rocketsflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_air_acr_mi171shflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz_air listed twice 10:05:59 Item str_ep1_dn_cfggroups_west_bis_cz listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un_motorized_un_motorizedpatrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un_motorized listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un_mechanized_un_mechanizedpatrolm113 listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un_mechanized_un_mechanizedpatrolbmp2 listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un_mechanized listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un_infantry_un_patrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un_infantry listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_un listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized_tk_gue_technicals listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized_tk_gue_motorizedpatrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized_tk_gue_motorizedgroup listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_mechanized_tk_gue_mechanizedpatrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_mechanized_tk_gue_mechanizedgroup listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_mechanized listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_sniperteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_patrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_groupweapons listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_group listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_atteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_aateam listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_armored_tk_gue_t55section listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_armored_tk_gue_t34platoon listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_armored listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue listed twice 10:05:59 Item str_ep1_dn_cfggroups_guerrila listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_motorized_tk_motorizedreconsection listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_motorized_tk_motorizedpatrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_motorized_tk_motorizedinfanterysquad listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_motorized listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedspecialsquad listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedreconsectionat listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedreconsection listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedinfantrysquadbtr60 listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedinfantrysquadbmp2 listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized_tk_ins_technicals listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized_tk_ins_motorizedpatrolbtr40 listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized_tk_ins_motorizedgroup listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_patrol listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_group listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_atteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_aateam listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_ins listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_specialpurposesquad listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_sniperteam listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysquad listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysectionmg listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysectionat listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysectionaa listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysection listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_infantry listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_armored_tk_t72platoon listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_armored_tk_t55platoon listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_armored_tk_t34platoon listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_armored listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_uh1hflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_su25flight listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_mi24_dflight listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_mi_17flight listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_an2flight listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk_air listed twice 10:05:59 Item str_ep1_dn_cfggroups_east_bis_tk listed twice 10:05:59 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ_infantry_tk_civ_crowd2 listed twice 10:05:59 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ_infantry_tk_civ_crowd1 listed twice 10:05:59 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ_infantry listed twice 10:05:59 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ listed twice 10:05:59 Item str_ep1_dn_c130j_static listed twice 10:05:59 Item str_ep1_dn_an2_tk listed twice 10:05:59 Item str_ep1_dn_an2_2_tk_civ listed twice 10:05:59 Item str_ep1_dn_an2_1_tk_civ listed twice 10:05:59 Item str_ep1_dn_ah6x listed twice 10:05:59 Item str_ep1_dn_ah6j listed twice 10:05:59 Item str_ep1_dn_ah6_base listed twice 10:05:59 Item str_ep1_dn_ah64d listed twice 10:05:59 Item str_ep1_dn_ah64_base listed twice 10:05:59 Item str_ep1_dn_ac130 listed twice 10:05:59 Item str_ep1_dn_1200rnd_30x113mm_m789_hedp listed twice 10:05:59 Item str_ep1_dn_vc_military listed twice 10:05:59 Item str_ep1_dn_land_wicker_basket listed twice 10:05:59 Item str_ep1_dn_land_wheel_cart listed twice 10:05:59 Item str_ep1_dn_land_water_pipe listed twice 10:05:59 Item str_ep1_dn_land_vase_loam_3 listed twice 10:05:59 Item str_ep1_dn_land_vase_loam_2 listed twice 10:05:59 Item str_ep1_dn_land_vase_loam listed twice 10:05:59 Item str_ep1_dn_land_vase listed twice 10:05:59 Item str_ep1_dn_land_urn listed twice 10:05:59 Item str_ep1_dn_land_transport_kiosk listed twice 10:05:59 Item str_ep1_dn_land_transport_crates listed twice 10:05:59 Item str_ep1_dn_land_transport_cart listed twice 10:05:59 Item str_ep1_dn_land_tires listed twice 10:05:59 Item str_ep1_dn_land_teapot listed twice 10:05:59 Item str_ep1_dn_land_table_small listed twice 10:05:59 Item str_ep1_dn_land_table listed twice 10:05:59 Item str_ep1_dn_land_sunshade listed twice 10:05:59 Item str_ep1_dn_land_stand_waterl listed twice 10:05:59 Item str_ep1_dn_land_stand_small listed twice 10:05:59 Item str_ep1_dn_land_stand_meat listed twice 10:05:59 Item str_ep1_dn_land_shelf listed twice 10:05:59 Item str_ep1_dn_land_sack listed twice 10:05:59 Item str_ep1_dn_land_reservoir listed twice 10:05:59 Item str_ep1_dn_land_rack listed twice 10:05:59 Item str_ep1_dn_land_pillow listed twice 10:05:59 Item str_ep1_dn_land_misc_well_l listed twice 10:05:59 Item str_ep1_dn_land_misc_well_c listed twice 10:05:59 Item str_ep1_dn_land_misc_rubble listed twice 10:05:59 Item str_ep1_dn_land_misc_ironpipes listed twice 10:05:59 Item str_ep1_dn_land_misc_garb_heap listed twice 10:05:59 Item str_ep1_dn_land_misc_concpipeline listed twice 10:05:59 Item str_ep1_dn_land_misc_concoutlet listed twice 10:05:59 Item str_ep1_dn_land_misc_concbox listed twice 10:05:59 Item str_ep1_dn_land_misc_coil listed twice 10:05:59 Item str_ep1_dn_land_market_stalls_02 listed twice 10:05:59 Item str_ep1_dn_land_market_stalls_01 listed twice 10:05:59 Item str_ep1_dn_land_market_shelter listed twice 10:05:59 Item str_ep1_dn_land_crates_stack listed twice 10:05:59 Item str_ep1_dn_land_crates listed twice 10:05:59 Item str_ep1_dn_land_covering_hut_big listed twice 10:05:59 Item str_ep1_dn_land_covering_hut listed twice 10:05:59 Item str_ep1_dn_land_chest listed twice 10:05:59 Item str_ep1_dn_land_chair listed twice 10:05:59 Item str_ep1_dn_land_carpet_rack listed twice 10:05:59 Item str_ep1_dn_land_carpet_2 listed twice 10:05:59 Item str_ep1_dn_land_carpet listed twice 10:05:59 Item str_ep1_dn_land_canister listed twice 10:05:59 Item str_ep1_dn_land_cages listed twice 10:05:59 Item str_ep1_dn_land_cabinet listed twice 10:05:59 Item str_ep1_dn_land_bucket listed twice 10:05:59 Item str_ep1_dn_land_bowl listed twice 10:05:59 Item str_ep1_dn_land_boots listed twice 10:05:59 Item str_ep1_dn_land_blankets listed twice 10:05:59 Item str_ep1_dn_land_bench listed twice 10:05:59 Item str_ep1_dn_land_basket listed twice 10:05:59 Item str_ep1_dn_land_bags_stack listed twice 10:05:59 Item str_ep1_dn_land_bags listed twice 10:05:59 Item str_ep1_dn_land_bag listed twice 10:05:59 Item str_ep1_dn_fort_stonewall listed twice 10:05:59 Item str_ep1_dn_sheep02_ep1 listed twice 10:05:59 Item str_ep1_dn_sheep01_ep1 listed twice 10:05:59 Item str_ep1_dn_goat02_ep1 listed twice 10:05:59 Item str_ep1_dn_goat01_ep1 listed twice 10:05:59 Item str_ep1_dn_cow01_ep1 listed twice 10:05:59 Item str_ep1_dn_signm_un_base listed twice 10:05:59 Item str_ep1_dn_signm_fob_revolve listed twice 10:05:59 Item str_ep1_dn_signm_fob_prostejov listed twice 10:05:59 Item str_ep1_dn_signm_fob_blanik listed twice 10:05:59 Item str_ep1_dn_signm_farp_winchester listed twice 10:05:59 Item str_ep1_lib_l39_base_library listed twice 10:05:59 Item str_ep1_dn_l39_base listed twice 10:05:59 Item str_ep1_dn_us_soldier_tl_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_spotter_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_sniper_nv_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_sniperh_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_sniper_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_sl_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_pilot_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_officer_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_medic_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_marksman_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_light_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_lat_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_hat_dragon_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_gl_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_engineer_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_crew_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_b_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_at_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_ar_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_amg_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_ahat_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_aat_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_aar_ep1 listed twice 10:05:59 Item str_ep1_dn_us_soldier_aa_ep1 listed twice 10:05:59 Item str_ep1_dn_us_pilot_light_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_undercover_takistani06_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_undercover_takistani05_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_undercover_takistani04_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_undercover_takistani02_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_tl_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_sd_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_night_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_medic_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_marksman_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_m14_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_assault_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_ar_ep1 listed twice 10:05:59 Item str_ep1_dn_us_delta_force_air_controller_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_sl_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_officer_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_light_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_guard_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_b_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_at_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_amg_ep1 listed twice 10:05:59 Item str_ep1_dn_un_cdf_soldier_aat_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_special_forces_tl_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_special_forces_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_special_forces_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_tws_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_spotter_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_sniper_night_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_sniperh_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_sniper_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_sl_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_pilot_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_officer_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_night_2_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_night_1_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_medic_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_lat_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_hat_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_gl_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_engineer_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_crew_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_b_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_base_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_at_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_ar_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_amg_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_aat_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_soldier_aa_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_warlord_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_tl_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_sniper_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_base_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_at_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_ar_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_aat_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_aa_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_4_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_3_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_soldier_2_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_ins_bonesetter_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_warlord_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_tl_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_sniper_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_hat_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_base_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_at_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_ar_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_aat_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_aa_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_5_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_4_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_3_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_soldier_2_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_gue_bonesetter_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_commander_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_worker02_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_worker01_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_woman03_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_woman02_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_woman01_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_takistani_base_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_takistani06_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_takistani05_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_takistani04_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_takistani03_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_takistani02_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_civ_takistani01_ep1 listed twice 10:05:59 Item str_ep1_dn_tk_aziz_ep1 listed twice 10:05:59 Item str_ep1_dn_rita_ensler_ep1 listed twice 10:05:59 Item str_ep1_dn_pierce_light listed twice 10:05:59 Item str_ep1_dn_piercehead listed twice 10:05:59 Item str_ep1_dn_pierce listed twice 10:05:59 Item str_ep1_dn_herrera_light listed twice 10:05:59 Item str_ep1_dn_herrerahead listed twice 10:05:59 Item str_ep1_dn_herrera listed twice 10:05:59 Item str_ep1_dn_haris_press_ep1 listed twice 10:05:59 Item str_ep1_dn_graves_light listed twice 10:05:59 Item str_ep1_dn_graveshead listed twice 10:05:59 Item str_ep1_dn_graves listed twice 10:05:59 Item str_ep1_dn_ger_soldier_tl_ep1 listed twice 10:05:59 Item str_ep1_dn_ger_soldier_scout_ep1 listed twice 10:05:59 Item str_ep1_dn_ger_soldier_mg_ep1 listed twice 10:05:59 Item str_ep1_dn_ger_soldier_medic_ep1 listed twice 10:05:59 Item str_ep1_dn_ger_soldier_ep1 listed twice 10:05:59 Item str_ep1_dn_dr_hladik_ep1 listed twice 10:05:59 Item str_ep1_dn_dr_annie_baker_ep1 listed twice 10:05:59 Item str_ep1_dn_drake_light listed twice 10:05:59 Item str_ep1_dn_drakehead listed twice 10:05:59 Item str_ep1_dn_drake listed twice 10:05:59 Item str_ep1_dn_delta_glasses listed twice 10:05:59 Item str_ep1_dn_cz_special_forces_tl_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_special_forces_scout_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_special_forces_mg_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_special_forces_gl_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_special_forces_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_sl_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_pilot_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_office_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_mg_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_light_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_b_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_base_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_at_des_ep1 listed twice 10:05:59 Item str_ep1_dn_cz_soldier_amg_des_ep1 listed twice 10:05:59 Item str_ep1_dn_civ_eurowoman02_ep1 listed twice 10:05:59 Item str_ep1_dn_civ_eurowoman01_ep1 listed twice 10:05:59 Item str_ep1_dn_civ_euroman02_ep1 listed twice 10:05:59 Item str_ep1_dn_civ_euroman01_ep1 listed twice 10:05:59 Item str_ep1_dn_piercehead_ep1_default listed twice 10:05:59 Item str_ep1_dn_herrerahead_ep1_default listed twice 10:05:59 Item str_ep1_dn_graveshead_ep1_default listed twice 10:05:59 Item str_ep1_dn_facegrover_wounded_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_wounded_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_wounded_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_wounded_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_wounded_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_wounded_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_wounded_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_facegrover_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face20_ep1 listed twice 10:05:59 Item str_ep1_dn_face20_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face20_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face20_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face20_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face20_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face20_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face19_ep1 listed twice 10:05:59 Item str_ep1_dn_face19_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face19_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face19_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face19_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face19_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face19_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face18_ep1 listed twice 10:05:59 Item str_ep1_dn_face18_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face18_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face18_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face18_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face18_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face18_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face17_ep1 listed twice 10:05:59 Item str_ep1_dn_face17_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face17_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face17_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face17_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face17_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face17_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face16_ep1 listed twice 10:05:59 Item str_ep1_dn_face16_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face16_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face16_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face16_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face16_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face16_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face15_ep1 listed twice 10:05:59 Item str_ep1_dn_face15_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face15_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face15_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face15_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face15_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face15_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face14_ep1 listed twice 10:05:59 Item str_ep1_dn_face14_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face14_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face14_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face14_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face14_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face14_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face13_ep1 listed twice 10:05:59 Item str_ep1_dn_face13_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face13_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face13_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face13_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face13_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face13_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face12_ep1 listed twice 10:05:59 Item str_ep1_dn_face12_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face12_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face12_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face12_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face12_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face12_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face11_ep1 listed twice 10:05:59 Item str_ep1_dn_face11_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face11_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face11_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face11_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face11_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face11_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face10_ep1 listed twice 10:05:59 Item str_ep1_dn_face10_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face10_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face10_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face10_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face10_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face10_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face09_ep1 listed twice 10:05:59 Item str_ep1_dn_face09_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face09_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face09_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face09_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face09_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face09_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face08_ep1 listed twice 10:05:59 Item str_ep1_dn_face08_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face08_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face08_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face08_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face08_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face08_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face07_ep1 listed twice 10:05:59 Item str_ep1_dn_face07_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face07_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face07_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face07_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face07_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face07_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face06_ep1 listed twice 10:05:59 Item str_ep1_dn_face06_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face06_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face06_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face06_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face06_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face06_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face05_ep1 listed twice 10:05:59 Item str_ep1_dn_face05_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face05_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face05_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face05_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face05_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face05_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face04_ep1 listed twice 10:05:59 Item str_ep1_dn_face04_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face04_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face04_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face04_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face04_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face04_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face03_ep1 listed twice 10:05:59 Item str_ep1_dn_face03_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face03_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face03_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face03_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face03_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face03_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face02_ep1 listed twice 10:05:59 Item str_ep1_dn_face02_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face02_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face02_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face02_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face02_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face02_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_face01_ep1 listed twice 10:05:59 Item str_ep1_dn_face01_camo6_ep1 listed twice 10:05:59 Item str_ep1_dn_face01_camo5_ep1 listed twice 10:05:59 Item str_ep1_dn_face01_camo4_ep1 listed twice 10:05:59 Item str_ep1_dn_face01_camo3_ep1 listed twice 10:05:59 Item str_ep1_dn_face01_camo2_ep1 listed twice 10:05:59 Item str_ep1_dn_face01_camo1_ep1 listed twice 10:05:59 Item str_ep1_dn_drakehead_ep1_default listed twice 10:05:59 Item str_ep1_dn_cfgglasses_delta_glasses listed twice 10:05:59 Item str_ep1_track19 listed twice 10:05:59 Item str_ep1_track18 listed twice 10:05:59 Item str_ep1_track17 listed twice 10:05:59 Item str_ep1_track16 listed twice 10:05:59 Item str_ep1_track15 listed twice 10:05:59 Item str_ep1_track14 listed twice 10:05:59 Item str_ep1_track13v listed twice 10:05:59 Item str_ep1_track13d2 listed twice 10:05:59 Item str_ep1_track13d1 listed twice 10:05:59 Item str_ep1_track13 listed twice 10:05:59 Item str_ep1_track12 listed twice 10:05:59 Item str_ep1_track11 listed twice 10:05:59 Item str_ep1_track10 listed twice 10:05:59 Item str_ep1_track09 listed twice 10:05:59 Item str_ep1_track08 listed twice 10:05:59 Item str_ep1_track07d listed twice 10:05:59 Item str_ep1_track07 listed twice 10:05:59 Item str_ep1_track06 listed twice 10:05:59 Item str_ep1_track05 listed twice 10:05:59 Item str_ep1_track04 listed twice 10:05:59 Item str_ep1_track03d listed twice 10:05:59 Item str_ep1_track03 listed twice 10:05:59 Item str_ep1_track02 listed twice 10:05:59 Item str_ep1_track01d listed twice 10:05:59 Item str_ep1_track01 listed twice 10:05:59 Item str_ep1_wfsupportunavailable listed twice 10:05:59 Item str_ep1_wfsetline listed twice 10:05:59 Item STR_EP1_WFSTRATEGICMAP listed twice 10:05:59 Item str_ep1_wfrequestsupportlocation listed twice 10:05:59 Item str_ep1_wfnearest listed twice 10:05:59 Item STR_EP1_WFLIMITEDWARFARE listed twice 10:05:59 Item STR_EP1_WFNOTASKAUTOASSIGNMENT listed twice 10:05:59 Item STR_EP1_WFNOTASKDESCRIPTION listed twice 10:05:59 Item str_ep1_wffriendliespresent listed twice 10:05:59 Item str_ep1_wfcannotfire listed twice 10:05:59 Item str_ep1_wfadjustradius listed twice 10:05:59 Item str_ep1_wfadjustposition listed twice 10:05:59 Item str_ep1_wfadjustfire listed twice 10:05:59 Item str_ep1_wfabortfiremission1 listed twice 10:05:59 Item str_ep1_wfabortfiremission listed twice 10:05:59 Item str_ep1_dn_cfgvehicles_warfareoa listed twice 10:05:59 Item str_ep1_config.cppcfgvehicles_weatherpostprocessmanager0 listed twice 10:05:59 Item str_ep1_config.cppcfgvehicles_weatherparticlesmanager0 listed twice 10:05:59 Item str_ep1_config.cppcfgvehicles_jukeboxmanager0 listed twice 10:05:59 Item str_ep1_config.cppcfgvehicles_gitamanager0 listed twice 10:05:59 Item str_ep1_config.cppcfgvehicles_bis_support0 listed twice 10:05:59 Item str_ep1_config.cppcfgobjectcompositions_mpa_infokiosk10 listed twice 10:05:59 Item str_ep1_cfgvehicles.hppcfgvehicles_alice2manager0 listed twice 10:05:59 Item str_ep1_dn_cfgsounds_oil_pump listed twice 10:05:59 Item str_ep1_dn_cfgsfx_sirene_ep1 listed twice 10:05:59 Item STR_CUP_dss_Soviet_Era_Tanker_Helmet listed twice 10:05:59 Unexpected stringtable format inside <Text ID="STR_CUP_lib_cz805"><Russian> 10:05:59 Item str_dn_dshkm listed twice 10:05:59 Item str_lib_dshkm listed twice 10:05:59 Item str_dn_kord listed twice 10:05:59 Item str_dn_kord_low listed twice 10:05:59 Item str_lib_kord listed twice 10:05:59 Item str_dn_ags30 listed twice 10:05:59 Item str_lib_ags30 listed twice 10:05:59 Item str_mn_at13 listed twice 10:05:59 Item str_dn_at13 listed twice 10:05:59 Item str_dn_at13launchersingle listed twice 10:05:59 Item str_lib_at13 listed twice 10:05:59 Item str_dn_spg9 listed twice 10:05:59 Item str_lib_spg9 listed twice 10:05:59 Item str_mn_og9 listed twice 10:05:59 Item str_mn_pg9 listed twice 10:05:59 Item str_mn_igla listed twice 10:05:59 Item str_mn_9k32 listed twice 10:05:59 Item str_dn_igla_twice listed twice 10:05:59 Item str_dn_igla_aa_pod_east listed twice 10:05:59 Item str_dn_2b14 listed twice 10:05:59 Item str_lib_2b14 listed twice 10:05:59 Item str_dn_d30 listed twice 10:05:59 Item str_lib_d30 listed twice 10:05:59 Item str_dn_m2_mg listed twice 10:05:59 Item str_dn_m2hd_minitripod listed twice 10:05:59 Item str_lib_m2_mg listed twice 10:05:59 Item str_dn_m119 listed twice 10:05:59 Item str_lib_m119 listed twice 10:05:59 Item str_dn_m252 listed twice 10:05:59 Item str_lib_m252 listed twice 10:05:59 Item str_dn_tow_tripod listed twice 10:05:59 Item str_dn_tow listed twice 10:05:59 Item str_dn_mk19_tripod listed twice 10:05:59 Item str_dn_ZU23 listed twice 10:05:59 Item str_dn_DSHKM_MiniTripod listed twice 10:05:59 Item str_dn_Mk19_Gun_Bag listed twice 10:05:59 Item str_dn_Mk19_Tripod_Bag listed twice 10:05:59 Item str_dn_Mk19_Tripod_Bag listed twice 10:05:59 Unsupported language English in stringtable 10:05:59 Item STR_CUP_DN_GSh301 listed twice 10:05:59 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice 10:06:01 Conflicting addon A3_Sounds_F in 'mm_buildings\prison\sounds\', previous definition in 'mm_bank\sound\' 10:06:01 Conflicting addon Mattaust_Objects in 'MM_Shopping\', previous definition in 'MM_objects\' 10:06:01 Conflicting addon Ind_MalyKomin in 'ca\buildings2_c\ind_cementworks\ind_malykomin\', previous definition in 'ca\Buildings2\ind_cementworks\ind_malykomin\' 10:06:01 Conflicting addon Ind_Dopravnik in 'ca\buildings2_c\ind_cementworks\ind_dopravnik\', previous definition in 'ca\Buildings2\ind_cementworks\ind_dopravnik\' 10:06:01 Conflicting addon Ind_Garage01 in 'ca\buildings2_c\ind_garage01\', previous definition in 'ca\Buildings2\ind_garage01\' 10:06:01 Conflicting addon CUP_CABuildings2_Misc_Cargo in 'ca\buildings2_c\misc_cargo\', previous definition in 'ca\Buildings2\misc_cargo\' 10:06:01 Conflicting addon CABuildings2_Misc_Cargo in 'ca\buildings2_c\misc_cargo\', previous definition in 'ca\Buildings2\misc_cargo\' 10:06:01 Conflicting addon Ind_SiloVelke in 'ca\buildings2_c\ind_cementworks\ind_silovelke\', previous definition in 'ca\Buildings2\ind_cementworks\ind_silovelke\' 10:06:01 Conflicting addon Ind_Tank in 'ca\buildings2_c\ind_tank\', previous definition in 'ca\Buildings2\ind_tank\' 10:06:01 Conflicting addon IndPipe2 in 'ca\buildings2_c\ind_pipeline\indpipe2\', previous definition in 'ca\Buildings2\ind_pipeline\indpipe2\' 10:06:01 Conflicting addon Ind_Pec in 'ca\buildings2_c\ind_cementworks\ind_pec\', previous definition in 'ca\Buildings2\ind_cementworks\ind_pec\' 10:06:01 Conflicting addon Ind_Expedice in 'ca\buildings2_c\ind_cementworks\ind_expedice\', previous definition in 'ca\Buildings2\ind_cementworks\ind_expedice\' 10:06:01 Conflicting addon Ind_Workshop01 in 'ca\buildings2_c\ind_workshop01\', previous definition in 'ca\Buildings2\ind_workshop01\' 10:06:01 Conflicting addon Shed_small in 'ca\buildings2_c\shed_small\', previous definition in 'ca\Buildings2\shed_small\' 10:06:01 Conflicting addon Shed_wooden in 'ca\buildings2_c\shed_wooden\', previous definition in 'ca\Buildings2\shed_wooden\' 10:06:01 Conflicting addon Misc_PowerStation in 'ca\buildings2_c\misc_powerstation\', previous definition in 'ca\Buildings2\misc_powerstation\' 10:06:01 Conflicting addon ind_silomale in 'ca\buildings2_c\ind_cementworks\ind_silomale\', previous definition in 'ca\Buildings2\ind_cementworks\ind_silomale\' 10:06:01 Conflicting addon A_Crane_02 in 'ca\buildings2_c\a_crane_02\', previous definition in 'ca\Buildings2\a_crane_02\' 10:06:01 Conflicting addon CABuildings2 in 'ca\buildings2_c\', previous definition in 'ca\Buildings2\' 10:06:01 Conflicting addon Ind_Vysypka in 'ca\buildings2_c\ind_cementworks\ind_vysypka\', previous definition in 'ca\Buildings2\ind_cementworks\ind_vysypka\' 10:06:01 Conflicting addon Rail_House_01 in 'ca\buildings2_c\rail_house_01\', previous definition in 'ca\Buildings2\rail_house_01\' 10:06:01 Conflicting addon Ind_Mlyn in 'ca\buildings2_c\ind_cementworks\ind_mlyn\', previous definition in 'ca\Buildings2\ind_cementworks\ind_mlyn\' 10:06:01 Conflicting addon Barn_Metal in 'ca\buildings2_c\barn_metal\', previous definition in 'ca\Buildings2\barn_metal\' 10:06:01 Conflicting addon Misc_WaterStation in 'ca\buildings2_c\misc_waterstation\', previous definition in 'ca\Buildings2\misc_waterstation\' 10:06:01 Conflicting addon CABuildings_Misc in 'ca\buildings_c\misc\', previous definition in 'ca\buildings\misc\' 10:06:01 Conflicting addon CABuildings in 'ca\buildings_c\', previous definition in 'ca\buildings\' 10:06:01 Conflicting addon CAData in 'ca\ca_c\', previous definition in 'ca\data\' 10:06:01 Conflicting addon CALanguage_e in 'ca\language_e\', previous definition in 'ca\langauage_e\' 10:06:01 Conflicting addon CAMisc3 in 'ca\misc3_c\', previous definition in 'ca\misc3\' 10:06:01 Conflicting addon CAMisc_E in 'ca\misc_e_c\', previous definition in 'ca\misc_e\' 10:06:01 Conflicting addon CAStructures_A_CraneCon in 'ca\structures_c\a_cranecon\', previous definition in 'ca\Structures\a_cranecon\' 10:06:01 Conflicting addon CAStructuresHouse in 'ca\structures_c\house\', previous definition in 'ca\Structures\house\' 10:06:01 Conflicting addon CAStructures_Misc in 'ca\structures_c\misc\', previous definition in 'ca\Structures\misc\' 10:06:01 Conflicting addon CUP_CAStructures_Nav_pier in 'ca\structures_c\nav_pier\', previous definition in 'ca\Structures\nav_pier\' 10:06:01 Conflicting addon CAStructures_Nav_pier in 'ca\structures_c\nav_pier\', previous definition in 'ca\Structures\nav_pier\' 10:06:01 Conflicting addon CAStructures_A_BuildingWIP in 'ca\structures_c\a_buildingwip\', previous definition in 'ca\Structures\a_buildingwip\' 10:06:01 Conflicting addon CAStructures_Wall in 'ca\structures_c\wall\', previous definition in 'ca\Structures\wall\' 10:06:01 Conflicting addon CUP_CAStructuresInd_Quarry in 'ca\structures_c\ind_quarry\', previous definition in 'ca\Structures\ind_quarry\' 10:06:01 Conflicting addon CAStructuresInd_Quarry in 'ca\structures_c\ind_quarry\', previous definition in 'ca\Structures\ind_quarry\' 10:06:01 Conflicting addon CAStructures_Nav in 'ca\structures_c\nav\', previous definition in 'ca\Structures\nav\' 10:06:01 Conflicting addon CAStructuresShed_Small in 'ca\structures_c\shed\shed_small\', previous definition in 'ca\Structures\shed\shed_small\' 10:06:01 Conflicting addon CAStructures_IndPipe1 in 'ca\structures_c\ind_pipeline\indpipe1\', previous definition in 'ca\Structures\ind_pipeline\indpipe1\' 10:06:01 Conflicting addon CAStructures_Ruins in 'ca\structures_c\ruins\', previous definition in 'ca\Structures\ruins\' 10:06:01 Conflicting addon CAStructuresHouse_Shed_Ind in 'ca\structures_c\shed_ind\', previous definition in 'ca\Structures\shed_ind\' 10:06:01 Conflicting addon CAStructuresLand_Nav_Boathouse in 'ca\structures_c\nav_boathouse\', previous definition in 'ca\Structures\nav_boathouse\' 10:06:01 Conflicting addon CAStructuresBarn_W in 'ca\structures_c\barn_w\', previous definition in 'ca\Structures\barn_w\' 10:06:01 Conflicting addon CAStructures in 'ca\structures_c\', previous definition in 'ca\Structures\' 10:06:01 Conflicting addon A_TVTower in 'ca\structures_c\a_tvtower\', previous definition in 'ca\Structures\a_tvtower\' 10:06:01 Conflicting addon CAStructures_Misc_Armory in 'ca\structures_c\misc\armory\', previous definition in 'ca\Structures\misc\armory\' 10:06:01 Conflicting addon CAStructures_Proxy_BuildingParts in 'ca\structures_c\proxy_buildingparts\', previous definition in 'ca\Structures\proxy_buildingparts\' 10:06:01 Conflicting addon CAStructuresLand_Ind_Stack_Big in 'ca\structures_c\ind\', previous definition in 'ca\Structures\ind\' 10:06:01 Conflicting addon Ind_SawMill in 'ca\structures_c\ind_sawmill\', previous definition in 'ca\Structures\ind_sawmill\' 10:06:01 Conflicting addon CAStructures_E_Ind_Oil_Mine in 'ca\structures_e_c\ind\ind_oil_mine\', previous definition in 'ca\Structures_E\ind\ind_oil_mine\' 10:06:01 Conflicting addon CAStructures_E_Ind_IndPipes in 'ca\structures_e_c\ind\ind_pipes\', previous definition in 'ca\Structures_E\ind\ind_pipes\' 10:06:01 Conflicting addon CAStructures_E_Ind_Misc_PowerStation in 'ca\structures_e_c\ind\ind_powerstation\', previous definition in 'ca\Structures_E\ind\ind_powerstation\' 10:06:01 Conflicting addon CAStructures_E_Misc_Misc_cables in 'ca\structures_e_c\misc\misc_cables\', previous definition in 'ca\Structures_E\misc\misc_cables\' 10:06:01 Conflicting addon CAStructures_E_Misc in 'ca\structures_e_c\misc\', previous definition in 'ca\Structures_E\misc\' 10:06:01 Conflicting addon CAStructures_E_Ind_Ind_Shed in 'ca\structures_e_c\ind\ind_shed\', previous definition in 'ca\Structures_E\ind\ind_shed\' 10:06:01 Conflicting addon CAStructures_E_Misc_Misc_Construction in 'ca\structures_e_c\misc\misc_construction\', previous definition in 'ca\Structures_E\misc\misc_construction\' 10:06:01 Conflicting addon CAStructures_E_Wall in 'ca\structures_e_c\wall\', previous definition in 'ca\Structures_E\wall\' 10:06:01 Conflicting addon CAStructures_E_Mil in 'ca\structures_e_c\mil\', previous definition in 'ca\Structures_E\mil\' 10:06:01 Conflicting addon CAStructures_E_Misc_Misc_Market in 'ca\structures_e_c\misc\misc_market\', previous definition in 'ca\Structures_E\misc\misc_market\' 10:06:01 Conflicting addon CAStructures_E_Wall_Wall_L in 'ca\structures_e_c\wall\wall_l\', previous definition in 'ca\Structures_E\wall\wall_l\' 10:06:01 Conflicting addon CAStructures_E_Ind_Ind_Garage01 in 'ca\structures_e_c\ind\ind_garage01\', previous definition in 'ca\Structures_E\ind\ind_garage01\' 10:06:01 Conflicting addon CAStructures_E_Ind_Ind_Coltan_Mine in 'ca\structures_e_c\ind\ind_coltan_mine\', previous definition in 'ca\Structures_E\ind\ind_coltan_mine\' 10:06:01 Conflicting addon CAStructures_E_HouseA_A_BuildingWIP in 'ca\structures_e_c\housea\a_buildingwip\', previous definition in 'ca\Structures_E\housea\a_buildingwip\' 10:06:01 Conflicting addon CAStructures_E_Misc_Misc_Well in 'ca\structures_e_c\misc\misc_well\', previous definition in 'ca\Structures_E\misc\misc_well\' 10:06:01 Conflicting addon CAStructures_E in 'ca\structures_e_c\', previous definition in 'ca\Structures_E\' 10:06:01 Conflicting addon CAStructures_E_Misc_Misc_Garbage in 'ca\structures_e_c\misc\misc_garbage\', previous definition in 'ca\Structures_E\misc\misc_garbage\' 10:06:01 Conflicting addon CAStructures_E_HouseA in 'ca\structures_e_c\housea\', previous definition in 'ca\Structures_E\housea\' 10:06:01 Conflicting addon CAStructures_E_Misc_Misc_powerline in 'ca\structures_e_c\misc\misc_powerline\', previous definition in 'ca\Structures_E\misc\misc_powerline\' 10:06:01 Conflicting addon CAStructures_E_Ind in 'ca\structures_e_c\ind\', previous definition in 'ca\Structures_E\ind\' 10:06:01 Conflicting addon CAStructures_PMC_Buildings_Bunker in 'ca\structures_pmc_c\buildings\bunker\', previous definition in 'ca\structures_pmc\buildings\bunker\' 10:06:01 Conflicting addon CUP_CAStructures_PMC_Buildings_Ruin_Cowshed in 'ca\structures_pmc_c\buildings\ruins\farm_cowshed\', previous definition in 'ca\structures_pmc\buildings\ruins\farm_cowshed\' 10:06:01 Conflicting addon CAStructures_PMC_Buildings_Ruin_Cowshed in 'ca\structures_pmc_c\buildings\ruins\farm_cowshed\', previous definition in 'ca\structures_pmc\buildings\ruins\farm_cowshed\' 10:06:01 Conflicting addon CAStructures_PMC_Ruins in 'ca\structures_pmc_c\ruins\', previous definition in 'ca\structures_pmc\ruins\' 10:06:01 Conflicting addon CAStructures_PMC_Buildings in 'ca\structures_pmc_c\buildings\', previous definition in 'ca\structures_pmc\buildings\' 10:06:01 Conflicting addon CAStructures_PMC_Buildings_GeneralStore_PMC in 'ca\structures_pmc_c\buildings\generalstore\', previous definition in 'ca\structures_pmc\buildings\generalstore\' 10:06:01 Conflicting addon CAWater2 in 'CUP\Terrains\cup_terrains_dummy\', previous definition in 'ca\Water2\' 10:06:01 Conflicting addon CAWater2_Destroyer in 'CUP\Terrains\cup_terrains_dummy\', previous definition in 'ca\Water2\destroyer\' 10:06:01 Conflicting addon CAWater2_Fregata in 'CUP\Terrains\cup_terrains_dummy\', previous definition in 'ca\Water2\fregata\' 10:06:02 Conflicting addon A3_Sounds_F in 'a3\sounds_f\', previous definition in 'mm_bank\sound\' 10:06:02 Warning Message: Addon 'CUP_Buildings2_Config' requires addon 'CUP_Buildings2_Data' 10:06:04 Warning Message: Addon 'CUP_Buildings_Config' requires addon 'CUP_Buildings_Data' 10:06:04 Warning Message: Addon 'CUP_Misc3_Config' requires addon 'CUP_Misc3_Data' 10:06:04 Warning Message: Addon 'CUP_Misc_e_Config' requires addon 'CUP_Misc_e_Data' 10:06:04 Warning Message: Addon 'CUP_CASigns_E' requires addon 'CUP_Misc_Data' 10:06:04 Warning Message: Addon 'CUP_Structures_Config' requires addon 'CUP_Structures_Data' 10:06:04 Warning Message: Addon 'CUP_Structures_e_Config' requires addon 'CUP_Structures_e_Data' 10:06:04 Warning Message: Addon 'CUP_Structures_pmc_Config' requires addon 'CUP_Structures_pmc_Data' 10:06:04 Warning Message: Addon 'CUP_New_Buildings' requires addon 'CUP_Buildings_Data' 10:06:04 Warning Message: Addon 'CUP_Editor_Plants_Config' requires addon 'CUP_CAPlants' 10:06:04 Warning Message: Addon 'CUP_Editor_Plants_Config' requires addon 'CUP_CA_Plants2' 10:06:04 Warning Message: Addon 'CUP_Editor_Plants_Config' requires addon 'CUP_CA_Plants_E' 10:06:04 Warning Message: Addon 'CUP_Editor_Plants_Config' requires addon 'CUP_CA_Plants_E2' 10:06:04 Warning Message: Addon 'CUP_Editor_Plants_Config' requires addon 'CUP_CA_Plants_PMC' 10:06:04 Warning Message: Addon 'CUP_Editor_A1_Roads_Config' requires addon 'CUP_CARoads' 10:06:04 Warning Message: Addon 'CUP_Editor_A2_Roads_Config' requires addon 'CUP_CARoads2' 10:06:04 Warning Message: Addon 'CUP_Editor_A2_Roads_Config' requires addon 'CUP_CARoads_E' 10:06:04 Warning Message: Addon 'CUP_Editor_A2_Railway_Config' requires addon 'CUP_Structures_Data' 10:06:04 Warning Message: Addon 'CUP_Editor_Sidewalks_Config' requires addon 'CUP_CAMisc' 10:06:04 Warning Message: Addon 'CUP_Editor_Rocks_Config' requires addon 'CUP_CARocks' 10:06:04 Warning Message: Addon 'CUP_Editor_Rocks_Config' requires addon 'CUP_CARocks2' 10:06:04 Warning Message: Addon 'CUP_Editor_Rocks_Config' requires addon 'CUP_CARocks_E' 10:06:04 Warning Message: Addon 'CUP_Editor_Signs_Config' requires addon 'CUP_CASigns' 10:06:04 Warning Message: Addon 'CUP_Editor_Signs_Config' requires addon 'CUP_CASigns2' 10:06:04 Updating base class ->Hit1, by ca\structures_c\barn_w\config.bin/CfgVehicles/Land_Barn_W_01/HitPoints/Hit2/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\barn_w\config.bin/CfgVehicles/Land_Barn_W_01/HitPoints/Hit3/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\barn_w\config.bin/CfgVehicles/Land_Barn_W_01/HitPoints/Hit4/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\barn_w\config.bin/CfgVehicles/Land_Barn_W_01/HitPoints/Hit5/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\barn_w\config.bin/CfgVehicles/Land_Barn_W_01/HitPoints/Hit6/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\barn_w\config.bin/CfgVehicles/Land_Barn_W_01/HitPoints/Hit7/ (original (no unload)) 10:06:04 Updating base class ->AnimationSources, by ca\structures_c\barn_w\config.bin/CfgVehicles/Land_Barn_W_01_dam/AnimationSources/ (original (no unload)) 10:06:04 Updating base class ->House, by ca\structures_c\misc_powerlines\config.bin/CfgVehicles/House_F/ (original ca\structures_c\misc_powerlines\config.bin) 10:06:04 Updating base class ->Hit1, by ca\structures_c\shed_ind\config.bin/CfgVehicles/Land_Shed_Ind02/HitPoints/Hit2/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\shed_ind\config.bin/CfgVehicles/Land_Shed_Ind02/HitPoints/Hit3/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\shed_ind\config.bin/CfgVehicles/Land_Shed_Ind02/HitPoints/Hit4/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\shed_ind\config.bin/CfgVehicles/Land_Shed_Ind02/HitPoints/Hit5/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_c\shed_ind\config.bin/CfgVehicles/Land_Shed_Ind02/HitPoints/Hit6/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\generalstore\config.bin/CfgVehicles/Land_GeneralStore_01a_PMC/HitPoints/Hit2/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\generalstore\config.bin/CfgVehicles/Land_GeneralStore_01a_PMC/HitPoints/Hit3/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\generalstore\config.bin/CfgVehicles/Land_GeneralStore_01a_PMC/HitPoints/Hit4/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\generalstore\config.bin/CfgVehicles/Land_GeneralStore_01a_PMC/HitPoints/Hit5/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_a_PMC/HitPoints/Hit2/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_a_PMC/HitPoints/Hit3/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_a_PMC/HitPoints/Hit4/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_a_PMC/HitPoints/Hit5/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_a_PMC/HitPoints/Hit6/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_b_PMC/HitPoints/Hit2/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_b_PMC/HitPoints/Hit3/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_b_PMC/HitPoints/Hit4/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_b_PMC/HitPoints/Hit5/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_c_PMC/HitPoints/Hit2/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_c_PMC/HitPoints/Hit3/ (original (no unload)) 10:06:04 Updating base class ->Hit1, by ca\structures_pmc_c\buildings\ruins\farm_cowshed\config.bin/CfgVehicles/Land_Ruin_Cowshed_c_PMC/HitPoints/Hit4/ (original (no unload)) 10:06:04 Updating base class ->NonStrategic, by a3\data_f\config.bin/CfgVehicles/HouseBase/ (original a3\data_f\config.bin) 10:06:04 Updating base class ->HouseBase, by a3\data_f\config.bin/CfgVehicles/Ruins/ (original a3\data_f\config.bin) 10:06:04 Updating base class ->DestructionEffects, by a3\data_f\config.bin/CfgVehicles/House/DestructionEffects/ (original a3\data_f\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin) 10:06:04 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin) 10:06:04 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin) 10:06:04 Updating base class ->Ruins, by a3\structures_f\config.bin/CfgVehicles/Ruins_F/ (original a3\structures_f\config.bin) 10:06:04 Updating base class ->Wall, by a3\structures_f\config.bin/CfgVehicles/Wall_F/ (original a3\structures_f\config.bin) 10:06:04 Updating base class ->EtelkaMonospacePro, by a3\uifonts_f\config.bin/CfgFontFamilies/EtelkaMonospaceProBold/ (original ca\uifonts\config.bin) 10:06:04 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesBasic/DefaultDie/ (original a3\anims_f\config\sdr\config.bin) 10:06:04 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/Crew/ (original a3\anims_f\config\sdr\config.bin) 10:06:04 Updating base class Default->GdtConcrete, by a3\map_data\config.bin/CfgSurfaces/carpet/ (original shb\config.bin) 10:06:04 Updating base class Default->GdtStratisDirt, by a3\map_data\config.bin/CfgSurfaces/mud/ (original shb\config.bin) 10:06:04 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin) 10:06:04 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin) 10:06:04 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin) 10:06:04 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin) 10:06:04 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin) 10:06:04 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin) 10:06:04 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin) 10:06:04 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin) 10:06:04 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin) 10:06:04 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin) 10:06:04 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin) 10:06:04 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin) 10:06:04 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin) 10:06:04 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin) 10:06:04 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin) 10:06:05 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin) 10:06:05 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin) 10:06:05 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably). 10:06:05 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin) 10:06:05 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin) 10:06:05 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin) 10:06:05 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin) 10:06:05 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin) 10:06:05 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin) 10:06:05 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin) 10:06:05 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin) 10:06:05 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin) 10:06:05 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin) 10:06:05 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin) 10:06:05 Updating base class ->ItemCore, by a3\weapons_f\config.bin/CfgWeapons/ItemWatch/ (original a3\weapons_f\config.bin) 10:06:05 Updating base class Roadway->road, by ca\ca_c\config.bin/CfgSurfaces/Cesta/ (original shb\config.bin) 10:06:05 Updating base class Default->woodenFloor, by ca\ca_c\config.bin/CfgSurfaces/Wood/ (original shb\config.bin) 10:06:05 Updating base class Default->metalPlate, by ca\ca_c\config.bin/CfgSurfaces/Metal/ (original shb\config.bin) 10:06:05 Updating base class Default->stones, by ca\ca_c\config.bin/CfgSurfaces/Beton/ (original shb\config.bin) 10:06:05 Updating base class Default->sand, by ca\ca_c\config.bin/CfgSurfaces/SandBuilding/ (original shb\config.bin) 10:06:05 Updating base class Default->Mud, by ca\ca_c\config.bin/CfgSurfaces/MudBuilding/ (original shb\config.bin) 10:06:05 Updating base class Default->concrete, by ca\ca_c\config.bin/CfgSurfaces/BetonNew/ (original shb\config.bin) 10:06:05 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/CubeRoad/ (original shb\config.bin) 10:06:05 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/Sil_new/ (original shb\config.bin) 10:06:05 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/Asfalt_New/ (original shb\config.bin) 10:06:05 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/Cesta_new/ (original shb\config.bin) 10:06:05 Updating base class Default->concrete_hall, by ca\ca_c\config.bin/CfgSurfaces/Hallway/ (original shb\config.bin) 10:06:05 Updating base class Default->sand, by ca\ca_c\config.bin/CfgSurfaces/SandGeneral/ (original shb\config.bin) 10:06:05 Updating base class ->All, by a3\sounds_f\config.bin/CfgVehicles/Sound/ (original a3\sounds_f\config.bin) 10:06:05 Updating base class Turrets->Turrets, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/ (original CUP\WaterVehicles\CUP_WaterVehicles_Weapons\config.bin) 10:06:05 Updating base class ->MainTurret, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/MainTurret/ (original a3\static_f\config.bin) 10:06:05 Updating base class Strategic->House_Small_F, by ca\buildings_c\config.bin/CfgVehicles/FuelStation/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\config.bin/CfgVehicles/Wall1/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\config.bin/CfgVehicles/Land_Zidka_branka/ (original (no unload)) 10:06:05 Updating base class wall_F->House, by ca\buildings_c\config.bin/CfgVehicles/Land_Plot_Wood_door/ (original (no unload)) 10:06:05 Updating base class wall_F->House, by ca\buildings_c\config.bin/CfgVehicles/Land_Plot_zed_drevo1_branka/ (original (no unload)) 10:06:05 Updating base class House->wall_F, by ca\buildings_c\config.bin/CfgVehicles/Land_Plot_Ohrada_Pruchozi/ (original (no unload)) 10:06:05 Updating base class ->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut_int/UserActions/OpenDoor2/ (original (no unload)) 10:06:05 Updating base class OpenDoor2->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut_int/UserActions/CloseDoor2/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut2_int/UserActions/OpenDoor2/ (original (no unload)) 10:06:05 Updating base class OpenDoor2->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut2_int/UserActions/CloseDoor2/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long/UserActions/OpenDoor2/ (original (no unload)) 10:06:05 Updating base class OpenDoor2->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long/UserActions/CloseDoor2/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long/UserActions/OpenDoor3/ (original (no unload)) 10:06:05 Updating base class OpenDoor3->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long/UserActions/CloseDoor3/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long/UserActions/OpenDoor4/ (original (no unload)) 10:06:05 Updating base class OpenDoor4->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long/UserActions/CloseDoor4/ (original (no unload)) 10:06:05 Updating base class House->Land_Army_hut3_long, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long_int/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long_int/UserActions/OpenDoor2/ (original (no unload)) 10:06:05 Updating base class OpenDoor2->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long_int/UserActions/CloseDoor2/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long_int/UserActions/OpenDoor3/ (original (no unload)) 10:06:05 Updating base class OpenDoor3->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long_int/UserActions/CloseDoor3/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long_int/UserActions/OpenDoor4/ (original (no unload)) 10:06:05 Updating base class OpenDoor4->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Army_hut3_long_int/UserActions/CloseDoor4/ (original (no unload)) 10:06:05 Updating base class House->Land_Hut01, by ca\buildings_c\config.bin/CfgVehicles/Land_Hut02/ (original (no unload)) 10:06:05 Updating base class Land_Hut02->Land_Hut01, by ca\buildings_c\config.bin/CfgVehicles/Land_Hut03/ (original (no unload)) 10:06:05 Updating base class Land_Hut02->Land_Hut01, by ca\buildings_c\config.bin/CfgVehicles/Land_Hut04/ (original (no unload)) 10:06:05 Updating base class House->Land_Vysilac_FM, by ca\buildings_c\config.bin/CfgVehicles/Land_Vysilac_FM2/ (original (no unload)) 10:06:05 Updating base class wall_F->Land_Plot_green_branka, by ca\buildings_c\config.bin/CfgVehicles/Land_Plot_rust_branka/ (original (no unload)) 10:06:05 Updating base class wall_F->land_plot_rust_vrat_r, by ca\buildings_c\config.bin/CfgVehicles/land_plot_green_vrat_r/ (original (no unload)) 10:06:05 Updating base class wall_F->land_plot_rust_vrat_r, by ca\buildings_c\config.bin/CfgVehicles/land_plot_green_vrat_l/ (original (no unload)) 10:06:05 Updating base class House_F->House, by ca\buildings_c\config.bin/CfgVehicles/Land_Ss_hangard/ (original (no unload)) 10:06:05 Updating base class House_F->House, by ca\buildings_c\config.bin/CfgVehicles/Land_Ss_hangar/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Budova4_in/UserActions/OpenDoor2/ (original (no unload)) 10:06:05 Updating base class OpenDoor2->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Budova4_in/UserActions/CloseDoor2/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Budova4_in/UserActions/OpenDoor3/ (original (no unload)) 10:06:05 Updating base class OpenDoor3->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Budova4_in/UserActions/CloseDoor3/ (original (no unload)) 10:06:05 Updating base class ->OpenDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Budova4_in/UserActions/OpenDoor4/ (original (no unload)) 10:06:05 Updating base class OpenDoor4->CloseDoor1, by ca\buildings_c\config.bin/CfgVehicles/Land_Budova4_in/UserActions/CloseDoor4/ (original (no unload)) 10:06:05 Updating base class ->OpenGate, by ca\buildings_c\config.bin/CfgVehicles/ZavoraAnim/UserActions/CloseGate/ (original (no unload)) 10:06:05 Updating base class House->ZavoraAnim, by ca\buildings_c\config.bin/CfgVehicles/Land_Zavora/ (original (no unload)) 10:06:05 Updating base class ZavoraAnim->House, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora/ (original (no unload)) 10:06:05 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) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\misc\config.bin/CfgVehicles/zed_civil_dira/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\misc\config.bin/CfgVehicles/zed_kamenna_desert/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\misc\config.bin/CfgVehicles/zidka_branka/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\misc\config.bin/CfgVehicles/zidka01/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\misc\config.bin/CfgVehicles/zidka02/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\misc\config.bin/CfgVehicles/zidka03/ (original (no unload)) 10:06:05 Updating base class wall_F->CUP_Wall, by ca\buildings_c\misc\config.bin/CfgVehicles/zidka04/ (original (no unload)) 10:06:05 Updating base class NewTurret->NewTurret, by a3\soft_f\config.bin/CfgVehicles/Car_F/Turrets/MainTurret/ (original a3\soft_f\config.bin) 10:06:05 Updating base class ->Hit1, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/HitPoints/Hit2/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->Hit1, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/HitPoints/Hit3/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->Hit1, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/HitPoints/Hit4/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->Hit1, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/HitPoints/Hit5/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->Hit1, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/HitPoints/Hit6/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->Hit1, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/HitPoints/Hit7/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->OpenDoors1, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/UserActions/CloseDoors1/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->OpenDoors2, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/UserActions/CloseDoors2/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->OpenDoors3, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/UserActions/CloseDoors3/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class ->OpenDoors4, by ca\buildings2_c\barn_metal\config.bin/CfgVehicles/Land_Barn_Metal/UserActions/CloseDoors4/ (original ca\Buildings2\barn_metal\config.bin) 10:06:05 Updating base class House->Barrack2, by ca\misc_e_c\config.bin/CfgVehicles/Land_Barrack2_EP1/ (original (no unload)) 10:06:05 Updating base class House->Land_Dirthump02, by ca\misc_e_c\config.bin/CfgVehicles/Land_Dirthump02_EP1/ (original (no unload)) 10:06:05 Updating base class ->OpenDoors1, by ca\structures_c\a_tvtower\config.bin/CfgVehicles/Land_A_TVTower_Base/UserActions/CloseDoors1/ (original (no unload)) 10:06:05 Updating base class ->OpenDoors2, by ca\structures_c\a_tvtower\config.bin/CfgVehicles/Land_A_TVTower_Base/UserActions/CloseDoors2/ (original (no unload)) 10:06:05 Updating base class Land_NavigLight->House, by ca\Structures_E\config.bin/CfgVehicles/Land_runway_edgelight/ (original (a3\roads_f\config.bin - no unload)) 10:06:05 Updating base class AnimationSources->, by ca\structures_e_c\mil\config.bin/CfgVehicles/Land_Mil_ControlTower_dam_EP1/AnimationSources/ (original ca\Structures_E\mil\config.bin) 10:06:05 Updating base class NonStrategic->House_F, by ausextras\road\config.cpp/CfgVehicles/sidewalkcrossing/ (original (no unload)) 10:06:05 Updating base class NonStrategic->House_F, by ausextras\road\config.cpp/CfgVehicles/Sidewalk6ShortEnd/ (original (no unload)) 10:06:05 Updating base class Static->House_F, by ausextras\road\config.cpp/CfgVehicles/asf2_6_crosswalk/ (original (no unload)) 10:06:05 Updating base class ->Military_Item_NoInteractive, by ca\misc_acr_c\container\config.bin/CfgVehicles/Misc_cargo_cont_small/ (original ca\misc_acr_c\container\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_fort_rampart/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_fortified_nest_big/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_fortified_nest_small/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_Fort_Watchtower/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Strategic, by ca\misc3_c\config.bin/CfgVehicles/Hedgehog/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Fort_EnvelopeSmall/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Fort_EnvelopeBig/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Strategic, by ca\misc3_c\config.bin/CfgVehicles/Fort_Barricade/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Land_Fire, by ca\misc3_c\config.bin/CfgVehicles/Misc_TyreHeap/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Misc_thing, by ca\misc3_c\config.bin/CfgVehicles/Notice_board/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class OpenGate->, by ca\misc3_c\config.bin/CfgVehicles/ZavoraAnim/UserActions/CloseGate/ (original (no unload)) 10:06:05 Updating base class ->NonStrategic, by ca\misc3_c\config.bin/CfgVehicles/Gunrack1/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Sign_Danger, by ca\misc3_c\config.bin/CfgVehicles/Sign_Checkpoint/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Sign_Danger, by ca\misc3_c\config.bin/CfgVehicles/Sign_MP_blu/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Sign_Danger, by ca\misc3_c\config.bin/CfgVehicles/Sign_MP_op/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Sign_Danger, by ca\misc3_c\config.bin/CfgVehicles/Sign_MP_ind/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Thing, by ca\misc3_c\config.bin/CfgVehicles/Sign_1L_Border/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Sign_1L_Border, by ca\misc3_c\config.bin/CfgVehicles/Sign_1L_Firstaid/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Sign_1L_Border, by ca\misc3_c\config.bin/CfgVehicles/Sign_1L_Noentry/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Thing, by ca\misc3_c\config.bin/CfgVehicles/Small_items/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->NonStrategic, by ca\misc3_c\config.bin/CfgVehicles/Small_items_NoInteractive/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class House->Small_Items, by ca\misc3_c\config.bin/CfgVehicles/SatPhone/ (original (no unload)) 10:06:05 Updating base class ->TargetBase, by ca\misc3_c\config.bin/CfgVehicles/TargetEpopup/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->TargetBase, by ca\misc3_c\config.bin/CfgVehicles/TargetE/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->TargetBase, by ca\misc3_c\config.bin/CfgVehicles/TargetGrenadBase/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->TargetFakeTankBase, by ca\misc3_c\config.bin/CfgVehicles/TargetFakeTank/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Strategic, by ca\misc3_c\config.bin/CfgVehicles/Military_Item_NoInteractive/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_CamoNet_NATO/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Land_CamoNet_NATO, by ca\misc3_c\config.bin/CfgVehicles/Land_CamoNetVar_NATO/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Land_CamoNet_NATO, by ca\misc3_c\config.bin/CfgVehicles/Land_CamoNetB_NATO/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_CamoNet_EAST/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Land_CamoNet_EAST, by ca\misc3_c\config.bin/CfgVehicles/Land_CamoNetVar_EAST/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Land_CamoNet_EAST, by ca\misc3_c\config.bin/CfgVehicles/Land_CamoNetB_EAST/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Strategic, by ca\misc3_c\config.bin/CfgVehicles/76n6ClamShell/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Ruins, by ca\misc3_c\config.bin/CfgVehicles/Land_PowGen_Big_ruins/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Land_Barrack2, by ca\misc3_c\config.bin/CfgVehicles/Barrack2/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->Military_Item_NoInteractive, by ca\misc3_c\config.bin/CfgVehicles/Misc_Backpackheap/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_Dirthump01/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_Dirthump02/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->House, by ca\misc3_c\config.bin/CfgVehicles/Land_Dirthump03/ (original ca\misc3_c\config.bin) 10:06:05 Updating base class ->BulletBase, by a3\weapons_f_mark\config.bin/CfgAmmo/B_93x64_Ball/ (original a3\weapons_f_mark\config.bin) 10:06:05 Updating base class CUP_Vmlauncher_FFAR_veh->RocketPods, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vmlauncher_CRV7_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin) 10:06:05 Updating base class CUP_Vacannon_GAU12_veh->CannonCore, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vacannon_GAU22_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin) 10:06:05 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin) 10:06:05 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin) 10:06:05 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin) 10:06:05 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin) 10:06:05 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin) 10:06:05 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:06:05 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:06:05 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin) 10:06:05 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin) 10:06:05 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin) 10:06:05 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin) 10:06:05 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin) 10:06:05 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin) 10:06:05 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\grid\config.bin/CfgWorlds/Intro/ (original CUP\Terrains\cup_terrains_worlds\grid\config.bin) 10:06:05 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/utes/ (original CUP\Terrains\cup_terrains_worlds\intros\config.bin) 10:06:05 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/Chernarus/ (original CUP\Terrains\cup_terrains_worlds\intros\config.bin) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 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) 10:06:05 Updating base class ->LSV_02_AT_base_F, by a3\soft_f_exp\lsv_02\config.bin/CfgVehicles/O_T_LSV_02_AT_F/ (original a3\soft_f_exp\lsv_02\config.bin) 10:06:05 Updating base class ->LSV_02_armed_base_F, by a3\soft_f_exp\lsv_02\config.bin/CfgVehicles/O_LSV_02_armed_F/ (original a3\soft_f_exp\lsv_02\config.bin) 10:06:05 Updating base class ->LSV_02_unarmed_base_F, by a3\soft_f_exp\lsv_02\config.bin/CfgVehicles/O_LSV_02_unarmed_F/ (original a3\soft_f_exp\lsv_02\config.bin) 10:06:05 Updating base class ->Offroad_02_unarmed_base_F, by a3\soft_f_exp\offroad_02\config.bin/CfgVehicles/I_C_Offroad_02_unarmed_F/ (original a3\soft_f_exp\offroad_02\config.bin) 10:06:05 Updating base class ->Offroad_02_LMG_base_F, by a3\soft_f_exp\offroad_02\config.bin/CfgVehicles/I_C_Offroad_02_LMG_F/ (original a3\soft_f_exp\offroad_02\config.bin) 10:06:05 Updating base class ->Offroad_02_AT_base_F, by a3\soft_f_exp\offroad_02\config.bin/CfgVehicles/I_C_Offroad_02_AT_F/ (original a3\soft_f_exp\offroad_02\config.bin) 10:06:06 Updating base class ->Plane_Civil_01_base_F, by a3\air_f_exp\plane_civil_01\config.bin/CfgVehicles/C_Plane_Civil_01_racing_F/ (original a3\air_f_exp\plane_civil_01\config.bin) 10:06:06 Updating base class CfgEnvSounds->EnvSounds, by a3\sounds_f_exp\config.bin/CfgWorlds/CAWorld/EnvSounds/ (original CUP\Terrains\cup_terrains_worlds\envsounds\config.bin) 10:06:06 Updating base class 500Rnd_127x99_mag->500Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/500Rnd_127x99_mag_Tracer_Green/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 500Rnd_127x99_mag->500Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/500Rnd_127x99_mag_Tracer_Yellow/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 200Rnd_127x99_mag->200Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/200Rnd_127x99_mag_Tracer_Green/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 200Rnd_127x99_mag->200Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/200Rnd_127x99_mag_Tracer_Yellow/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 500Rnd_127x99_mag->200Rnd_127x99_mag, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/100Rnd_127x99_mag/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 100Rnd_127x99_mag->100Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/100Rnd_127x99_mag_Tracer_Green/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 100Rnd_127x99_mag->100Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/100Rnd_127x99_mag_Tracer_Yellow/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 200Rnd_762x51_Belt->VehicleMagazine, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/2000Rnd_762x51_Belt/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 2000Rnd_65x39_Belt->2000Rnd_762x51_Belt, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/5000Rnd_762x51_Belt/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 5000Rnd_762x51_Belt->2000Rnd_762x51_Belt, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/5000Rnd_762x51_Yellow_Belt/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 32Rnd_155mm_Mo_shells->VehicleMagazine, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/8Rnd_82mm_Mo_shells/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class 250Rnd_30mm_HE_shells->VehicleMagazine, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/60Rnd_30mm_APFSDS_shells/ (original a3\weapons_f\config.bin) 10:06:06 Updating base class ->magazine_Missile_AMRAAM_D_x1, by a3\weapons_f_jets\config.bin/CfgMagazines/PylonMissile_Missile_AMRAAM_D_INT_x1/ (original a3\weapons_f_jets\config.bin) 10:06:07 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin) 10:06:07 Updating base class ->Van_02_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/Van_02_transport_base_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class ->Van_02_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/Van_02_vehicle_base_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class ->Van_02_transport_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/I_G_Van_02_transport_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class ->Van_02_transport_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/B_G_Van_02_transport_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class ->Van_02_transport_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/O_G_Van_02_transport_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class ->Van_02_vehicle_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/I_G_Van_02_vehicle_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class ->Van_02_vehicle_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/B_G_Van_02_vehicle_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class ->Van_02_vehicle_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/O_G_Van_02_vehicle_F/ (original a3\soft_f_orange\van_02\config.bin) 10:06:07 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin) 10:06:07 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin) 10:06:07 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin) 10:06:07 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin) 10:06:07 Updating base class ScrollBar->ScrollBar, by a3\ui_f_tank\config.bin/RscListNBox/ListScrollBar/ (original a3\ui_f_tank\config.bin) 10:06:07 Updating base class ->MissileLauncher, by a3\weapons_f_tank\config.bin/CfgWeapons/missiles_Vorona/ (original a3\weapons_f_tank\config.bin) 10:06:07 Updating base class ->CBA_Extended_EventHandlers_base, by x\cba\addons\xeh\config.bin/CBA_Extended_EventHandlers/ (original x\cba\addons\xeh\config.bin) 10:06:07 Updating base class ->asdg_SlotInfo, by x\cba\addons\jr\config.bin/asdg_FrontSideRail/ (original x\cba\addons\jr\config.bin) 10:06:07 Updating base class ->asdg_OpticSideMount, by CUP\Weapons\CUP_Weapons_East_Attachments\config.bin/CUP_DovetailMount/ (original CUP\Weapons\CUP_Weapons_East_Attachments\config.bin) 10:06:07 Updating base class ->asdg_OpticRail1913_long, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:06:07 Updating base class ->asdg_OpticRail1913_short, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopShortMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:06:07 Updating base class ->asdg_FrontSideRail, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnySideMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:06:07 Updating base class ->asdg_UnderSlot, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyUnderMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:06:07 Updating base class KIA_RHIB_Cargo->DefaultDie, by CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin/CfgMovesMaleSdr/States/Zodiac_Dead/ (original CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin) 10:06:07 Updating base class Optics_Commander_02->Optics_Armored, by CUP\WheeledVehicles\CUP_WheeledVehicles_BTR90\config.bin/Optics_Commander_03/ (original a3\weapons_f\config.bin) 10:06:07 Updating base class Car->LandVehicle, by CUP\WheeledVehicles\CUP_WheeledVehicles_RG31\config.bin/CfgVehicles/car_F/ (original (a3\soft_f\config.bin - no unload)) 10:06:07 Updating base class LandVehicle->Car, by CUP\WheeledVehicles\CUP_WheeledVehicles_Stryker\config.bin/CfgVehicles/Car_F/ (original (a3\soft_f\config.bin - no unload)) 10:06:07 Updating base class ->ProxyRetex, by CUP\WheeledVehicles\CUP_WheeledVehicles_Ridgeback\config.bin/CfgNonAIVehicles/Proxywreck/ (original bin\config.bin) 10:06:08 Updating base class Sounds->, by CUP\TrackedVehicles\CUP_TrackedVehicles_T34\config.bin/CfgVehicles/Tank_F/Sounds/ (original CUP\TrackedVehicles\CUP_TrackedVehicles_T34\config.bin) 10:06:09 Initializing Steam Manager 10:06:09 Starting initial content check. 10:06:09 Steam Manager initialized. 10:06:09 10:06:09 ==== Loaded addons ==== 10:06:09 10:06:09 dta\bin.pbo - 144923 10:06:09 dta\core.pbo - 129618 10:06:09 dta\languagecore_f.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Reduced Weapon Sway\addons\revo_reducedweaponsway.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a2_epoch_weapons.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_1.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_3.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_code.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_community.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_configs.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_language.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_structures.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_vehicles.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_vehicles_1.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_weapons.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\a6m5wreck.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\art_gallery.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ausbuildings.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ausextras.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ausobjects.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ausroads.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ausrocks.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ausscrappers.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\aussounds.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\australia.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\austrees.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\brg_africa.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\buildings.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\buildings2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ca_e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\data.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ed4_structures_a3.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\jas92_structures_f.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\langauage_e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\language.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\language_acr.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\language_baf.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\language_pmc.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\misc.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\misc2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\misc3.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\misc_e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_bank.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_buildings.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_buildings2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_buildings3.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_buildings4.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_civilengineering.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_objects.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_post.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_residential.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_residential2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_shopping.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\mm_showroom.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\partitioningfence.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\plants.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\plants2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\plants_e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\plants_e2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\plants_pmc.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\plp_containers.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\raid_road.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\roads.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\roads2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\roads_e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\rocks.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\rocks2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\rocks_e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\shb.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\signs.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\signs2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\structures.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\structures_e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\structures_pmc.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\ui.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\water2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\wheeled.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\wheeled2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\xcam_eu.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\xcam_metal.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\xcam_objects.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\xcam_pipe.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\xcam_wood.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9\addons\xcam_woodworks.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Zombies and Demons\addons\ryanzombies.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_a1always_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_a1_editorobjects.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_a2_editorobjects.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_aia_compat.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_baseconfig_f.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_buildings.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_a10_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_air2_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_air3_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_air_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_air_d_baf_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_air_e_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_air_pmc_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_animals2_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_buildings2_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_buildings_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_ca_acr.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_ca_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_ca_pmc.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_characters2_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_cti_buildings.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_data_baf.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_data_baf_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_hotfix.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_hotfix_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_l39_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_baf.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_e.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_languagemissions_pmc.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_language_e.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_misc3_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_misc_acr.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_misc_acr_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_misc_baf.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_misc_e_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_misc_rtm2.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_mp_armory_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_roads_pmc.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_roads_rtm2.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_signs_e.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_c_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_sounds_e_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_structures_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_structures_e_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_structures_pmc_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_tracked2_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_tracked_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_tracked_e_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_uifonts.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_water_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_weapons2_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_e_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_weapons_pmc_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ca_wheeled_e_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_core.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_dbe1_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_dbe1_models_dbe1.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_dbe1_models_dbe1_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_editor_c.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_hsim_data_h_dummy.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_hsim_languagemissions_h.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_hsim_language_h.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_ibr_plants.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_plants.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_terrains_core.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_weather.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core\addons\cup_terrains_worlds.pbo - 00000000 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_a10.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ah1z.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ah6.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ah64.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ambientplanes.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_an2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_av8b.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_aw159.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_c130j.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ch47.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ch53e.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_core.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_dc3.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_f35.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_hc3.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ka50.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ka52.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_ka60.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_l39.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_mh60s.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_mi24.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_mi35.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_mi6.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_mi8.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_motorplane.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_mq9.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_mv22.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_pchela1t.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_sa330.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_staticline.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_su25.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_su34.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_uh1h.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_uh1y.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_airvehicles_uh60.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_2s6m.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_aav.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_bmp.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_bmp3.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_bradley.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_bulldog.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_challengerii.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_core.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_fv510.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_m113.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_m1_abrams.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_m270.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_m60.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_mcv80.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_sounds.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_t34.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_t55.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_t72.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_t90.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_trackedvehicles_zsu23.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_vehicles_cfggroups.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_vehicles_core.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_vehicles_fastrope.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_vehicles_towing.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_core.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_fishing_boat.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_fregata.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_lhd.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_pbx.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_rhib.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_seafox.pbo - 1 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_weapons.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_watervehicles_zodiac.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_brdm2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_btr40.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_btr60.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_btr90.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_core.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_coyote.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_datsun.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_dingo.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_hmmwv.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_ikarus.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_jackal.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_kamaz.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_lada.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_lav25.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_lr.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_lsv_02.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_m1030.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_mastiff.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_matv.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_mtvr.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_octavia.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_offroad_02.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_rg31.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_ridgeback.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_s1203.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_skoda.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_strider.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_stryker.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_suv.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_t810.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_towingtractor.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_tt650.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_uaz.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_uphmmwv.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_ural.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_v3s.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_van02.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_vodnik.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_volha.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_vwgolf.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles\addons\cup_wheeledvehicles_wolfhound.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_civil_chernarus.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_civil_russia.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_civil_takistan.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_core.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_acr.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_baf.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_cdf.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_chedaki.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_delta.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_dummyinfantryset.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_germany.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_napa.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_pmc.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_racs.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_russia.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_sla.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_taki.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_takiinsurgents.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_usarmy.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_people_military_usmc.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_creatures_staticweapons.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_cz.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_cz_acr.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_cz_acr_c.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_cz_c.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_en.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_en_c.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_gb_baf.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_gb_baf_c.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_gb_pmc.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_gb_pmc_c.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_ru.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_ru_c.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_tk.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units\addons\cup_dubbing_radio_tk_c.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_baseconfigs.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_basedata.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_aa12.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_ak.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_ammoboxes.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_ammunition.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_as50.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_awm.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_backpacks.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_bizon.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_colt1911.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_compact.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_compatibility.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_curator.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_cz750.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_cz805.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_duty.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_dynamicloadout.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_east_attachments.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_evo.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_fnfal.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_g36.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_glock17.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_grenadelaunchers.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_grenades.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_huntingrifle.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_igla.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_items.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_javelin.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_ksvk.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_l110.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_l129.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_l85.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_leeenfield.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m1014.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m107.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m110.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m136.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m14.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m14_dmr.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m16.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m24.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m240.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m249.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m47.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m60e4.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m72a6.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_m9.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_maaws.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_makarov.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_metis_at_13.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_microuzi.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_mk48.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_mp5.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_nlaw.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_nvg.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_pb_6p9.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_phantom.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_pk.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_pods.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_put.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_revolver.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_rpg18.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_rpg7.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_sa58.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_sa61.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_saiga12k.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_scar.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_shield.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_smaw.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_sounds.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_soundshaders.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_staticweapons.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_stinger.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_strela_2.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_svd.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_uk59.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_vehicleweapons.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_vss.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_weaponscore.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_weaponsdata.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_west_attachments.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons\addons\cup_weapons_xm8.pbo - unknown 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_accessory.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_ai.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_arrays.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_common.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_diagnostic.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_events.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_hashes.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_help.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_jr.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_keybinding.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_main.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_main_a3.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_modules.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_music.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_network.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_settings.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_statemachine.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_strings.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_ui.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_vectors.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_versioning.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3\addons\cba_xeh.pbo - 4965324d 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\armor_f_tank.ebo - 132036 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\cargoposes_f_tank.ebo - 128283 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\characters_f_tank.ebo - 129798 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\data_f_tank.ebo - 128203 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\dubbing_f_tank.ebo - 127958 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\editorpreviews_f_tank.ebo - 131632 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\functions_f_tank.ebo - 125996 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\languagemissions_f_tank.ebo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\language_f_tank.ebo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\missions_f_tank.ebo - 130984 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\missions_f_tank_data.ebo - 128937 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\modules_f_tank.ebo - 129574 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\music_f_tank.ebo - 127912 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\props_f_tank.ebo - 131702 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\sounds_f_tank.ebo - 131364 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\structures_f_tank.ebo - 131803 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\ui_f_tank.ebo - 128232 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank\addons\weapons_f_tank.pbo - 131482 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\characters_f_tacops.ebo - 129739 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\data_f_tacops.ebo - 126731 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\dubbing_f_tacops.ebo - 129340 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\functions_f_tacops.ebo - 124382 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\languagemissions_f_tacops.ebo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\language_f_tacops.ebo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\missions_f_tacops.ebo - 131995 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\modules_f_tacops.ebo - 124298 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\music_f_tacops.ebo - 124064 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\sounds_f_tacops.ebo - 123795 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops\addons\ui_f_tacops.ebo - 124116 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\air_f_orange.pbo - 132035 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\cargoposes_f_orange.pbo - 126225 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\characters_f_orange.pbo - 129739 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\data_f_orange.pbo - 121095 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\dubbing_f_orange.pbo - 121689 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\editorpreviews_f_orange.pbo - 123173 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\functions_f_orange.pbo - 128287 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\languagemissions_f_orange.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\language_f_orange.pbo - 132196 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\missions_f_orange.pbo - 126711 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\modules_f_orange.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\music_f_orange.pbo - 120725 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\props_f_orange.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\soft_f_orange.pbo - 132239 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\sounds_f_orange.pbo - 122301 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\structures_f_orange.pbo - 132196 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\supplies_f_orange.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\ui_f_orange.pbo - 123398 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange\addons\weapons_f_orange.pbo - 130995 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\armor_f_argo.pbo - 129739 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\characters_f_patrol.pbo - 129998 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\data_f_argo.pbo - 128209 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\data_f_patrol.pbo - 121287 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\editorpreviews_f_argo.pbo - 121102 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\functions_f_patrol.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\languagemissions_f_patrol.pbo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\language_f_argo.pbo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\language_f_patrol.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\map_malden.pbo - 129554 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\map_malden_data.pbo - 126137 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\map_malden_data_layers.pbo - 123441 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\map_malden_scenes_f.pbo - 120026 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\missions_f_patrol.pbo - 126663 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\modules_f_patrol.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\music_f_argo.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\props_f_argo.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\rocks_f_argo.pbo - 123488 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\sounds_f_patrol.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\structures_f_argo.pbo - 128082 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\ui_f_patrol.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\vegetation_f_argo.pbo - 123488 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo\addons\weapons_f_patrol.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\air_f_jets.pbo - 132072 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\anims_f_jets.pbo - 123210 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\boat_f_destroyer.pbo - 132140 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\boat_f_jets.pbo - 129607 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\cargoposes_f_jets.pbo - 126225 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\characters_f_jets.pbo - 129739 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\data_f_destroyer.pbo - 132156 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\data_f_jets.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\data_f_sams.pbo - 132140 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\dubbing_f_jets.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\editorpreviews_f_destroyer.pbo - 132141 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\editorpreviews_f_jets.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\editorpreviews_f_sams.pbo - 132141 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\functions_f_destroyer.pbo - 132075 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\functions_f_jets.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\languagemissions_f_jets.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\language_f_destroyer.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\language_f_jets.pbo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\language_f_sams.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\missions_f_jets.pbo - 130755 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\modules_f_jets.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\music_f_jets.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\props_f_destroyer.pbo - 132141 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\props_f_jets.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\sounds_f_jets.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\static_f_destroyer.pbo - 132329 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\static_f_jets.pbo - 131969 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\static_f_sams.pbo - 132140 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\ui_f_jets.pbo - 126137 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\weapons_f_destroyer.pbo - 132155 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\weapons_f_jets.pbo - 131383 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets\addons\weapons_f_sams.pbo - 132140 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\air_f_exp.pbo - 132062 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\anims_f_exp.pbo - 126506 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\armor_f_exp.pbo - 129739 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\boat_f_exp.pbo - 129747 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\cargoposes_f_exp.pbo - 126224 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\characters_f_exp.pbo - 129738 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\data_f_exp.pbo - 128203 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\dubbing_f_exp.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp.pbo - 119458 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\editorpreviews_f_exp.pbo - 126519 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\functions_f_exp.pbo - 132366 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\languagemissions_f_exp.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\language_f_exp.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\map_data_exp.pbo - 123499 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\map_tanoabuka.pbo - 130033 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data.pbo - 123523 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data_layers.pbo - 121192 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\map_tanoa_scenes_f.pbo - 123527 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\missions_f_exp.pbo - 132366 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\missions_f_exp_data.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\missions_f_exp_video.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\modules_f_exp.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\music_f_exp.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\music_f_exp_music.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\props_f_exp.pbo - 130646 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\rocks_f_exp.pbo - 129683 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\soft_f_exp.pbo - 130182 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\sounds_f_exp.pbo - 131659 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\static_f_exp.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\structures_f_exp.pbo - 132109 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\structures_f_exp_civilian.pbo - 131934 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\structures_f_exp_commercial.pbo - 123430 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\structures_f_exp_cultural.pbo - 123423 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\structures_f_exp_data.pbo - 123431 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\structures_f_exp_industrial.pbo - 123429 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\structures_f_exp_infrastructure.pbo - 132117 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\supplies_f_exp.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\ui_f_exp.pbo - 123398 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\vegetation_f_exp.pbo - 127271 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion\addons\weapons_f_exp.pbo - 131546 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\anims_f_mark.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\characters_f_mark.pbo - 129739 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\data_f_mark.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\dubbing_f_mark.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\dubbing_f_mp_mark.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\functions_f_mark.pbo - 129645 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\functions_f_mp_mark.pbo - 129434 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\languagemissions_f_mark.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\languagemissions_f_mp_mark.pbo - 132106 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\language_f_mark.pbo - 132105 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\language_f_mp_mark.pbo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\missions_f_mark.pbo - 122301 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\missions_f_mark_data.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\missions_f_mark_video.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\missions_f_mp_mark.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\missions_f_mp_mark_data.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\modules_f_mark.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\modules_f_mp_mark.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\music_f_mark.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\music_f_mark_music.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\sounds_f_mark.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\static_f_mark.pbo - 130728 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\structures_f_mark.pbo - 123419 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\supplies_f_mark.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\ui_f_mark.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\ui_f_mp_mark.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark\addons\weapons_f_mark.pbo - 131460 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\air_f_heli.pbo - 132035 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\anims_f_heli.pbo - 123210 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\boat_f_heli.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\cargoposes_f_heli.pbo - 126231 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\data_f_heli.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\dubbing_f_heli.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\functions_f_heli.pbo - 123022 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\languagemissions_f_heli.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\language_f_heli.pbo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\missions_f_heli.pbo - 129397 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\missions_f_heli_data.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\missions_f_heli_video.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\modules_f_heli.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\music_f_heli.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\music_f_heli_music.pbo - 119477 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\soft_f_heli.pbo - 129742 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\sounds_f_heli.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\structures_f_heli.pbo - 129596 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\supplies_f_heli.pbo - 129371 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli\addons\ui_f_heli.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\anims_f_kart.pbo - 123210 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\characters_f_kart.pbo - 120162 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\data_f_kart.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\languagemissions_f_kart.pbo - 132104 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\language_f_kart.pbo - 132105 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\missions_f_kart.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\missions_f_kart_data.pbo - 119459 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\modules_f_kart.pbo - 128288 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\modules_f_kart_data.pbo - 124178 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\soft_f_kart.pbo - 129741 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\sounds_f_kart.pbo - 125381 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\structures_f_kart.pbo - 123419 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\ui_f_kart.pbo - 119478 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart\addons\weapons_f_kart.pbo - 120217 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator\addons\data_f_curator.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator\addons\data_f_curator_music.pbo - 119457 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator\addons\functions_f_curator.pbo - 123333 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator\addons\language_f_curator.pbo - 132107 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator\addons\missions_f_curator.pbo - 121570 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator\addons\modules_f_curator.pbo - 128381 10:06:09 C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator\addons\ui_f_curator.pbo - 130996 10:06:09 addons\3den.pbo - 131733 10:06:09 addons\3den_language.pbo - 132107 10:06:09 addons\a3.pbo - unknown 10:06:09 addons\air_f.pbo - 132032 10:06:09 addons\air_f_beta.pbo - 132118 10:06:09 addons\air_f_epb.pbo - 132034 10:06:09 addons\air_f_epc.pbo - 129848 10:06:09 addons\air_f_gamma.pbo - 130580 10:06:09 addons\animals_f.pbo - 131659 10:06:09 addons\animals_f_beta.pbo - 123208 10:06:09 addons\anims_f.pbo - 127133 10:06:09 addons\anims_f_bootcamp.pbo - 123209 10:06:09 addons\anims_f_data.pbo - 127133 10:06:09 addons\anims_f_epa.pbo - 129908 10:06:09 addons\anims_f_epc.pbo - 121358 10:06:09 addons\anims_f_exp_a.pbo - 123209 10:06:09 addons\armor_f.pbo - 129739 10:06:09 addons\armor_f_beta.pbo - 132035 10:06:09 addons\armor_f_epb.pbo - 129739 10:06:09 addons\armor_f_epc.pbo - 129739 10:06:09 addons\armor_f_gamma.pbo - 132036 10:06:09 addons\baseconfig_f.pbo - 119457 10:06:09 addons\boat_f.pbo - 132036 10:06:09 addons\boat_f_beta.pbo - 132036 10:06:09 addons\boat_f_epc.pbo - 131911 10:06:09 addons\boat_f_gamma.pbo - 127529 10:06:09 addons\cargoposes_f.pbo - 128420 10:06:09 addons\characters_f.pbo - 130081 10:06:09 addons\characters_f_beta.pbo - 129738 10:06:09 addons\characters_f_bootcamp.pbo - 129738 10:06:09 addons\characters_f_epa.pbo - 129738 10:06:09 addons\characters_f_epb.pbo - 129738 10:06:09 addons\characters_f_epc.pbo - 129738 10:06:09 addons\characters_f_gamma.pbo - 129738 10:06:09 addons\data_f.pbo - 132155 10:06:09 addons\data_f_bootcamp.pbo - 129618 10:06:09 addons\data_f_exp_a.pbo - 119457 10:06:09 addons\data_f_exp_b.pbo - 119457 10:06:09 addons\drones_f.pbo - 132036 10:06:09 addons\dubbing_f.pbo - 119457 10:06:09 addons\dubbing_f_beta.pbo - 119457 10:06:09 addons\dubbing_f_bootcamp.pbo - 119457 10:06:09 addons\dubbing_f_epa.pbo - 119457 10:06:09 addons\dubbing_f_epb.pbo - 119457 10:06:09 addons\dubbing_f_epc.pbo - 119457 10:06:09 addons\dubbing_f_gamma.pbo - 122449 10:06:09 addons\dubbing_radio_f.pbo - 119457 10:06:09 addons\dubbing_radio_f_data_eng.pbo - 119457 10:06:09 addons\dubbing_radio_f_data_engb.pbo - 119458 10:06:09 addons\dubbing_radio_f_data_gre.pbo - 119458 10:06:09 addons\dubbing_radio_f_data_per.pbo - 119458 10:06:09 addons\dubbing_radio_f_data_vr.pbo - 119458 10:06:09 addons\editorpreviews_f.pbo - 128120 10:06:09 addons\editor_f.pbo - 121103 10:06:09 addons\functions_f.pbo - 132155 10:06:09 addons\functions_f_bootcamp.pbo - 129770 10:06:09 addons\functions_f_epa.pbo - 119458 10:06:09 addons\functions_f_epc.pbo - 119458 10:06:09 addons\functions_f_exp_a.pbo - 122619 10:06:09 addons\languagemissions_f.pbo - 132104 10:06:09 addons\languagemissions_f_beta.pbo - 132104 10:06:09 addons\languagemissions_f_bootcamp.pbo - 132107 10:06:09 addons\languagemissions_f_epa.pbo - 132104 10:06:09 addons\languagemissions_f_epb.pbo - 132104 10:06:09 addons\languagemissions_f_epc.pbo - 132123 10:06:09 addons\languagemissions_f_exp_a.pbo - 132107 10:06:09 addons\languagemissions_f_gamma.pbo - 132104 10:06:09 addons\language_f.pbo - 132107 10:06:09 addons\language_f_beta.pbo - 132107 10:06:09 addons\language_f_bootcamp.pbo - 132104 10:06:09 addons\language_f_epa.pbo - 132104 10:06:09 addons\language_f_epb.pbo - 132107 10:06:09 addons\language_f_epc.pbo - 132104 10:06:09 addons\language_f_exp_a.pbo - 132104 10:06:09 addons\language_f_exp_b.pbo - 132104 10:06:09 addons\language_f_gamma.pbo - 132107 10:06:09 addons\map_altis.pbo - 127995 10:06:09 addons\map_altis_data.pbo - 123439 10:06:09 addons\map_altis_data_layers.pbo - 123456 10:06:09 addons\map_altis_data_layers_00_00.pbo - 0000 10:06:09 addons\map_altis_data_layers_00_01.pbo - 0000 10:06:09 addons\map_altis_data_layers_01_00.pbo - 0000 10:06:09 addons\map_altis_data_layers_01_01.pbo - 0000 10:06:09 addons\map_altis_scenes_f.pbo - 119459 10:06:09 addons\map_data.pbo - 127098 10:06:09 addons\map_stratis.pbo - 129518 10:06:09 addons\map_stratis_data.pbo - 122905 10:06:09 addons\map_stratis_data_layers.pbo - 122917 10:06:09 addons\map_stratis_scenes_f.pbo - 119459 10:06:09 addons\map_vr.pbo - 131719 10:06:09 addons\map_vr_scenes_f.pbo - 119459 10:06:09 addons\misc_f.pbo - 119459 10:06:09 addons\missions_f.pbo - 129735 10:06:09 addons\missions_f_beta.pbo - 122470 10:06:09 addons\missions_f_beta_data.pbo - 119459 10:06:09 addons\missions_f_beta_video.pbo - 119459 10:06:09 addons\missions_f_bootcamp.pbo - 129645 10:06:09 addons\missions_f_bootcamp_data.pbo - 119459 10:06:09 addons\missions_f_bootcamp_video.pbo - 119459 10:06:09 addons\missions_f_data.pbo - 119459 10:06:09 addons\missions_f_epa.pbo - 132216 10:06:09 addons\missions_f_epa_data.pbo - 119459 10:06:09 addons\missions_f_epa_video.pbo - 119459 10:06:09 addons\missions_f_epb.pbo - 119459 10:06:09 addons\missions_f_epc.pbo - 119459 10:06:09 addons\missions_f_exp_a.pbo - 121496 10:06:09 addons\missions_f_exp_a_data.pbo - 119459 10:06:09 addons\missions_f_gamma.pbo - 131918 10:06:09 addons\missions_f_gamma_data.pbo - 119459 10:06:09 addons\missions_f_gamma_video.pbo - 119459 10:06:09 addons\missions_f_video.pbo - 119459 10:06:09 addons\modules_f.pbo - 124453 10:06:09 addons\modules_f_beta.pbo - 119459 10:06:09 addons\modules_f_beta_data.pbo - 119459 10:06:09 addons\modules_f_bootcamp.pbo - 119459 10:06:09 addons\modules_f_data.pbo - 122470 10:06:09 addons\modules_f_epb.pbo - 119459 10:06:09 addons\modules_f_exp_a.pbo - 119459 10:06:09 addons\music_f.pbo - 119459 10:06:09 addons\music_f_bootcamp.pbo - 119459 10:06:09 addons\music_f_bootcamp_music.pbo - 119459 10:06:09 addons\music_f_epa.pbo - 119459 10:06:09 addons\music_f_epa_music.pbo - 119459 10:06:09 addons\music_f_epb.pbo - 119459 10:06:09 addons\music_f_epb_music.pbo - 119459 10:06:09 addons\music_f_epc.pbo - 119459 10:06:09 addons\music_f_epc_music.pbo - 119477 10:06:09 addons\music_f_music.pbo - 119477 10:06:09 addons\plants_f.pbo - 126807 10:06:09 addons\props_f_exp_a.pbo - 129371 10:06:09 addons\roads_f.pbo - 127271 10:06:09 addons\rocks_f.pbo - 127271 10:06:09 addons\signs_f.pbo - 127272 10:06:09 addons\soft_f.pbo - 132036 10:06:09 addons\soft_f_beta.pbo - 132036 10:06:09 addons\soft_f_bootcamp.pbo - 129739 10:06:09 addons\soft_f_epc.pbo - 129739 10:06:09 addons\soft_f_gamma.pbo - 131376 10:06:09 addons\sounds_f.pbo - 132162 10:06:09 addons\sounds_f_arsenal.pbo - 127887 10:06:09 addons\sounds_f_bootcamp.pbo - 119477 10:06:09 addons\sounds_f_characters.pbo - 121082 10:06:09 addons\sounds_f_environment.pbo - 120046 10:06:09 addons\sounds_f_epb.pbo - 126923 10:06:09 addons\sounds_f_epc.pbo - 125380 10:06:09 addons\sounds_f_exp_a.pbo - 119477 10:06:09 addons\sounds_f_sfx.pbo - 119477 10:06:09 addons\sounds_f_vehicles.pbo - 128448 10:06:09 addons\static_f.pbo - 132036 10:06:09 addons\static_f_beta.pbo - 122642 10:06:09 addons\static_f_gamma.pbo - 122615 10:06:09 addons\structures_f.pbo - 131287 10:06:09 addons\structures_f_bootcamp.pbo - 123488 10:06:09 addons\structures_f_data.pbo - 130046 10:06:09 addons\structures_f_epa.pbo - 123407 10:06:09 addons\structures_f_epb.pbo - 126137 10:06:09 addons\structures_f_epc.pbo - 123407 10:06:09 addons\structures_f_exp_a.pbo - 123423 10:06:09 addons\structures_f_households.pbo - 129369 10:06:09 addons\structures_f_ind.pbo - 130947 10:06:09 addons\structures_f_mil.pbo - 127270 10:06:09 addons\structures_f_wrecks.pbo - 129371 10:06:09 addons\uifonts_f.pbo - 119478 10:06:09 addons\uifonts_f_data.pbo - 128439 10:06:09 addons\ui_f.pbo - 131720 10:06:09 addons\ui_f_bootcamp.pbo - 119478 10:06:09 addons\ui_f_data.pbo - 129859 10:06:09 addons\ui_f_exp_a.pbo - 119478 10:06:09 addons\weapons_f.pbo - 132157 10:06:09 addons\weapons_f_beta.pbo - 130487 10:06:09 addons\weapons_f_bootcamp.pbo - 124358 10:06:09 addons\weapons_f_epa.pbo - 124514 10:06:09 addons\weapons_f_epb.pbo - 124216 10:06:09 addons\weapons_f_epc.pbo - 130416 10:06:09 addons\weapons_f_gamma.pbo - 120217 10:06:09 10:06:09 ======================= 10:06:09 10:06:09 ============================================================================================= List of mods =============================================================================================== 10:06:09 modsReadOnly = true 10:06:09 safeModsActivated = false 10:06:09 customMods = true 10:06:09 hash = '63BB5BCBEC18E52567F789DCA73A3221196DBD66' 10:06:09 hashShort = 'ab0802f5' 10:06:09 name | modDir | default | origin | hash | hashShort | fullPath 10:06:09 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 10:06:09 Reduced Weapon Sway | @Reduced Weapon Sway | false | GAME DIR | 027a9237f58dbea24a5ca850f208e02a165a34ba | 3cbfcfe4 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Reduced Weapon Sway 10:06:09 Epoch Mod 1.2.0 | @Epoch | false | GAME DIR | 02ed17fb0b0b859b45ac71ba84bd2285d66b3a71 | 4efd885a | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Epoch 10:06:09 Australia V5.09 | @Australia 5.0.9 | false | GAME DIR | 13e1b8ddad9b242a7b5eedf18dc75cd025f9b8ee | 913cdda4 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Australia 5.0.9 10:06:09 Ryan's Zombies & Demons | @Zombies and Demons | false | GAME DIR | a8e40ba92bbdc0eed3beaad1536a841396a2083d | 62057cac | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@Zombies and Demons 10:06:09 CUP Terrains - Core 1.4.2 | @CUP Terrains - Core | false | GAME DIR | d5593733fe08493aadc7d1f5b70e52b62252ea4d | 4d3a9352 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Terrains - Core 10:06:09 CUP Vehicles 1.10.1 | @CUP Vehicles | false | GAME DIR | 32872fe828e6a8e0c05ea2dbd208c05f35d816c0 | 2346a5e6 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Vehicles 10:06:09 CUP Units 1.10.1 | @CUP Units | false | GAME DIR | 17e998fdad6f4ac051e5526854ead37377db800e | 80be0358 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Units 10:06:09 CUP Weapons 1.10.1 | @CUP Weapons | false | GAME DIR | 033420968e76d74dbbeb0b40f0eec7984a6978f1 | 249d5372 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CUP Weapons 10:06:09 Community Base Addons v3.8.0 | @CBA_A3 | false | GAME DIR | 6304a49f3adaa42c1c4fc161d83107a2f59bc243 | 9d5b3d15 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\!Workshop\@CBA_A3 10:06:09 Arma 3 DLC Bundle 2 | dlcbundle2 | true | NOT FOUND | | | 10:06:09 Arma 3 DLC Bundle 1 | dlcbundle | true | NOT FOUND | | | 10:06:09 Arma 3 Tanks | tank | true | GAME DIR | 75d1931c6e085ad813e64fbf1fef40caca2c713d | 4bc9a8b9 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tank 10:06:09 Arma 3 Tac-Ops | tacops | true | GAME DIR | ab84282131e586c550d8a4ce69da3c161dd8f2af | 7dfaba09 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\tacops 10:06:09 Arma 3 Laws of War | orange | true | GAME DIR | 7e5911bd5879f49100e609e4ad8bf39b7ee901ea | 2400822 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\orange 10:06:09 Arma 3 Malden | argo | true | GAME DIR | b6d03c920b87ce124d8e842a54e932b62af46c11 | fc1038bd | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\argo 10:06:09 Arma 3 Jets | jets | true | GAME DIR | 173b2bbce99ca3fc110062a95a5ddea669bec203 | 4023f678 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\jets 10:06:09 Arma 3 Apex | expansion | true | GAME DIR | c53a98b9063cb497ddbe574f40324250816e9259 | 1206d2fc | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\expansion 10:06:09 Arma 3 Marksmen | mark | true | GAME DIR | 3b97feb03938b1f72e603c17d1617700e960c610 | 2142a468 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\mark 10:06:09 Arma 3 Helicopters | heli | true | GAME DIR | 9bfe0ce0d33f994f71d60692ffc43f6cd00a11c6 | e15edbbe | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\heli 10:06:09 Arma 3 Karts | kart | true | GAME DIR | 8e3f58c522827787481a2d624a5641f16e09d992 | 64c9a23c | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\kart 10:06:09 Arma 3 Zeus | curator | true | GAME DIR | 9b813dca715fbe051de68330683b6e46ecfcb7ea | 3d5746c6 | C:\Program Files (x86)\Steam\steamapps\common\Arma 3\curator 10:06:09 Arma 3 | A3 | true | NOT FOUND | | | 10:06:09 ========================================================================================================================================================================================================== 10:06:09 DX11 - Initializing DX11 engine. 10:06:09 DX11 - Using DXGI adapter 0 (detected in config). 10:06:09 DX11 - Using DXGI adapter 0. 10:06:09 - adapter description : NVIDIA GeForce GTX 1080 Ti 10:06:09 - adapter vendor ID : 4318 10:06:09 - adapter device ID : 6918 10:06:09 - adapter subsys ID : 342956506 10:06:09 - adapter revision : 161 10:06:09 - dedicated video memory : 3082813440 10:06:09 - dedicated system memory : 0 10:06:09 - shared system memory : 4258521088 10:06:09 InitSound ... 10:06:09 InitSound - complete 10:06:10 PhysX3 SDK Init started ... 10:06:10 PhysX3 SDK Init ended. 10:06:12 [0,17.571,0,"XEH: PreStart started."] 10:06:12 [0,17.877,0,"XEH: PreStart finished."] 10:06:13 [XEH]: Ryanzombieslogiceasy does not support Extended Event Handlers! Addon: @Zombies and Demons 10:06:13 [XEH]: Ryanzombieslogicspawnfast1opfor does not support Extended Event Handlers! Addon: @Zombies and Demons 10:06:13 [XEH]: VirtualMan_EPOCH does not support Extended Event Handlers! Addon: @Epoch 10:06:13 [XEH]: MBK_EPOCH_BASE does not support Extended Event Handlers! Addon: @Epoch 10:06:13 SimulWeather - Cloud Renderer - noise texture file is not specified! 10:06:14 core\skyobject\skyobject.p3d: No geometry and no visual shape 10:06:15 [CBA] (settings) INFO: Userconfig: Ignored. 10:06:15 a3\data_f\krater.p3d: No geometry and no visual shape 10:06:15 a3\data_f\koule.p3d: No geometry and no visual shape 10:06:16 Loading movesType CfgGesturesMale 10:06:16 Creating action map cache 10:06:16 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 MovesType CfgGesturesMale load time 44 ms 10:06:16 Loading movesType CfgMovesMaleSdr 10:06:16 Reading cached action map data 10:06:16 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:06:16 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:06:17 MovesType CfgMovesMaleSdr load time 967 ms 10:06:17 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape 10:06:48 Starting mission: 10:06:48 Mission file: epoch (__CUR_MP) 10:06:48 Mission world: Australia 10:06:48 Mission directory: mpmissions\__CUR_MP.Australia\ 10:06:49 a3\data_f\blesk1.p3d: No geometry and no visual shape 10:06:49 a3\data_f\blesk2.p3d: No geometry and no visual shape 10:06:49 ca\plants\clutter_flower_mix.p3d: No geometry and no visual shape 10:06:49 a3\data_f\raindrop.p3d: No geometry and no visual shape 10:06:49 a3\map_stratis\data\obloha.p3d: No geometry and no visual shape 10:06:49 a3\data_f\stars.p3d: No geometry and no visual shape 10:06:49 a3\map_stratis\data\horizont.p3d: No geometry and no visual shape 10:06:49 a3\data_f\rainbow.p3d: No geometry and no visual shape 10:06:50 ca\roads\sil10 100.p3d: No geometry and no visual shape 10:06:50 ca\roads\sil10 25.p3d: No geometry and no visual shape 10:06:50 ca\roads\sil10 75.p3d: No geometry and no visual shape 10:06:50 ca\roads\sil10 50.p3d: No geometry and no visual shape 10:06:50 ausextras\road\handicap.p3d: No geometry and no visual shape 10:06:50 ausextras\road\sidewalkcrossing.p3d: No geometry and no visual shape 10:06:50 ausextras\road\asfcrosswalknew.p3d: No geometry and no visual shape 10:06:50 ca\roads\sil10_50.p3d: No geometry and no visual shape 10:06:50 ausextras\road\sidewalkcrossinglong.p3d: No geometry and no visual shape 10:06:50 No more slot to add connection at 053184 (5315.7,18409.1) 10:06:50 No more slot to add connection at 065190 (6505.2,19073.8) 10:06:50 No more slot to add connection at 065190 (6517.7,19074.2) 10:06:50 No more slot to add connection at 100169 (10029.4,16993.2) 10:06:50 No more slot to add connection at 162336 (16292.4,33612.9) 10:06:50 No more slot to add connection at 185156 (18555.8,15613.3) 10:06:50 No more slot to add connection at 185156 (18556.9,15607.1) 10:06:50 No more slot to add connection at 185156 (18555.8,15613.3) 10:06:50 No more slot to add connection at 203131 (20345.2,13187.8) 10:06:50 No more slot to add connection at 203131 (20351.8,13190.5) 10:06:50 No more slot to add connection at 203131 (20375.1,13199.4) 10:06:50 No more slot to add connection at 203132 (20398.4,13208.4) 10:06:50 No more slot to add connection at 204132 (20421.8,13217.3) 10:06:50 No more slot to add connection at 204132 (20445.1,13226.3) 10:06:50 No more slot to add connection at 204132 (20468.4,13235.2) 10:06:50 No more slot to add connection at 204132 (20491.8,13244.2) 10:06:50 No more slot to add connection at 205132 (20515.1,13253.2) 10:06:50 No more slot to add connection at 205132 (20538.5,13262.1) 10:06:50 No more slot to add connection at 205132 (20542.4,13264.0) 10:06:50 No more slot to add connection at 205132 (20563.8,13276.9) 10:06:50 No more slot to add connection at 205132 (20585.2,13289.8) 10:06:50 No more slot to add connection at 206133 (20606.7,13302.7) 10:06:50 No more slot to add connection at 206133 (20610.2,13305.2) 10:06:50 No more slot to add connection at 206133 (20613.2,13308.4) 10:06:50 No more slot to add connection at 206133 (20615.7,13312.0) 10:06:50 No more slot to add connection at 206133 (20627.8,13333.8) 10:06:50 No more slot to add connection at 206133 (20639.9,13355.7) 10:06:50 No more slot to add connection at 206133 (20652.0,13377.6) 10:06:50 No more slot to add connection at 206133 (20664.1,13399.4) 10:06:50 No more slot to add connection at 206134 (20666.6,13403.0) 10:06:50 No more slot to add connection at 206134 (20669.6,13406.2) 10:06:50 No more slot to add connection at 206134 (20673.1,13408.7) 10:06:50 No more slot to add connection at 206134 (20694.6,13421.6) 10:06:50 No more slot to add connection at 207134 (20716.0,13434.5) 10:06:50 No more slot to add connection at 207134 (20737.4,13447.4) 10:06:50 No more slot to add connection at 207134 (20740.9,13449.9) 10:06:50 No more slot to add connection at 207134 (20744.0,13453.1) 10:06:50 No more slot to add connection at 207134 (20746.4,13456.7) 10:06:50 No more slot to add connection at 207134 (20758.5,13478.5) 10:06:50 No more slot to add connection at 207135 (20770.6,13500.4) 10:06:50 No more slot to add connection at 207135 (20782.8,13522.3) 10:06:50 No more slot to add connection at 207135 (20794.9,13544.1) 10:06:50 No more slot to add connection at 208135 (20807.0,13566.0) 10:06:50 No more slot to add connection at 208135 (20819.1,13587.9) 10:06:50 No more slot to add connection at 208136 (20831.2,13609.7) 10:06:50 No more slot to add connection at 208136 (20843.4,13631.6) 10:06:50 No more slot to add connection at 208136 (20845.8,13635.2) 10:06:50 No more slot to add connection at 208136 (20848.8,13638.4) 10:06:50 No more slot to add connection at 208136 (20852.4,13640.9) 10:06:50 No more slot to add connection at 208136 (20856.3,13642.8) 10:06:50 No more slot to add connection at 208136 (20879.6,13651.8) 10:06:50 No more slot to add connection at 209136 (20903.0,13660.7) 10:06:50 No more slot to add connection at 209136 (20926.3,13669.7) 10:06:50 No more slot to add connection at 209136 (20930.2,13671.6) 10:06:50 No more slot to add connection at 209136 (20933.7,13674.2) 10:06:50 No more slot to add connection at 209136 (20936.8,13677.3) 10:06:50 No more slot to add connection at 209136 (20939.2,13680.9) 10:06:50 No more slot to add connection at 209137 (20951.3,13702.8) 10:06:50 No more slot to add connection at 209137 (20963.4,13724.7) 10:06:50 No more slot to add connection at 209137 (20975.6,13746.5) 10:06:50 No more slot to add connection at 209137 (20987.7,13768.4) 10:06:50 No more slot to add connection at 209137 (20999.8,13790.2) 10:06:50 No more slot to add connection at 210138 (21011.9,13812.1) 10:06:50 No more slot to add connection at 210138 (21024.0,13834.0) 10:06:50 No more slot to add connection at 210138 (21030.1,13844.9) 10:06:50 No more slot to add connection at 244169 (24479.9,16940.4) 10:06:50 No more slot to add connection at 244169 (24496.0,16959.6) 10:06:50 No more slot to add connection at 245169 (24512.0,16978.7) 10:06:50 No more slot to add connection at 245169 (24528.1,16997.9) 10:06:50 No more slot to add connection at 245170 (24531.2,17001.0) 10:06:50 No more slot to add connection at 245170 (24534.8,17003.5) 10:06:50 No more slot to add connection at 245170 (24556.4,17016.0) 10:06:50 No more slot to add connection at 245170 (24578.1,17028.5) 10:06:50 No more slot to add connection at 245170 (24585.2,17033.5) 10:06:50 No more slot to add connection at 246170 (24604.3,17049.5) 10:06:50 No more slot to add connection at 246170 (24623.5,17065.6) 10:06:50 No more slot to add connection at 246170 (24642.6,17081.7) 10:06:50 No more slot to add connection at 246170 (24661.8,17097.7) 10:06:50 No more slot to add connection at 246171 (24665.4,17100.2) 10:06:50 No more slot to add connection at 246171 (24687.0,17112.7) 10:06:50 No more slot to add connection at 247171 (24708.7,17125.2) 10:06:50 No more slot to add connection at 247171 (24730.3,17137.7) 10:06:50 No more slot to add connection at 247171 (24752.0,17150.2) 10:06:50 No more slot to add connection at 247171 (24759.1,17155.2) 10:06:50 No more slot to add connection at 247171 (24765.3,17161.4) 10:06:50 No more slot to add connection at 247171 (24781.3,17180.6) 10:06:50 No more slot to add connection at 247171 (24797.4,17199.7) 10:06:50 No more slot to add connection at 248172 (24803.6,17205.9) 10:06:50 No more slot to add connection at 248172 (24822.7,17221.9) 10:06:50 No more slot to add connection at 248172 (24841.9,17238.0) 10:06:50 No more slot to add connection at 248172 (24861.0,17254.1) 10:06:50 No more slot to add connection at 248172 (24880.2,17270.1) 10:06:50 No more slot to add connection at 248172 (24899.3,17286.2) 10:06:50 No more slot to add connection at 249173 (24918.5,17302.3) 10:06:50 No more slot to add connection at 249173 (24937.6,17318.4) 10:06:50 No more slot to add connection at 249173 (24956.8,17334.4) 10:06:50 No more slot to add connection at 249173 (24975.9,17350.5) 10:06:50 No more slot to add connection at 249173 (24995.1,17366.6) 10:06:50 No more slot to add connection at 250173 (25014.2,17382.6) 10:06:50 No more slot to add connection at 250173 (25033.4,17398.7) 10:06:50 No more slot to add connection at 250174 (25052.5,17414.8) 10:06:50 No more slot to add connection at 250174 (25071.7,17430.8) 10:06:50 No more slot to add connection at 250174 (25090.8,17446.9) 10:06:50 No more slot to add connection at 251174 (25100.1,17456.2) 10:06:50 No more slot to add connection at 251174 (25107.6,17466.9) 10:06:50 No more slot to add connection at 251174 (25113.1,17478.7) 10:06:50 No more slot to add connection at 251175 (25121.7,17502.2) 10:06:50 No more slot to add connection at 251175 (25130.2,17525.7) 10:06:50 No more slot to add connection at 251175 (25138.8,17549.2) 10:06:50 No more slot to add connection at 251175 (25142.4,17557.1) 10:06:50 No more slot to add connection at 251175 (25147.4,17564.2) 10:06:50 No more slot to add connection at 251175 (25153.6,17570.4) 10:06:50 No more slot to add connection at 251175 (25172.8,17586.5) 10:06:50 No more slot to add connection at 251176 (25191.9,17602.5) 10:06:50 No more slot to add connection at 252176 (25211.1,17618.6) 10:06:50 No more slot to add connection at 252176 (25230.2,17634.7) 10:06:50 No more slot to add connection at 252176 (25249.4,17650.7) 10:06:50 No more slot to add connection at 252176 (25256.5,17655.7) 10:06:50 No more slot to add connection at 252176 (25264.4,17659.4) 10:06:50 No more slot to add connection at 252176 (25287.9,17668.0) 10:06:50 No more slot to add connection at 253126 (25323.8,12635.2) 10:06:50 No more slot to add connection at 253126 (25323.8,12641.4) 10:06:50 No more slot to add connection at 253126 (25323.8,12635.2) 10:06:50 No more slot to add connection at 253126 (25323.8,12641.4) 10:06:50 No more slot to add connection at 253176 (25311.4,17676.5) 10:06:50 No more slot to add connection at 253176 (25334.9,17685.1) 10:06:50 No more slot to add connection at 253176 (25358.4,17693.6) 10:06:50 No more slot to add connection at 253176 (25366.8,17695.9) 10:06:50 No more slot to add connection at 253177 (25391.4,17700.2) 10:06:50 No more slot to add connection at 254177 (25416.0,17704.6) 10:06:50 No more slot to add connection at 254177 (25440.6,17708.9) 10:06:50 No more slot to add connection at 254177 (25465.3,17713.2) 10:06:50 No more slot to add connection at 254177 (25489.9,17717.6) 10:06:50 No more slot to add connection at 255122 (25532.2,12293.6) 10:06:50 No more slot to add connection at 255177 (25514.5,17721.9) 10:06:50 No more slot to add connection at 255177 (25539.1,17726.3) 10:06:50 No more slot to add connection at 255177 (25563.7,17730.6) 10:06:50 No more slot to add connection at 255177 (25588.4,17734.9) 10:06:50 No more slot to add connection at 256177 (25613.0,17739.3) 10:06:50 No more slot to add connection at 256177 (25637.6,17743.6) 10:06:50 No more slot to add connection at 256177 (25662.2,17748.0) 10:06:50 No more slot to add connection at 256177 (25686.8,17752.3) 10:06:50 No more slot to add connection at 257177 (25711.5,17756.7) 10:06:50 No more slot to add connection at 257177 (25724.1,17760.0) 10:06:50 No more slot to add connection at 257177 (25747.6,17768.6) 10:06:50 No more slot to add connection at 257177 (25756.0,17770.8) 10:06:50 No more slot to add connection at 257177 (25780.6,17775.2) 10:06:50 No more slot to add connection at 258177 (25805.2,17779.5) 10:06:50 No more slot to add connection at 258177 (25813.9,17780.3) 10:06:50 No more slot to add connection at 258177 (25838.9,17780.3) 10:06:50 No more slot to add connection at 258177 (25863.9,17780.3) 10:06:50 No more slot to add connection at 258177 (25888.9,17780.3) 10:06:50 No more slot to add connection at 259177 (25913.9,17780.3) 10:06:50 No more slot to add connection at 259177 (25938.9,17780.3) 10:06:50 No more slot to add connection at 259177 (25963.9,17780.3) 10:06:50 No more slot to add connection at 259177 (25988.9,17780.3) 10:06:50 No more slot to add connection at 260177 (26013.9,17780.3) 10:06:50 No more slot to add connection at 260177 (26038.9,17780.3) 10:06:50 No more slot to add connection at 260177 (26063.9,17780.3) 10:06:50 No more slot to add connection at 260177 (26088.9,17780.3) 10:06:50 No more slot to add connection at 261177 (26113.9,17780.3) 10:06:50 No more slot to add connection at 261177 (26138.9,17780.3) 10:06:50 No more slot to add connection at 261177 (26163.9,17780.3) 10:06:50 No more slot to add connection at 261177 (26188.9,17780.3) 10:06:50 No more slot to add connection at 262177 (26213.9,17780.3) 10:06:50 No more slot to add connection at 262177 (26238.9,17780.3) 10:06:50 No more slot to add connection at 262177 (26263.9,17780.3) 10:06:50 No more slot to add connection at 262177 (26288.9,17780.3) 10:06:50 No more slot to add connection at 263177 (26313.9,17780.3) 10:06:50 No more slot to add connection at 263177 (26338.9,17780.3) 10:06:50 No more slot to add connection at 263177 (26363.9,17780.3) 10:06:50 No more slot to add connection at 263177 (26388.9,17780.3) 10:06:50 No more slot to add connection at 264177 (26413.9,17780.3) 10:06:50 No more slot to add connection at 264177 (26438.9,17780.3) 10:06:50 No more slot to add connection at 264177 (26463.9,17780.3) 10:06:50 No more slot to add connection at 264177 (26488.9,17780.3) 10:06:50 No more slot to add connection at 265177 (26513.9,17780.3) 10:06:50 No more slot to add connection at 265177 (26538.9,17780.3) 10:06:50 No more slot to add connection at 265177 (26563.9,17780.3) 10:06:50 No more slot to add connection at 265177 (26588.9,17780.3) 10:06:50 No more slot to add connection at 266177 (26613.9,17780.3) 10:06:50 No more slot to add connection at 266177 (26638.9,17780.3) 10:06:50 No more slot to add connection at 266177 (26663.9,17780.3) 10:06:50 No more slot to add connection at 266177 (26688.9,17780.3) 10:06:50 No more slot to add connection at 266177 (26693.3,17779.9) 10:06:50 No more slot to add connection at 267177 (26717.9,17775.6) 10:06:50 No more slot to add connection at 267177 (26742.5,17771.2) 10:06:50 No more slot to add connection at 267177 (26767.1,17766.9) 10:06:50 No more slot to add connection at 267177 (26791.8,17762.5) 10:06:50 No more slot to add connection at 268177 (26816.4,17758.2) 10:06:50 No more slot to add connection at 268177 (26841.0,17753.9) 10:06:50 No more slot to add connection at 268177 (26865.6,17749.5) 10:06:50 No more slot to add connection at 268177 (26890.2,17745.2) 10:06:50 No more slot to add connection at 268177 (26894.4,17744.1) 10:06:50 No more slot to add connection at 268177 (26898.4,17742.2) 10:06:50 No more slot to add connection at 269177 (26920.0,17729.7) 10:06:50 No more slot to add connection at 269177 (26941.7,17717.2) 10:06:50 No more slot to add connection at 269177 (26961.6,17700.5) 10:06:50 No more slot to add connection at 269176 (26977.7,17681.3) 10:06:50 No more slot to add connection at 269176 (26993.8,17662.2) 10:06:50 No more slot to add connection at 270176 (27009.9,17643.0) 10:06:50 No more slot to add connection at 270176 (27042.0,17604.7) 10:06:50 No more slot to add connection at 270175 (27058.1,17585.6) 10:06:50 No more slot to add connection at 270175 (27074.1,17566.4) 10:06:50 No more slot to add connection at 271175 (27106.3,17528.1) 10:06:50 No more slot to add connection at 270175 (27090.2,17547.3) 10:06:50 No more slot to add connection at 271175 (27122.3,17509.0) 10:06:50 No more slot to add connection at 271174 (27138.4,17489.8) 10:06:50 No more slot to add connection at 271174 (27154.5,17470.7) 10:06:50 No more slot to add connection at 271174 (27186.6,17432.4) 10:06:50 No more slot to add connection at 271174 (27170.6,17451.5) 10:06:50 No more slot to add connection at 271174 (27195.9,17423.1) 10:06:50 No more slot to add connection at 272174 (27215.0,17407.0) 10:06:50 No more slot to add connection at 272174 (27205.4,17415.1) 10:06:50 No more slot to add connection at 272173 (27234.2,17391.0) 10:06:50 No more slot to add connection at 272173 (27272.5,17358.8) 10:06:50 No more slot to add connection at 272173 (27253.3,17374.9) 10:06:50 No more slot to add connection at 272173 (27281.7,17349.6) 10:06:50 No more slot to add connection at 272173 (27297.8,17330.4) 10:06:50 No more slot to add connection at 273173 (27313.9,17311.3) 10:06:50 No more slot to add connection at 273172 (27346.0,17273.0) 10:06:50 No more slot to add connection at 273172 (27329.9,17292.1) 10:06:50 No more slot to add connection at 273172 (27362.1,17253.8) 10:06:50 No more slot to add connection at 273172 (27378.1,17234.7) 10:06:50 No more slot to add connection at 273172 (27394.2,17215.5) 10:06:50 No more slot to add connection at 274171 (27410.3,17196.4) 10:06:50 No more slot to add connection at 274171 (27442.4,17158.1) 10:06:50 No more slot to add connection at 274171 (27458.5,17138.9) 10:06:50 No more slot to add connection at 274171 (27474.6,17119.8) 10:06:50 No more slot to add connection at 274171 (27458.5,17138.9) 10:06:50 No more slot to add connection at 277171 (27752.8,17148.0) 10:06:50 No more slot to add connection at 305098 (30559.8,9878.5) 10:06:50 No more slot to add connection at 305098 (30559.6,9891.0) 10:06:50 No more slot to add connection at 314167 (31482.9,16787.0) 10:06:50 No more slot to add connection at 318163 (31833.6,16361.7) 10:06:50 No more slot to add connection at 321298 (32147.9,29881.9) 10:06:50 No more slot to add connection at 321298 (32172.5,29886.2) 10:06:50 No more slot to add connection at 321298 (32147.9,29881.9) 10:06:50 No more slot to add connection at 321298 (32172.5,29886.2) 10:06:50 No more slot to add connection at 321298 (32147.9,29881.9) 10:06:50 No more slot to add connection at 321298 (32172.5,29886.2) 10:06:50 No more slot to add connection at 337132 (33747.3,13252.5) 10:06:50 No more slot to add connection at 337132 (33747.3,13252.5) 10:06:50 No more slot to add connection at 337132 (33759.6,13230.9) 10:06:50 No more slot to add connection at 337132 (33734.8,13274.4) 10:06:50 No more slot to add connection at 337132 (33772.0,13209.1) 10:06:50 No more slot to add connection at 337132 (33759.7,13230.8) 10:06:50 No more slot to add connection at 366121 (36617.6,12166.9) 10:06:50 No more slot to add connection at 379199 (37994.2,19942.2) 10:06:50 No more slot to add connection at 380199 (38000.4,19942.2) 10:06:50 No more slot to add connection at 381200 (38166.8,20017.6) 10:06:50 No more slot to add connection at 381200 (38173.0,20017.6) 10:06:50 No more slot to add connection at 383194 (38371.4,19411.3) 10:06:50 No more slot to add connection at 383194 (38371.4,19414.4) 10:06:50 No more slot to add connection at 383194 (38384.3,19411.3) 10:06:50 No more slot to add connection at 383194 (38384.3,19414.4) 10:06:50 No more slot to add connection at 383194 (38371.4,19414.2) 10:06:50 No more slot to add connection at 383194 (38390.7,19411.3) 10:06:50 No more slot to add connection at 383194 (38390.7,19414.4) 10:06:50 No more slot to add connection at 383194 (38377.8,19411.3) 10:06:50 No more slot to add connection at 383194 (38377.8,19414.4) 10:06:50 No more slot to add connection at 383194 (38390.7,19414.2) 10:06:50 No more slot to add connection at 383194 (38390.7,19417.3) 10:06:50 No more slot to add connection at 383194 (38371.4,19414.2) 10:06:50 No more slot to add connection at 383194 (38371.4,19417.3) 10:06:50 No more slot to add connection at 383194 (38377.8,19414.4) 10:06:50 No more slot to add connection at 383194 (38390.7,19414.2) 10:06:50 No more slot to add connection at 383194 (38390.7,19417.3) 10:06:50 No more slot to add connection at 383194 (38384.3,19414.2) 10:06:50 No more slot to add connection at 383194 (38384.3,19417.3) 10:06:50 No more slot to add connection at 383194 (38377.8,19417.3) 10:06:50 No more slot to add connection at 383194 (38384.3,19417.3) 10:06:50 No more slot to add connection at 383194 (38377.8,19414.2) 10:06:50 No more slot to add connection at 383194 (38377.8,19417.3) 10:06:50 No more slot to add connection at 383194 (38384.3,19414.4) 10:06:50 No more slot to add connection at 383200 (38372.3,20023.7) 10:06:50 No more slot to add connection at 383200 (38378.5,20023.7) 10:06:50 No more slot to add connection at 387190 (38710.1,19069.5) 10:06:50 No more slot to add connection at 387190 (38703.9,19069.5) 10:06:50 No more slot to add connection at 387190 (38710.1,19069.5) 10:06:50 No more slot to add connection at 387190 (38710.1,19069.5) 10:06:50 No more slot to add connection at 387190 (38735.1,19069.5) 10:06:50 No more slot to add connection at 387190 (38735.1,19069.5) 10:06:50 No more slot to add connection at 387190 (38735.1,19069.5) 10:06:50 No more slot to add connection at 387190 (38760.1,19069.5) 10:06:50 No more slot to add connection at 387190 (38778.8,19020.9) 10:06:50 No more slot to add connection at 387190 (38778.8,19020.9) 10:06:50 No more slot to add connection at 387190 (38791.3,19021.0) 10:06:50 No more slot to add connection at 387190 (38791.3,19021.0) 10:06:50 No more slot to add connection at 387190 (38791.3,19021.0) 10:06:50 No more slot to add connection at 388190 (38816.3,19021.1) 10:06:50 No more slot to add connection at 388190 (38816.1,19021.0) 10:06:50 No more slot to add connection at 388190 (38816.1,19021.0) 10:06:50 No more slot to add connection at 388192 (38873.1,19263.0) 10:06:50 No more slot to add connection at 388192 (38849.6,19254.6) 10:06:50 No more slot to add connection at 388192 (38873.2,19263.0) 10:06:50 No more slot to add connection at 388192 (38873.2,19263.0) 10:06:50 No more slot to add connection at 388192 (38896.7,19271.4) 10:06:50 No more slot to add connection at 388192 (38896.7,19271.4) 10:06:50 No more slot to add connection at 388192 (38896.7,19271.4) 10:06:50 No more slot to add connection at 389192 (38920.2,19279.9) 10:06:50 No more slot to add connection at 389192 (38920.2,19279.9) 10:06:50 No more slot to add connection at 389192 (38943.8,19288.3) 10:06:50 No more slot to add connection at 389192 (38920.2,19279.9) 10:06:50 No more slot to add connection at 389192 (38967.3,19296.7) 10:06:50 No more slot to add connection at 389192 (38943.8,19288.3) 10:06:50 No more slot to add connection at 389192 (38967.3,19296.7) 10:06:50 No more slot to add connection at 389192 (38943.8,19288.3) 10:06:50 No more slot to add connection at 389192 (38967.0,19296.7) 10:06:50 No more slot to add connection at 389192 (38967.0,19296.7) 10:06:50 No more slot to add connection at 389192 (38972.9,19298.8) 10:06:50 ausextras\signs\buildingsigns\e.p3d: No geometry and no visual shape 10:06:50 ausextras\signs\buildingsigns\o.p3d: No geometry and no visual shape 10:06:50 ausextras\signs\buildingsigns\s.p3d: No geometry and no visual shape 10:06:50 No skeleton given for ca\roads\kamenny_most30.p3d destruction 10:06:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:50 ausextras\road\arrow_sa.p3d: No geometry and no visual shape 10:06:50 Land_runway_edgelight_blue_F: light_1_blinking - unknown animation source light_1_source 10:06:50 ausextras\signs\igasignsmall.p3d: No geometry and no visual shape 10:06:51 ausextras\doors\window_b.p3d: No geometry and no visual shape 10:06:51 ausextras\signs\buildingsigns\24hours.p3d: No geometry and no visual shape 10:06:51 ausobjects\buildings\fuelstationnb.p3d: No geometry and no visual shape 10:06:51 ausobjects\signs\shopgo.p3d: No geometry and no visual shape 10:06:51 mm_buildings3\pub_c\proxy\bar.p3d: No geometry and no visual shape 10:06:51 mm_buildings3\pub_c\proxy\misc1.p3d: No geometry and no visual shape 10:06:51 mm_buildings3\pub_c\proxy\misc2.p3d: No geometry and no visual shape 10:06:51 mm_buildings3\pub_c\proxy\bed.p3d: No geometry and no visual shape 10:06:51 mm_buildings3\pub_c\proxy\wardrobe.p3d: No geometry and no visual shape 10:06:51 mm_buildings3\light\light.p3d: No geometry and no visual shape 10:06:51 mm_buildings3\pub_c\proxy\shackle.p3d: No geometry and no visual shape 10:06:51 mm_bank\words.p3d: No geometry and no visual shape 10:06:51 mm_bank\vaultroom.p3d: No geometry and no visual shape 10:06:51 mm_bank\wordsrev2.p3d: No geometry and no visual shape 10:06:51 mm_bank\miscrisk.p3d: No geometry and no visual shape 10:06:51 mm_bank\miscrisk.p3d: house, config class missing 10:06:51 ca\misc\pallets_column.p3d: No geometry and no visual shape 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 String STR_DN_OUT_O_SLIDING_DOOR not found 10:06:51 String STR_DN_OUT_C_SLIDING_DOOR not found 10:06:51 String STR_DN_OUT_O_SLIDING_DOOR not found 10:06:51 String STR_DN_OUT_C_SLIDING_DOOR not found 10:06:51 String STR_DN_OUT_O_SLIDING_DOOR not found 10:06:51 String STR_DN_OUT_C_SLIDING_DOOR not found 10:06:51 String STR_DN_OUT_O_SLIDING_DOOR not found 10:06:51 String STR_DN_OUT_C_SLIDING_DOOR not found 10:06:51 Strange convex component149 in mm_residential2\housedoubleal2.p3d:geometryFire 10:06:51 Strange convex component109 in mm_residential2\housedoubleal2.p3d:geometryView 10:06:51 Strange convex component145 in mm_residential2\housedoubleal2.p3d:geometryView 10:06:51 Strange convex component149 in mm_residential2\housedoubleal2.p3d:geometryView 10:06:51 Strange convex component183 in mm_residential2\housedoubleal2.p3d:geometryView 10:06:51 Strange convex component184 in mm_residential2\housedoubleal2.p3d:geometryView 10:06:51 Strange convex component188 in mm_residential2\housedoubleal2.p3d:geometryView 10:06:51 ca\buildings\dum_istan4_chodnik.p3d: No geometry and no visual shape 10:06:51 ausextras\signs\buildingsigns\melbourne.p3d: No geometry and no visual shape 10:06:51 a3\structures_f\dominants\hospital\hospital_f.p3d: house, config class missing 10:06:51 ausobjects\signs\blockiewashere.p3d: No geometry and no visual shape 10:06:51 No skeleton given for ca\roads\most_bez_lamp.p3d destruction 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 ausextras\signs\buildingsigns\takeaway.p3d: No geometry and no visual shape 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Strange convex component07 in ausobjects\shell\bpexpress.p3d:geometry 10:06:51 Strange convex component10 in ausobjects\shell\bpexpress.p3d:geometry 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:52 No skeleton given for ca\structures\a_cranecon\a_cranecon.p3d destruction 10:06:52 mm_buildings\prison\gaol_gate.p3d: No geometry and no visual shape 10:06:52 mm_buildings\prison\prison_misc.p3d: No geometry and no visual shape 10:06:52 Error: selection Ladder_1_end missing in memory LOD of model mm_buildings\prison\gateb\gateb.p3d 10:06:52 Error: selection Ladder_2_end missing in memory LOD of model mm_buildings\prison\gateb\gateb.p3d 10:06:52 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:52 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:52 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:52 Error: selection Ladder_1_end missing in memory LOD of model mm_buildings\prison\gatea\gatedoora.p3d 10:06:52 Error: selection Ladder_2_end missing in memory LOD of model mm_buildings\prison\gatea\gatedoora.p3d 10:06:52 mm_buildings\prison\prison_misc.p3d: house, config class missing 10:06:52 Strange convex component115 in mm_buildings\prison\gaol_main.p3d:geometry 10:06:52 Error: selection Ladder_1_end missing in memory LOD of model mm_buildings\prison\gaol_main.p3d 10:06:52 Error: selection Ladder_2_end missing in memory LOD of model mm_buildings\prison\gaol_main.p3d 10:06:52 mm_buildings\prison\proxynew\rooftop2.p3d: vehicle, config class missing 10:06:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:52 ausobjects\floor\recarpet10x10.p3d: No geometry and no visual shape 10:06:52 Fresnel n must be >0, given n=0,k=10 10:06:52 ausextras\signs\buildingsigns\perthairport.p3d: No geometry and no visual shape 10:06:52 ausobjects\floor\recarpet20x20.p3d: No geometry and no visual shape 10:06:52 ca\structures\house\a_office02\data\proxy\window_a.p3d: No geometry and no visual shape 10:06:52 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:52 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:52 ausextras\objects\samsungtv.p3d: No geometry and no visual shape 10:06:52 ausextras\signs\buildingsigns\police.p3d: No geometry and no visual shape 10:06:52 ausextras\billboards\spud.p3d: No geometry and no visual shape 10:06:52 No skeleton given for ca\roads\kamenny_most30v2.p3d destruction 10:06:52 mm_residential2\proxy\roofroof.p3d: house, config class missing 10:06:52 mm_residential2\proxy\roofroof.p3d: house, config class missing 10:06:52 Strange convex component04 in ausobjects\buildings\2story.p3d:geometry 10:06:52 Strange convex component05 in ausobjects\buildings\2story.p3d:geometry 10:06:52 Strange convex component25 in ausobjects\buildings\2story.p3d:geometryFire 10:06:52 Strange convex component59 in ausobjects\buildings\2story.p3d:geometryFire 10:06:52 Strange convex component54 in ausobjects\buildings\2story.p3d:geometryView 10:06:52 Strange convex component59 in ausobjects\buildings\2story.p3d:geometryView 10:06:52 ausobjects\subway\subwaysign.p3d: No geometry and no visual shape 10:06:52 ausextras\signs\buildingsigns\fishneon.p3d: No geometry and no visual shape 10:06:52 ausextras\signs\fishandchips.p3d: No geometry and no visual shape 10:06:52 ausscrappers\graffiti\grap5.p3d: No geometry and no visual shape 10:06:52 ausextras\signs\buildingsigns\ray.p3d: No geometry and no visual shape 10:06:52 ausobjects\glowingsigns\seldomstart.p3d: No geometry and no visual shape 10:06:52 ausextras\signs\buildingsigns\chemist.p3d: No geometry and no visual shape 10:06:52 ausobjects\glowingsigns\adealidesupreme.p3d: No geometry and no visual shape 10:06:52 ca\structures\house\a_office02\data\proxy\window_b.p3d: No geometry and no visual shape 10:06:52 ausextras\signs\buildingsigns\adelaideairport.p3d: No geometry and no visual shape 10:06:53 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 10:06:53 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 10:06:53 Strange convex component03 in ausobjects\buildings\3story.p3d:geometry 10:06:53 Strange convex component06 in mm_civilengineering\crane\cranemid.p3d:geometry 10:06:53 Strange convex component09 in mm_civilengineering\crane\cranemid.p3d:geometry 10:06:53 Strange convex component10 in mm_civilengineering\crane\cranemid.p3d:geometry 10:06:53 Strange convex component11 in mm_civilengineering\crane\cranemid.p3d:geometry 10:06:53 Strange convex component38 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component39 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component40 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component41 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component66 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component67 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component123 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component151 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component152 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component153 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component154 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:06:53 Strange convex component37 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:06:53 Strange convex component38 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:06:53 Strange convex component39 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:06:53 Strange convex component40 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:06:53 Strange convex component65 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:06:53 Strange convex component114 in ausbuildings\tavern\tavern.p3d:geometry 10:06:53 Strange convex component114 in ausbuildings\tavern\tavern.p3d:geometryView 10:06:53 ausbuildings\objects\fccb.p3d: No geometry and no visual shape 10:06:53 ausextras\signs\buildingsigns\hyatt.p3d: No geometry and no visual shape 10:06:53 ausextras\signs\buildingsigns\dansdonutssmall.p3d: No geometry and no visual shape 10:06:53 ausextras\objects\penthouse.p3d: No geometry and no visual shape 10:06:53 ausobjects\glowingsigns\melcourt.p3d: No geometry and no visual shape 10:06:53 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:06:53 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:06:53 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:06:53 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:06:53 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:06:53 ausextras\signs\buildingsigns\sydairport.p3d: No geometry and no visual shape 10:06:53 mm_residential\residential_a\house_l\houseb1_l.p3d: house, config class missing 10:06:53 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:53 ausextras\signs\buildingsigns\sydhos.p3d: No geometry and no visual shape 10:06:53 No skeleton given for shb\shb_ramp.p3d destruction 10:06:53 ausobjects\glowingsigns\coffeeshop.p3d: No geometry and no visual shape 10:06:53 ausobjects\glowingsigns\operhousecafe.p3d: No geometry and no visual shape 10:06:53 No skeleton given for shb\shb_pylon.p3d destruction 10:06:53 No skeleton given for shb\shb_truss_1a.p3d destruction 10:06:53 No skeleton given for shb\shb_truss_2a.p3d destruction 10:06:53 No skeleton given for shb\shb_truss_3a.p3d destruction 10:06:53 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:53 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:53 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:53 Strange convex component10 in a3\vegetation_f_exp\tree\t_cocos_small_f.p3d:geometryView 10:06:53 ausbuildings\houses\proxys\ausgreyhouseproxy.p3d: No geometry and no visual shape 10:06:53 ca\plants\palmtest.p3d: No geometry and no visual shape 10:06:53 ausbuildings\houses\proxys\ausgreyhouseproxy.p3d: house, config class missing 10:06:53 austrees\fern.p3d: No geometry and no visual shape 10:06:53 austrees\bushes1\04\bigpalm.p3d: No geometry and no visual shape 10:06:53 austrees\bushes\01\redbush.p3d: No geometry and no visual shape 10:06:53 ausbuildings\tavern\paving.p3d: No geometry and no visual shape 10:06:53 austrees\bushes\05\fern3.p3d: No geometry and no visual shape 10:06:53 austrees\fern1.p3d: No geometry and no visual shape 10:06:53 ausbuildings\houses\data\proxy\squarehousekitchen.p3d: No geometry and no visual shape 10:06:53 ausbuildings\houses\data\proxy\tv.p3d: No geometry and no visual shape 10:06:53 ausbuildings\houses\data\proxy\toilets.p3d: No geometry and no visual shape 10:06:53 ausbuildings\houses\data\proxy\squarehousekitchen.p3d: house, config class missing 10:06:53 ausbuildings\houses\data\proxy\tv.p3d: house, config class missing 10:06:53 ausbuildings\houses\data\proxy\toilets.p3d: house, config class missing 10:06:53 ausbuildings\houses\data\proxy\poolwater.p3d: house, config class missing 10:06:53 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire 10:06:54 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:54 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:54 ausscrappers\graffiti\grap10.p3d: No geometry and no visual shape 10:06:54 Strange convex component26 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_wide_f.p3d:geometryView 10:06:54 Strange convex component68 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_wide_f.p3d:geometryView 10:06:54 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:06:54 ausscrappers\graffiti\grap9.p3d: No geometry and no visual shape 10:06:54 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:06:54 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:06:54 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:06:54 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:06:54 ausextras\signs\buildingsigns\wallabymotors.p3d: No geometry and no visual shape 10:06:54 ausextras\signs\buildingsigns\wb.p3d: No geometry and no visual shape 10:06:54 a3\structures_f\dominants\hospital\hospital_f.p3d: house, config class missing 10:06:54 ausextras\doors\window_a_broken.p3d: No geometry and no visual shape 10:06:54 ca\structures\house\a_office02\data\proxy\window_a_broken.p3d: No geometry and no visual shape 10:06:54 mm_residential\residential_a\house_l\houseb1_l.p3d: house, config class missing 10:06:54 ausextras\signs\buildingsigns\brishos.p3d: No geometry and no visual shape 10:06:54 Strange convex component70 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:06:54 Strange convex component75 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:06:54 Strange convex component76 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:06:54 Strange convex component77 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:06:54 Strange convex component78 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:06:54 ausscrappers\graffiti\grap6.p3d: No geometry and no visual shape 10:06:54 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:06:54 ausextras\signs\buildingsigns\alicehos.p3d: No geometry and no visual shape 10:06:54 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape 10:06:54 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:54 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:06:55 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 10:06:55 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 10:06:55 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 10:06:55 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 10:06:55 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 10:06:55 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 10:06:55 mm_civilengineering\bridge25\sling.p3d: No geometry and no visual shape 10:06:55 ausextras\signs\buildingsigns\brisairport.p3d: No geometry and no visual shape 10:06:55 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire 10:06:55 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire 10:06:55 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:55 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:55 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:55 ca\plants\clutter_flower_mix.p3d: No geometry and no visual shape 10:06:55 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:55 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:06:55 ausobjects\glowingsigns\cfa.p3d: No geometry and no visual shape 10:06:56 "CfgEpochCoreClientFunctions" 10:06:56 [17458,61.403,0,"XEH: PreInit started. v3.8.0.180801"] 10:06:56 [17458,61.729,0,"XEH: PreInit finished."] 10:06:56 "Epoch: Advanced Vehicle Repair Enabled" 10:06:56 "Loading Functions: CfgClientFunctions" 10:06:56 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 10:06:57 a3\structures_f\mil\flags\flag_asym_f.p3d: No geometry and no visual shape 10:06:57 Fresnel k must be >0, given n=0.8,k=0 10:06:57 B_Heli_Light_01_armed_F: hideweapons - unknown animation source hideweapons 10:06:57 B_Heli_Light_01_armed_F: hiderockets - unknown animation source hideweapons 10:06:57 a3\air_f\data\plane_flag_medium_f.p3d: No geometry and no visual shape 10:06:57 Ref to nonnetwork object 17ccea09600# 2299359: metalbarrel_empty_f.p3d REMOTE 10:06:57 Ref to nonnetwork object 17cce889600# 2299631: metalbarrel_empty_f.p3d REMOTE 10:06:57 Fresnel k must be >0, given n=1.2,k=0 10:06:57 Ref to nonnetwork object 17cce59c100# 2300059: campfire_f.p3d REMOTE 10:06:57 SW keep height animation used for a3\structures_f_epb\civ\accessories\woodpile_large_f.p3d 10:06:57 Ref to nonnetwork object 17cce4e8b80# 2300076: metalbarrel_empty_f.p3d REMOTE 10:06:57 Ref to nonnetwork object 17cce4b5600# 2300081: campfire_f.p3d REMOTE 10:06:57 Warning Message: Cannot open object ca\misc3\wf\wf_hesco_10x.p3d 10:06:57 ca\misc3\wf\wf_hesco_10x.p3d: No geometry and no visual shape 10:06:57 Warning Message: Cannot open object ca\misc3\wf\wf_vehicle_service_point_east.p3d 10:06:57 ca\misc3\wf\wf_vehicle_service_point_east.p3d: No geometry and no visual shape 10:06:57 Warning Message: Cannot open object ca\misc3\campfire.p3d 10:06:57 ca\misc3\campfire.p3d: No geometry and no visual shape 10:06:57 Ref to nonnetwork object 17cce418b80# 2300121: campfire.p3d REMOTE 10:06:57 Warning Message: Cannot open object ca\wheeled\hmmwv_wrecked.p3d 10:06:57 ca\wheeled\hmmwv_wrecked.p3d: No geometry and no visual shape 10:06:57 a3\data_f\proxies\flags\flag_alone.p3d: No geometry and no visual shape 10:06:57 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:06:57 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape 10:06:57 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_EPOCH' 10:06:57 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_EPOCH' 10:06:57 a3\air_f\data\plane_flag_big_f.p3d: No geometry and no visual shape 10:06:57 a3\air_f_heli\heli_transport_04\proxy_heli_transport_04_f.p3d: No geometry and no visual shape 10:06:57 CUP_Zodiac: Invalid parent bone 'steering_wheel' for 'propeller' 10:06:57 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:06:57 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:06:57 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:06:57 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:06:57 a3\air_f\data\plane_flag_medium_inv_f.p3d: No geometry and no visual shape 10:06:57 Error: Wheel reference not initialized 10:06:57 Error: Wheel reference not initialized 10:06:57 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:06:57 Error: Wheel reference not initialized 10:06:57 Error: Wheel reference not initialized 10:06:57 Error: Bone pravy predni tlumic nerot doesn't exist in skeleton CUP_Motorcycle 10:06:57 Error: Wheel reference not initialized 10:06:57 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:06:57 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_bench_EPOCH' 10:06:57 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_bench_EPOCH' 10:06:57 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_proxy_f.p3d: No geometry and no visual shape 10:06:57 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_black_proxy_f.p3d: No geometry and no visual shape 10:06:57 Error: Wheel reference not initialized 10:06:57 Error: Wheel reference not initialized 10:06:57 Render target memory points PIP5_pos & PIP5_dir not found. 10:06:57 Error: Wheel reference not initialized 10:06:57 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:06:57 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:06:58 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_box_EPOCH' 10:06:58 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_box_EPOCH' 10:06:58 B_APC_Tracked_01_CRV_F: cannon_ready_light - unknown animation source muzzle_hide_cannon 10:06:58 a3\weapons_f\acc\reticle_nlaw.p3d: No geometry and no visual shape 10:06:58 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_covered_EPOCH' 10:06:58 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_covered_EPOCH' 10:06:58 a3\air_f_heli\heli_transport_04\heli_transport_04_covered_proxy_f.p3d: No geometry and no visual shape 10:06:58 CUP_Merlin_HC3_FFV: ammo_belt_rotation - unknown animation source reloadanim 10:06:58 CUP_Merlin_HC3_FFV: bullet001 - unknown animation source revolving 10:06:58 CUP_Merlin_HC3_FFV: bullet002 - unknown animation source revolving 10:06:58 CUP_Merlin_HC3_FFV: bullet003 - unknown animation source revolving 10:06:58 CUP_Merlin_HC3_FFV: bullet004 - unknown animation source revolving 10:06:58 CUP_Merlin_HC3_FFV: bullet005 - unknown animation source revolving 10:06:58 CUP_Merlin_HC3_FFV: bullet006 - unknown animation source revolving 10:06:58 CUP_Merlin_HC3_FFV: bullet007 - unknown animation source revolving 10:06:58 CUP_Merlin_HC3_FFV: ammo_belt_bullet008hide_hide - unknown animation source reloadanim 10:06:58 CUP_Merlin_HC3_FFV: magazine_hide - unknown animation source reloadmagazine 10:06:58 CUP_Merlin_HC3_FFV: feedtray_cover_up - unknown animation source reloadmagazine 10:06:58 CUP_Merlin_HC3_FFV: feedtray_cover_down - unknown animation source reloadmagazine 10:06:58 CUP_Merlin_HC3_FFV: bolt_recoil - unknown animation source reloadanim 10:06:58 CUP_Merlin_HC3_FFV: bolt_reload_begin - unknown animation source reloadmagazine 10:06:58 CUP_Merlin_HC3_FFV: bolt_reload_end - unknown animation source reloadmagazine 10:06:58 CUP_Merlin_HC3_FFV: bullet008hide_hide - unknown animation source reloadmagazine 10:06:58 CUP_Merlin_HC3_FFV: rampa_hide - unknown animation source rampa_hide 10:06:58 CUP_Merlin_HC3_FFV: rampa_unhide - unknown animation source rampa_unhide 10:06:58 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:06:58 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_int_baf.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:06:58 cup\airvehicles\cup_airvehicles_hc3\data\merlinhc3_viewcargoseats_baf.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:06:58 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:06:58 Duplicate HitPoint name 'HitTurret' in 'I_MRAP_03_hmg_F' 10:06:58 Duplicate HitPoint name 'HitGun' in 'I_MRAP_03_hmg_F' 10:06:58 Render target memory points PIP5_pos & PIP5_dir not found. 10:06:58 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_black_F' 10:06:58 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_black_F' 10:06:58 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_black_F' 10:06:58 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_black_F' 10:06:58 a3\air_f_beta\heli_transport_02\main_rotor_center_f.p3d: No geometry and no visual shape 10:06:58 a3\air_f_beta\heli_transport_02\view_pilot_switches_f.p3d: No geometry and no visual shape 10:06:58 B_T_LSV_01_unarmed_F: mainturret - unknown animation source mainturret 10:06:58 B_T_LSV_01_unarmed_F: maingun - unknown animation source maingun 10:06:58 B_T_LSV_01_unarmed_F: codriverturret - unknown animation source codriverturret 10:06:58 B_T_LSV_01_unarmed_F: codrivergun - unknown animation source codrivergun 10:06:58 B_T_LSV_01_unarmed_F: magazine_reload_hide_1 - unknown animation source titanmuzzle_reloadmagazine 10:06:58 Duplicate HitPoint name 'HitTurret' in 'O_APC_Wheeled_02_rcws_F' 10:06:58 Duplicate HitPoint name 'HitGun' in 'O_APC_Wheeled_02_rcws_F' 10:06:58 O_APC_Wheeled_02_rcws_F: cannon_ready_light - unknown animation source revolving_gmg 10:06:58 O_APC_Wheeled_02_rcws_F: engine_damage_fire_indicator - unknown animation source hitengine_src 10:06:58 O_APC_Wheeled_02_rcws_F: engine_damage_indicator - unknown animation source hitengine_src 10:06:58 O_APC_Wheeled_02_rcws_F: main_gun_damage_indicator - unknown animation source hitmaingun_src 10:06:58 O_APC_Wheeled_02_rcws_F: turret_control_x - unknown animation source turret_control_y 10:06:58 O_APC_Wheeled_02_rcws_F: turret_control_y - unknown animation source turret_control_x 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_com_smoke_1 - unknown animation source smoke_source 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_com_smoke_2 - unknown animation source smoke_source 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_damage_engine - unknown animation source hitengine_src 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_damage_fuel - unknown animation source hitfuel_src 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_hull - unknown animation source hithull_src 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_engine - unknown animation source hitengine_src 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_fuel - unknown animation source hitfuel_src 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_main_gun - unknown animation source hitmaingun_src 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_turret - unknown animation source hitturret_src 10:06:58 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_com_turret - unknown animation source hitcomturret_src 10:06:58 O_APC_Wheeled_02_rcws_F: showcamonethull - unknown animation source showcamonethull 10:06:58 O_APC_Wheeled_02_rcws_F: showbags - unknown animation source showbags 10:06:58 O_APC_Wheeled_02_rcws_F: showcanisters - unknown animation source showcanisters 10:06:58 O_APC_Wheeled_02_rcws_F: showtools - unknown animation source showtools 10:06:58 O_APC_Wheeled_02_rcws_F: showslathull - unknown animation source showslathull 10:06:58 O_APC_Wheeled_02_rcws_F: slat_front_normal_hide - unknown animation source hitslat_front_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_front_damage_unhide - unknown animation source hitslat_front_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_front_damage_hide - unknown animation source hitslat_front_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_front_destroyed_unhide - unknown animation source hitslat_front_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_front_firegeo_hide - unknown animation source hitslat_front_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_back_normal_hide - unknown animation source hitslat_back_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_back_damage_unhide - unknown animation source hitslat_back_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_back_damage_hide - unknown animation source hitslat_back_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_back_destroyed_unhide - unknown animation source hitslat_back_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_back_firegeo_hide - unknown animation source hitslat_back_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_1_normal_hide - unknown animation source hitslat_left_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_1_damage_unhide - unknown animation source hitslat_left_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_1_damage_hide - unknown animation source hitslat_left_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_1_destroyed_unhide - unknown animation source hitslat_left_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_1_firegeo_hide - unknown animation source hitslat_left_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_2_normal_hide - unknown animation source hitslat_left_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_2_damage_unhide - unknown animation source hitslat_left_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_2_damage_hide - unknown animation source hitslat_left_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_2_destroyed_unhide - unknown animation source hitslat_left_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_2_firegeo_hide - unknown animation source hitslat_left_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_3_normal_hide - unknown animation source hitslat_left_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_3_damage_unhide - unknown animation source hitslat_left_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_3_damage_hide - unknown animation source hitslat_left_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_3_destroyed_unhide - unknown animation source hitslat_left_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_left_3_firegeo_hide - unknown animation source hitslat_left_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_1_normal_hide - unknown animation source hitslat_right_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_1_damage_unhide - unknown animation source hitslat_right_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_1_damage_hide - unknown animation source hitslat_right_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_1_destroyed_unhide - unknown animation source hitslat_right_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_1_firegeo_hide - unknown animation source hitslat_right_1_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_2_normal_hide - unknown animation source hitslat_right_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_2_damage_unhide - unknown animation source hitslat_right_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_2_damage_hide - unknown animation source hitslat_right_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_2_destroyed_unhide - unknown animation source hitslat_right_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_2_firegeo_hide - unknown animation source hitslat_right_2_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_3_normal_hide - unknown animation source hitslat_right_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_3_damage_unhide - unknown animation source hitslat_right_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_3_damage_hide - unknown animation source hitslat_right_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_3_destroyed_unhide - unknown animation source hitslat_right_3_src 10:06:58 O_APC_Wheeled_02_rcws_F: slat_right_3_firegeo_hide - unknown animation source hitslat_right_3_src 10:06:58 a3\boat_f\boat_armed_01\data\boat_armed_01_minigun_cargo_proxy.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_blur.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_tail_static.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_static.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_tail_blur.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_static_folded.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_int_cockpit.p3d: No geometry and no visual shape 10:06:58 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_int_cargo.p3d: No geometry and no visual shape 10:06:58 Duplicate HitPoint name 'HitTurret' in 'CUP_B_MH60S_USMC' 10:06:58 Duplicate HitPoint name 'HitGun' in 'CUP_B_MH60S_USMC' 10:06:58 Duplicate HitPoint name 'HitTurret' in 'CUP_B_MH60S_USMC' 10:06:58 Duplicate HitPoint name 'HitGun' in 'CUP_B_MH60S_USMC' 10:06:58 CUP_B_MH60S_USMC: seats_hide - unknown animation source seats_hide 10:06:58 O_Truck_02_covered_EPOCH: rear_hide - unknown animation source rear_hide 10:06:58 Error: Wheel reference not initialized 10:06:58 O_Truck_02_transport_EPOCH: rear_hide - unknown animation source rear_hide 10:06:58 Loading movesType CfgGesturesSapper 10:06:58 Creating action map cache 10:06:58 Error: Bone cheek_lf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone nose_tip doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_uplb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone jaw_ls doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_uplf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_lc doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_lwlb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_lwlf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone jaw_lm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone zig_lb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_lwm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_upm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone ear_l doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone corr doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone tongue_m doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone tongue_f doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eyebrow_lb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eyebrow_lf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eyebrow_lm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone zig_lm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eye_upl doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eye_lwl doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone cheek_l doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone cheek_lb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone zig_lt doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone nose_l doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone cheek_lm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone nose_r doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone forehead_r doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone forehead_m doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone forehead_l doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone cheek_rb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eye_lwr doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone cheek_r doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone zig_rt doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone zig_rm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone cheek_rf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone cheek_rm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eyebrow_rm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eyebrow_rf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eye_upr doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone eyebrow_rb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone tongue_b doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone ear_r doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone neck_l doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_uprf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone neck_r doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_uprb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_rc doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_lwrb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone lip_lwrf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone neck_b doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone zig_rb doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone neck_t doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone jaw_rf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone jaw_lf doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone chin doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone jaw_rm doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone jaw_rs doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone jaw doesn't exist in skeleton SapperSkeleton 10:06:58 Error: Bone headcutscene doesn't exist in skeleton SapperSkeleton 10:06:58 MovesType CfgGesturesSapper load time 34 ms 10:06:58 Loading movesType CfgMovesSapperSdr 10:06:58 Reading cached action map data 10:06:59 MovesType CfgMovesSapperSdr load time 635 ms 10:06:59 No speaker given for 'Kostakis Karmanlis' 10:06:59 No speaker given for 'Apostolos Dimitriadis' 10:06:59 No speaker given for 'Achilleas Karmanlis' 10:06:59 No speaker given for 'Evangelos Dimitriadis' 10:06:59 No speaker given for 'Biton Petridis' 10:06:59 No speaker given for 'Evripidis Floros' 10:06:59 No speaker given for 'Evangelos Athanasiadis' 10:06:59 No speaker given for 'Theofilos Manago' 10:06:59 a3\characters_f_beta\heads\glasses\g_squares_tinted.p3d: No geometry and no visual shape 10:06:59 No such side 10:06:59 a3\characters_f\heads\glasses\g_shades_black.p3d: No geometry and no visual shape 10:06:59 Time was adjusted to keep it same as on server. 10:06:59 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 10:06:59 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape 10:06:59 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error compiling '' in 'hitpelvis' 10:06:59 Error compiling '' in 'hitabdomen' 10:06:59 Error compiling '' in 'hitdiaphragm' 10:06:59 Error compiling '' in 'hitchest' 10:06:59 Error compiling '' in 'hitarms' 10:06:59 Error compiling '' in 'hitlegs' 10:06:59 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_weapons\1911_magazine.p3d: No geometry and no visual shape 10:06:59 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\battery\battery.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\cables\solar_cables.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets_2\lighter.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\wrap.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets\models\rock.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\farming\sunflower_plant.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\farming\poppy_plant.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\hemp.p3d: No geometry and no visual shape 10:06:59 Fresnel k must be >0, given n=4.8,k=0 10:06:59 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\solar_panels\solar_panels.p3d: No geometry and no visual shape 10:06:59 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:06:59 x\addons\a3_epoch_community\models\itemrotor.p3d: No geometry and no visual shape 10:06:59 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\atropine.p3d: No geometry and no visual shape 10:06:59 Strange convex component01 in cup\weapons\cup_weapons_west_attachments\leupoldvx3\cup_leupoldxv3.p3d:geometry 10:06:59 Strange convex component01 in cup\weapons\cup_weapons_west_attachments\leupoldvx3\cup_leupoldxv3.p3d:geometryFire 10:06:59 x\addons\a3_epoch_community\models\morphine.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\pumpkin.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets_1\models\seabass_cooked.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets\models\rope.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets_3\cfgmagazines\log\steamlogs.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\orlistat.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\rad_treatment\nanite\rad_nanite_pills.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\rad_treatment\cream\rad_cream.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\adrenaline.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\rad_treatment\iodide\pot_iodide.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\farming\sapling.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\caffeinepills.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets_1\models\trout_cooked.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\farming\sapling_teen.p3d: No geometry and no visual shape 10:06:59 Fresnel k must be >0, given n=0.8,k=0 10:06:59 x\addons\a3_epoch_community\models\enginespares.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\engineblock.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\fueltank.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\epoch_radsuit\radsuit_packed_epoch.p3d: No geometry and no visual shape 10:06:59 Error compiling '' in 'hitpelvis' 10:06:59 Error compiling '' in 'hitabdomen' 10:06:59 Error compiling '' in 'hitdiaphragm' 10:06:59 Error compiling '' in 'hitchest' 10:06:59 Error compiling '' in 'hitarms' 10:06:59 Error compiling '' in 'hitlegs' 10:06:59 x\addons\a3_epoch_community\models\krypto.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\icecream.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets_1\models\seabass.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\seeds.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_assets\models\stick.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\sunflower.p3d: No geometry and no visual shape 10:06:59 x\addons\a3_epoch_community\models\goldenseal.p3d: No geometry and no visual shape 10:07:00 x\addons\a3_epoch_community\models\geigercounter.p3d: No geometry and no visual shape 10:07:00 x\addons\a3_epoch_community\models\hotsauce.p3d: No geometry and no visual shape 10:07:00 x\addons\a3_epoch_assets_1\models\trout.p3d: No geometry and no visual shape 10:07:00 x\addons\a3_epoch_assets_1\models\tuna_cooked.p3d: No geometry and no visual shape 10:07:08 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:07:18 "[A3EAI] Verified all A3EAI settings in 0 seconds." 10:07:18 "[A3EAI] Initialized A3EAI Client Addon version 1.2.0. Radio enabled: true. Kill messages: true." 10:07:18 "[HSBlackmarket]: Client waiting for Trader ..." 10:07:18 "[KillFeed]: Client loading message function" 10:07:18 "[KillFeed]: Client loading PublicVariableEventHandler" 10:07:18 "blck client loaded ver 7/29/18 for Version 6.84 8 PM" 10:07:18 Strange convex component38 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component39 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component40 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component43 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component44 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component45 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component46 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component47 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component48 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component90 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component91 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component92 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component95 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component96 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component97 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component98 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component99 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component100 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component142 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component143 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component144 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component147 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component148 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component149 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component150 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component151 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component152 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component173 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component174 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component175 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 Strange convex component176 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:07:18 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:07:18 ca\rocks\rock.p3d: No geometry and no visual shape 10:07:18 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:07:18 Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed 10:07:18 [18554,83.901,0.226,"XEH: PostInit started. MISSIONINIT: missionName=epoch, missionVersion=53, worldName=Australia, isMultiplayer=true, isServer=false, isDedicated=false, CBA_isHeadlessClient=false, hasInterface=true, didJIP=true"] 10:07:19 [18554,83.916,0.226,"CBA_VERSIONING: cba=3.8.0.180801, "] 10:07:19 [18554,83.92,0.226,"XEH: PostInit finished."] 10:07:19 [18555,83.951,0.303,"CBA_VERSIONING_SERVER: cba=3.8.0.180801, "] 10:07:19 "EPOCH-LOGIN: Init" 10:07:19 "EPOCH-LOGIN: Start Loadingscreen" 10:07:19 "EPOCH-LOGIN: Version Check" 10:07:19 "EPOCH-LOGIN: Check PlayerUID" 10:07:19 "EPOCH-LOGIN: Check Server" 10:07:19 Mission id: 0c9bdc62691bf6080fcfa2465b42e7be40716a1b 10:07:19 Loading movesType CfgMovesBird 10:07:19 Reading cached action map data 10:07:19 "[halv_spawn] waiting for new teleports to be build in Australia ..." 10:07:19 "[halv_spawn] addAction added to [[17cd00ceb00# 2300601: infostand_v2_f.p3d REMOTE,17cd00ce080# 2300602: infostand_v2_f.p3d REMOTE,17cd00cd600# 2300603: infostand_v2_f.p3d REMOTE,17cd00ccb80# 2300604: infostand_v2_f.p3d REMOTE],[[24398.3,13971.6,0],[34751.5,13431.9,0],[19032.7,33974.6,0],[4056.35,19435.9,0]]]" 10:07:19 "Loading Spawn Menu ... 84.397" 10:07:19 "Spawn Menu Loaded ... 84.398 - 0.000999451" 10:07:19 "DEBUG: Checking Player Object: OK" 10:07:19 "DEBUG: Checking Player PosVar: OK" 10:07:19 "DEBUG: Final Player mass check: OK (1036 != 1036)" 10:07:19 "DEBUG: Checking Player Object: OK" 10:07:19 "DEBUG: Checking Player is setup: FAILED" 10:07:19 "DEBUG: Checking world preloaded: FAILED" 10:07:19 "DEBUG: Pos check: _playerObj: [30400,6100,0.231985] - Player: [23787.2,16664.5,0.00154018] - dist: 12463.4" 10:07:19 "DEBUG: Checking is Object is visible: FAILED" 10:07:19 "DEBUG: Checking Player Object: OK" 10:07:19 "DEBUG: Checking Player is setup: FAILED" 10:07:19 "DEBUG: Checking world preloaded: FAILED" 10:07:19 "DEBUG: Pos check: _playerObj: [30400,6100,0.231985] - Player: [23787.2,16664.5,0.00154018] - dist: 12463.4" 10:07:19 "DEBUG: Checking is Object is visible: FAILED" 10:07:19 "DEBUG: Checking Player Object: OK" 10:07:19 "DEBUG: Checking Player is setup: OK" 10:07:19 "DEBUG: Checking world preloaded: OK" 10:07:19 "DEBUG: Pos check: _playerObj: [23787.2,16664.5,0.00154018] - Player: [23787.2,16664.5,0.00154018] - dist: 0" 10:07:19 "DEBUG: Checking is Object is visible: OK" 10:07:19 Speaker Male01_F not found in CfgVoiceTypes 10:07:19 "EPOCH-LOGIN: Setup Player Object" 10:07:19 Speaker Male01_F not found in CfgVoiceTypes 10:07:19 "DEBUG TIME WAITED: 0.102005" 10:07:19 "EPOCH-LOGIN: Setup Player Variables and Community Stats" 10:07:19 "EPOCH-LOGIN: Setup EH's" 10:07:20 "<infiSTAR.de> VERSION: infiSTAR.de 01-07-2018 15-36-18 (v259) - server running: 0:5:8780x2" 10:07:20 String STR_LIB_TOWINGTRACTOR not found 10:07:20 String STR_CUP_LIB_CH47 not found 10:07:20 String STR_CUP_LIB_CH47 not found 10:07:20 String STR_LIB_DC3 not found 10:07:20 String STR_LIB_DC3 not found 10:07:20 "[HSBlackmarket]: Client Done ..." 10:07:22 "EPOCH-LOGIN: Finish!" 10:07:22 "<infiSTAR.de> OPEN_ADMIN_MENU_KEY: 59" 10:07:23 Loading movesType CfgMovesButterfly 10:07:23 Reading cached action map data 10:07:26 "<infiSTAR.de> config data loaded...!" 10:07:32 Wrong init state 10:07:34 "fn_handleMessage ====] Paremeters = _this = [""start"",""A local town mayor is being held hostage! Free him and earn a reward!"",""Rescue Hostage""]" 10:07:41 "0h 6min | MegaZ(76561197990778975) | God Mode - 1" 10:07:49 "0h 6min | MegaZ(76561197990778975) | Vehicle Marker - 1" 10:07:53 "0h 6min | MegaZ(76561197990778975) | Teleport to [29225.7,8576.67,0](GPS: 292085)" 10:07:55 "fn_handleMessage ====] Paremeters = _this = [""start"",""Pirates were spotted off the coast - intercept them and collect the loot"",""Mafia Fishermen""]" 10:08:20 "0h 6min | MegaZ(76561197990778975) | Teleport to [30853.5,9649.96,0](GPS: 308096)" 10:08:21 ausextras\road\sil112deg.p3d: house, config class missing 10:08:21 ausextras\road\sil112deg.p3d: house, config class missing 10:08:21 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:08:21 ausextras\signs\buildingsigns\vicroads.p3d: No geometry and no visual shape 10:08:21 Strange convex component320 in art_gallery\artgallery.p3d:geometryView 10:08:21 ausscrappers\graffiti\grap7.p3d: No geometry and no visual shape 10:08:22 Loading movesType CfgMovesRabbit_F 10:08:22 Reading cached action map data 10:08:28 Loading movesType CfgGesturesMale 10:08:28 Creating action map cache 10:08:28 MovesType CfgGesturesMale load time 14 ms 10:08:28 Loading movesType CfgRyanZombiesMovesMaleSdrSlow2 10:08:28 Reading cached action map data 10:08:29 Loading movesType CfgGesturesMale 10:08:29 Creating action map cache 10:08:29 MovesType CfgGesturesMale load time 14 ms 10:08:29 Loading movesType CfgRyanZombiesMovesMaleSdrwalker 10:08:29 Reading cached action map data 10:08:30 Warning Message: Picture picturething not found 10:08:34 "fn_handleMessage ====] Paremeters = _this = [""start"",""A temporary enemy camp has been spotted. Check the Red marker on your map for its location"",""Bandit Camp""]" 10:08:40 "CHECK: [""CUP_C_Datsun_Tubeframe"",750,1,""cfgvehicles"",""Datsun 620 Pickup (Tubeframe)"","""",""\CUP\WheeledVehicles\CUP_WheeledVehicles_Datsun\data\UI\datsun1_civil_3_open_ca.paa"","""","""",17cd4038080# 2300770: cup_datsun_civil.p3d]" 10:08:48 jas92\jas92_structures_f\clothing_store\proxy\clothing_store_water.p3d: house, config class missing 10:08:56 Loading movesType CfgGesturesMale 10:08:56 Creating action map cache 10:08:56 MovesType CfgGesturesMale load time 13 ms 10:08:56 Loading movesType CfgRyanZombiesMovesMaleSdrSlow 10:08:56 Reading cached action map data 10:09:16 a3\characters_f_beta\heads\glasses\g_shades_red.p3d: No geometry and no visual shape 10:09:16 Performance warning: SimpleSerialization::Read 'params' is using type of ,'TEXT' which is not optimized by simple serialization, falling back to generic serialization, use generic type or ask for optimizations for these types 10:09:21 a3\characters_f_gamma\heads\glasses\g_aviators.p3d: No geometry and no visual shape 10:09:26 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape 10:09:28 "0h 8min | MegaZ(76561197990778975) | Teleport to [8005.25,14745.4,0](GPS: 080147)" 10:09:31 a3\characters_f\heads\glasses\g_shades_blue.p3d: No geometry and no visual shape 10:09:34 "fn_handleMessage ====] Paremeters = _this = [""start"",""A Bandit resupply camp has been spotted. Check the Orange marker on your map for its location"",""Resupply Camp""]" 10:09:57 "0h 8min | MegaZ(76561197990778975) | Teleport to [4073.5,19451.6,0](GPS: 040194)" 10:10:14 Warning Message: Picture picturething not found 10:10:21 "CHECK: [""B_Truck_01_box_EPOCH"",2500,2.2,""cfgvehicles"",""HEMTT Box"",""The Heavy Expanded Mobility Tactical Truck is an 8x8 diesel-powered off-road truck. It serves as a standard heavy transport vehicle for BLUFOR armies. There are several versions covering the basic transport functions: cargo, refuel, medical, repair, and ammo resupply."",""\a3\soft_f_gamma\Truck_01\Data\UI\Truck_01_box_F_CA.paa"","""","""",17cd80e8080# 2300916: truck_01_box_f.p3d]" 10:10:22 Fresnel k must be >0, given n=2.51,k=0 10:10:22 Loading movesType CfgMovesSnakes_F 10:10:22 Reading cached action map data 10:10:35 "fn_handleMessage ====] Paremeters = _this = [""start"",""A Bandit Medical camp has been spotted. Check the Green marker on your map for its location"",""Medical Camp""]" 10:10:35 "0h 9min | MegaZ(76561197990778975) | Teleport to [5729.41,24379.4,0](GPS: 057243)" 10:10:54 Performance warning: SimpleSerialization::Read 'params' is using type of ,'TEXT' which is not optimized by simple serialization, falling back to generic serialization, use generic type or ask for optimizations for these types 10:11:07 "0h 9min | MegaZ(76561197990778975) | Teleport to [23187.8,19757.3,0](GPS: 231197)" 10:11:08 ausobjects\glowingsigns\clothes.p3d: No geometry and no visual shape 10:11:14 ausextras\signs\buildingsigns\adehos.p3d: No geometry and no visual shape 10:11:21 Warning Message: Picture picturething not found 10:11:26 Warning Message: Picture picturething not found 10:11:34 "CHECK: [""O_Truck_02_covered_EPOCH"",2500,2.2,""cfgvehicles"",""Zamak Transport (Covered)"",""The Zamak heavy truck is a 6x6 vehicle used for transport, repair, and utility roles. In addition, it can also carry a multiple rocket launcher. Fitted with a powerful V8 engine, these trucks are reliable even in harsh conditions."",""\A3\soft_f_beta\Truck_02\data\UI\Truck_02_covered_CA.paa"","""","""",17cd7d80080# 2300923: truck_02_covered_f.p3d]" 10:12:22 "DEBUG: _spawnUnits []" 10:12:22 Loading movesType CfgMovesGoat_F 10:12:22 Reading cached action map data 10:12:32 "0h 11min | MegaZ(76561197990778975) | Teleport to [20157.4,28783.2,0](GPS: 201287)" 10:12:33 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:13:24 "0h 11min | MegaZ(76561197990778975) | Teleport to [25041.2,25733.5,0](GPS: 250257)" 10:13:45 "0h 12min | MegaZ(76561197990778975) | Deleting B_Truck_01_covered_EPOCH @250257.." 10:13:55 "0h 12min | MegaZ(76561197990778975) | Teleport to [32401.8,27195,0](GPS: 324271)" 10:14:23 "0h 12min | MegaZ(76561197990778975) | Teleport to [27881.6,31813.2,0](GPS: 278318)" 10:14:25 austrees\smallplant.p3d: No geometry and no visual shape 10:14:25 austrees\bushes1\01\largefern.p3d: No geometry and no visual shape 10:14:25 austrees\bushes\02\bush2.p3d: No geometry and no visual shape 10:14:25 austrees\plant1.p3d: No geometry and no visual shape 10:14:25 austrees\bushes1\03\purpletree.p3d: No geometry and no visual shape 10:14:25 austrees\bushes1\05\bush5.p3d: No geometry and no visual shape 10:14:25 austrees\bushes\04\bush4.p3d: No geometry and no visual shape 10:14:25 austrees\palm_plant.p3d: No geometry and no visual shape 10:14:52 Warning Message: Picture picturething not found 10:14:59 "CHECK: [""O_Truck_03_covered_EPOCH"",2500,2.2,""cfgvehicles"",""Tempest Transport (Covered)"",""The Tempest is a 6x6 mine resistant standard transport truck for the CSAT army. Its primary role is to carry troops and cargo under armor. The modular design of the truck allows several transport versions: cargo, refuel, medical, repair and ammo resupply."",""\A3\Soft_F_EPC\Truck_03\Data\UI\truck_03_covered_CA.paa"","""","""",17cd7e06040# 2300919: truck_03_covered_f.p3d]" 10:15:24 "0h 13min | MegaZ(76561197990778975) | Teleport to [31659.7,23550,0](GPS: 316235)" 10:15:26 austrees\deadtree2.p3d: No geometry and no visual shape 10:16:12 "0h 14min | MegaZ(76561197990778975) | Teleport to [23192.3,19764.1,0](GPS: 231197)" 10:16:22 Loading movesType CfgMovesSheep_F 10:16:22 Reading cached action map data 10:16:35 Warning Message: Picture picturething not found 10:16:44 "CHECK: [""O_Truck_02_transport_EPOCH"",2500,2.2,""cfgvehicles"",""Zamak Transport"",""The Zamak heavy truck is a 6x6 vehicle used for transport, repair, and utility roles. In addition, it can also carry a multiple rocket launcher. Fitted with a powerful V8 engine, these trucks are reliable even in harsh conditions."",""\A3\soft_f_beta\Truck_02\data\UI\Truck_02_transport_CA.paa"","""","""",17cd7d82040# 2300921: truck_02_transport_f.p3d]" 10:17:00 "0h 15min | MegaZ(76561197990778975) | Teleport to [23900.6,19502.5,0](GPS: 239195)" 10:17:05 "0h 15min | MegaZ(76561197990778975) | Teleport to [24368.4,19618.8,0](GPS: 243196)" 10:17:11 "0h 15min | MegaZ(76561197990778975) | Teleport to [24395.8,19885.5,0](GPS: 243198)" 10:17:22 "DEBUG: _spawnUnits []" 10:17:28 "0h 15min | MegaZ(76561197990778975) | infiSTAR MapIcons - 1" 10:17:32 "0h 16min | MegaZ(76561197990778975) | Teleport to [24224.8,20048.2,0](GPS: 242200)" 10:17:50 "0h 16min | MegaZ(76561197990778975) | Teleport to [20508.5,19160.4,0](GPS: 205191)" 10:17:57 Warning Message: Cannot open object ca\misc3\wf\wf_uav_terminal_east.p3d 10:17:57 ca\misc3\wf\wf_uav_terminal_east.p3d: No geometry and no visual shape 10:17:58 Strange convex component26 in a3\drones_f\air_f_gamma\uav_02\uav_02_f.p3d:geometryView 10:17:58 I_UAV_02_F: hideweapons - unknown animation source hideweapons 10:17:58 Warning Message: Cannot open object ca\misc_e\cluttercutter_ep1.p3d 10:17:58 ca\misc_e\cluttercutter_ep1.p3d: No geometry and no visual shape 10:17:59 Duplicate HitPoint name 'HitGun' in 'I_HMG_01_high_F' 10:17:59 Duplicate HitPoint name 'HitTurret' in 'I_HMG_01_high_F' 10:17:59 Dimensions in class I_HMG_01_high_F should be an array of size 2. 10:18:30 "0h 17min | MegaZ(76561197990778975) | Teleport to [31375.8,15110.2,0](GPS: 313151)" 10:18:31 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:18:49 "0h 17min | MegaZ(76561197990778975) | Teleport to [24443.7,13857.7,0](GPS: 244138)" 10:18:50 Fresnel k must be >0, given n=1,k=0 10:19:23 Loading movesType CfgMovesHen_F 10:19:23 Reading cached action map data 10:22:00 "0h 20min | MegaZ(76561197990778975) | Teleport to [24404.7,13919.5,0](GPS: 244139)" 10:22:22 "DEBUG: _spawnUnits []" 10:23:19 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:24:50 Cargo_Container: door_1_rot - unknown animation source door_1_sound_source 10:24:50 Cargo_Container: door_1_locked_rot - unknown animation source door_1_locked_source 10:24:50 Cargo_Container: door_2_rot - unknown animation source door_2_sound_source 10:24:50 Cargo_Container: door_2_locked_rot - unknown animation source door_2_locked_source 10:24:50 Error: selection end1 missing in memory LOD of model a3\structures_f\ind\cargo\cargo20_orange_f.p3d 10:26:11 Warning Message: Picture picturething not found 10:26:19 "CHECK: [""B_Truck_01_mover_EPOCH"",2500,2.2,""cfgvehicles"",""HEMTT"",""The Heavy Expanded Mobility Tactical Truck is an 8x8 diesel-powered off-road truck. It serves as a standard heavy transport vehicle for BLUFOR armies. There are several versions covering the basic transport functions: cargo, refuel, medical, repair, and ammo resupply."",""\a3\soft_f_gamma\Truck_01\Data\UI\Truck_01_mover_F_CA.paa"","""","""",17cd7ff4080# 2300918: truck_01_mover_f.p3d]" 10:27:22 "DEBUG: _spawnUnits []" 10:27:26 "0h 25min | MegaZ(76561197990778975) | Teleport to [21302.3,23072.9,0](GPS: 213230)" 10:27:27 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:27:43 "0h 26min | MegaZ(76561197990778975) | Teleport to [23873,23827.4,0](GPS: 238238)" 10:27:53 "0h 26min | MegaZ(76561197990778975) | Teleport to [27370.1,24320.8,0](GPS: 273243)" 10:27:53 cup\airvehicles\cup_airvehicles_dc3\dc3_cargoseats.p3d: No geometry and no visual shape 10:28:23 Loading movesType CfgMovesDog_F 10:28:23 Reading cached action map data 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Network simulation, time = 1568.915 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:30 Group C Alpha 1-1 (0xe8db5280) - network ID 2:4318 10:28:30 - no main subgroup 10:28:36 Speaker Male01_F not found in CfgVoiceTypes 10:29:32 a3\data_f\particleeffects\universal\stonesmall.p3d: No geometry and no visual shape 10:30:12 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:32:22 "DEBUG: _spawnUnits []" 10:32:44 "0h 31min | MegaZ(76561197990778975) | Vehicle God Mode - 1" 10:32:59 "0h 31min | MegaZ(76561197990778975) | Teleport to [23181.8,19749.9,0.190498](GPS: 231197)" 10:33:12 Warning Message: Picture picturething not found 10:33:13 String STR_LIB_DC3 not found 10:33:21 "CHECK: [""CUP_C_C47_CIV"",667,0.7,""cfgvehicles"",""C-47 Skytrain"","""",""\cup\airvehicles\cup_airvehicles_DC3\Data\ui\DC3_CA.paa"","""","""",17cd1a74080# 2300644: cup_c47.p3d]" 10:33:57 ausextras\signs\buildingsigns\darhos.p3d: No geometry and no visual shape 10:33:57 "0h 32min | MegaZ(76561197990778975) | Teleport to [16531.6,33677.6,0](GPS: 165336)" 10:33:58 ausbuildings\doughnut_time\donutsign.p3d: No geometry and no visual shape 10:33:58 ausbuildings\factory\showroom\proxy\desks.p3d: No geometry and no visual shape 10:33:58 ausbuildings\factory\showroom\proxy\desks.p3d: house, config class missing 10:34:22 "0h 32min | MegaZ(76561197990778975) | Teleport to [19026.5,33959.9,0](GPS: 190339)" 10:35:07 Warning Message: Picture picturething not found 10:35:18 "CHECK: [""hoverboard_epoch_a3"",200,0.5,""cfgvehicles"",""Hoverboard A3 Skin"","""",""\x\addons\a3_epoch_community\textures\Hoverboard\hoverboard_icon_ca.paa"","""","""",17cceb0a040# 2300631: hoverboard.p3d]" 10:35:44 "0h 34min | MegaZ(76561197990778975) | Teleport to [30040.4,26477.4,0](GPS: 300264)" 10:35:44 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:35:45 ausobjects\smallitems\whittriangle.p3d: No geometry and no visual shape 10:35:46 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:36:22 "0h 34min | MegaZ(76561197990778975) | Teleport to [27880.8,31797.1,-0.00856018](GPS: 278317)" 10:36:40 "0h 35min | MegaZ(76561197990778975) | Teleport to [27852.6,31820.1,-0.0112476](GPS: 278318)" 10:36:56 Warning Message: Picture picturething not found 10:36:57 String STR_LIB_DC3 not found 10:36:57 Warning Message: Picture picturething not found 10:36:59 String STR_LIB_DC3 not found 10:37:11 "CHECK: [""CUP_C_C47_CIV"",2000,0.7,""cfgvehicles"",""C-47 Skytrain"","""",""\cup\airvehicles\cup_airvehicles_DC3\Data\ui\DC3_CA.paa"","""","""",17cd3de2040# 2300779: cup_c47.p3d]" 10:37:22 "DEBUG: _spawnUnits []" 10:37:33 "0h 36min | MegaZ(76561197990778975) | Teleport to [16655.6,24630.5,0](GPS: 166246)" 10:38:09 "0h 36min | MegaZ(76561197990778975) | Teleport to [23191,19759.1,0.096199](GPS: 231197)" 10:38:21 Warning Message: Picture picturething not found 10:38:30 "CHECK: [""O_Heli_Transport_04_bench_EPOCH"",2500,1,""cfgvehicles"",""Mi-290 Taru (Bench)"",""The Mi-290 Taru is a CSAT heavy utility helicopter with coaxial rotors and a unique modular construction. Its design is inspired by both Kamov Ka-226 and S-64 Skycrane aircraft. Various mission pods allow Taru to serve many different roles. Primarily it can transport cargo (up to 13,500 kg), troops (up to 16 passengers), and provide battlefield supplies (ammunition, fuel, repair facilities, and medical equipment). The helicopter can also transport light vehicles thanks to Sling Loading capabilities. While the Taru is unarmed, it does have countermeasure launchers."",""\A3\Air_F_Heli\Heli_Transport_04\Data\UI\Heli_Transport_04_bench_CA.paa"","""","""",17cd2f3c080# 2300713: heli_transport_04_bench_f.p3d]" 10:38:55 "0h 37min | MegaZ(76561197990778975) | Teleport to [22054.9,19352.3,0](GPS: 220193)" 10:38:59 Setting invalid pitch -33071955968.0000 for R Alpha 4-3:1 REMOTE 10:39:17 "0h 37min | MegaZ(76561197990778975) | Deleted drawing on a global channel!" 10:39:56 "0h 38min | MegaZ(76561197990778975) | Teleport to [22268.7,19041.3,0](GPS: 222190)" 10:39:59 mm_residential2\proxy\roofroof.p3d: house, config class missing 10:40:11 mm_buildings3\pub_a\proxy\gutter1.p3d: No geometry and no visual shape 10:40:11 mm_buildings3\pub_a\proxy\panels.p3d: No geometry and no visual shape 10:40:11 mm_post\build2\roof.p3d: No geometry and no visual shape 10:40:11 mm_post\build2\furniturea.p3d: No geometry and no visual shape 10:40:16 Ragdoll - loading of ragdoll source "Soldier" started. 10:40:16 Ragdoll - loading of ragdoll source "Soldier" finished successfully. 10:40:19 a3\data_f\particleeffects\universal\ammobelt_links.p3d: No geometry and no visual shape 10:40:44 "0h 39min | MegaZ(76561197990778975) | UnlimAmmo - 1" 10:42:22 "DEBUG: _spawnUnits [""Epoch_Sapper_F""]" 10:42:22 No such side 10:42:26 Setting invalid pitch -0.0000 for R Alpha 4-4:2 REMOTE 10:42:54 "0h 41min | MegaZ(76561197990778975) | Teleport to [22223.5,18601.3,0](GPS: 222186)" 10:43:54 "0h 42min | MegaZ(76561197990778975) | Teleport to [23183.5,19750.8,0](GPS: 231197)" 10:44:20 Warning Message: Picture picturething not found 10:44:29 "CHECK: [""B_Truck_01_transport_EPOCH"",2500,2.2,""cfgvehicles"",""HEMTT Transport"",""The Heavy Expanded Mobility Tactical Truck is an 8x8 diesel-powered off-road truck. It serves as a standard heavy transport vehicle for BLUFOR armies. There are several versions covering the basic transport functions: cargo, refuel, medical, repair, and ammo resupply."",""\a3\soft_f_beta\Truck_01\Data\UI\Truck_01_Base_CA.paa"","""","""",17d2ce2e040# 2306160: truck_01_transport_f.p3d]" 10:45:04 "0h 43min | MegaZ(76561197990778975) | Deleting B_Truck_01_transport_EPOCH @231197.." 10:45:19 "0h 43min | MegaZ(76561197990778975) | Teleport to [22159.4,21576.4,0](GPS: 221215)" 10:45:30 "0h 44min | MegaZ(76561197990778975) | Teleport to [22133.1,21589.5,0](GPS: 221215)" 10:45:44 "0h 44min | MegaZ(76561197990778975) | Teleport to [22131.4,21589.5,0](GPS: 221215)" 10:46:08 "0h 44min | MegaZ(76561197990778975) | Teleport to [21913.1,23419.6,0](GPS: 219234)" 10:46:43 "0h 45min | MegaZ(76561197990778975) | Teleport to [17326.4,20967.1,0](GPS: 173209)" 10:47:15 "0h 45min | MegaZ(76561197990778975) | Teleport to [30871.5,9658.53,0](GPS: 308096)" 10:47:22 "DEBUG: _spawnUnits [""Epoch_SapperG_F""]" 10:47:22 No such side 10:48:08 "0h 46min | MegaZ(76561197990778975) | Teleport to [30575.9,23750.4,0](GPS: 305237)" 10:48:22 "0h 46min | MegaZ(76561197990778975) | Teleport to [29621.1,23095.8,0](GPS: 296230)" 10:49:38 "0h 48min | MegaZ(76561197990778975) | Teleport to [30859.7,9667.63,0](GPS: 308096)" 10:50:09 "0h 48min | MegaZ(76561197990778975) | Teleport to [27368.5,14671.7,0](GPS: 273146)" 10:50:33 "0h 49min | MegaZ(76561197990778975) | Teleport to [30856.7,9662.04,0](GPS: 308096)" 10:51:05 "0h 49min | MegaZ(76561197990778975) | Teleport to [25142.3,24429.5,0](GPS: 251244)" 10:51:34 "0h 50min | MegaZ(76561197990778975) | Teleport to [30852,9676.2,0](GPS: 308096)" 10:52:14 "0h 50min | MegaZ(76561197990778975) | Teleport to [17823.8,31772,0](GPS: 178317)" 10:52:22 "DEBUG: _spawnUnits [""Epoch_SapperG_F""]" 10:52:22 No such side 10:52:24 Loading movesType CfgMovesCock_F 10:52:24 Reading cached action map data 10:53:01 "0h 51min | MegaZ(76561197990778975) | Teleport to [31364.5,12899,0](GPS: 313128)" 10:53:17 "0h 51min | MegaZ(76561197990778975) | Teleport to [31533.6,13676.8,0](GPS: 315136)" 10:53:36 "0h 52min | MegaZ(76561197990778975) | Teleport to [24400.6,13896.3,0.0357208](GPS: 244138)" 10:53:55 Warning Message: Picture picturething not found 10:54:02 "CHECK: [""B_Heli_Transport_03_unarmed_EPOCH"",3000,1.3,""cfgvehicles"",""CH-67 Huron (Unarmed)"",""The CH-67 Huron is a twin-engine, tandem rotor heavy-lift helicopter used by NATO. Its primary role is the transportation of troops, vehicles and cargo. The maximum weight of cargo it's able to lift is 12 tons. The Huron is a modernized version of the CH-47 Chinook and exists in two variants. The armed variant with two side gunners manning 6.5 mm Miniguns offers some defensive capabilities, while the transport version replaces the gunners with additional two passengers positions."",""\A3\Air_F_Heli\Heli_Transport_03\Data\UI\Heli_Transport_03_base_CA.paa"","""","""",17cd0f58080# 2300620: heli_transport_03_f.p3d]" 10:55:01 "0h 53min | MegaZ(76561197990778975) | Teleport to [30015.4,33584.6,0](GPS: 300335)" 10:55:23 "0h 53min | MegaZ(76561197990778975) | Teleport to [30848.4,9666.45,0](GPS: 308096)" 10:55:35 Warning Message: Picture picturething not found 10:55:45 Warning Message: Picture picturething not found 10:55:55 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cd6198080# 2300841: van_01_transport_f.p3d]" 10:55:55 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cd40ba040# 2300765: van_01_transport_f.p3d]" 10:55:55 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cd5e4a040# 2300859: van_01_transport_f.p3d]" 10:55:55 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cdf662040# 2301105: van_01_transport_f.p3d]" 10:56:18 Warning Message: Picture picturething not found 10:56:30 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cdf662040# 2301105: van_01_transport_f.p3d]" 10:57:20 "0h 55min | MegaZ(76561197990778975) | Teleport to [27099.1,25807.6,0](GPS: 270258)" 10:57:22 "DEBUG: _spawnUnits [""Epoch_SapperG_F""]" 10:57:22 No such side 10:57:34 "0h 56min | MegaZ(76561197990778975) | Teleport to [27258.4,24774.3,0](GPS: 272247)" 10:58:04 Setting invalid pitch -0.0000 for R Alpha 1-4:3 REMOTE 10:58:31 "0h 57min | MegaZ(76561197990778975) | Teleport to [30862.2,9647.11,0](GPS: 308096)" 10:58:44 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:58:51 "0h 57min | MegaZ(76561197990778975) | Teleport to [17822.3,31775.4,0](GPS: 178317)" 10:59:15 "0h 57min | MegaZ(76561197990778975) | Teleport to [30848.7,9649.38,0](GPS: 308096)" 10:59:34 Warning Message: Picture picturething not found 10:59:42 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cd4b1a040# 2300829: van_01_transport_f.p3d]" 10:59:48 Warning Message: Picture picturething not found 10:59:58 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cd85ea040# 2300896: van_01_transport_f.p3d]" 11:00:29 "0h 59min | MegaZ(76561197990778975) | Teleport to [20466.6,12737.4,0](GPS: 204127)" 11:00:48 "0h 59min | MegaZ(76561197990778975) | Teleport to [30849.1,9643.84,0](GPS: 308096)" 11:01:02 Warning Message: Picture picturething not found 11:01:11 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cdf662040# 2301105: van_01_transport_f.p3d]" 11:01:11 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cd85ea040# 2300896: van_01_transport_f.p3d]" 11:01:24 "0h 59min | MegaZ(76561197990778975) | AdminConsole" 11:01:27 "C_Van_01_transport_EPOCH" 11:01:41 "Epoch_Male_F" 11:01:45 "[""ParachuteBase"",""HMMWV_civil"",""CUP_C_Fastrope"",""CUP_WV_B_CRAM"",""CUP_WV_B_RAM_Launcher"",""CUP_WV_B_SS_Launcher"",""B_HMG_01_F"",""O_HMG_01_F"",""I_HMG_01_F"",""B_HMG_01_high_F"",""O_HMG_01_high_F"",""I_HMG_01_high_F"",""B_HMG_01_A_F"",""O_HMG_01_A_F"",""I_HMG_01_A_F"",""B_GMG_01_F"",""O_GMG_01_F"",""I_GMG_01_F"",""B_GMG_01_high_F"",""O_GMG_01_high_F"",""I_GMG_01_high_F"",""B_GMG_01_A_F"",""O_GMG_01_A_F"",""I_GMG_01_A_F"",""B_Mortar_01_F"",""O_Mortar_01_F"",""I_Mortar_01_F"",""I_G_Mortar_01_F"",""B_G_Mortar_01_F"",""O_G_Mortar_01_F"",""CUP_B_T810_Armed_CZ_WDL"",""CUP_B_T810_Unarmed_CZ_WDL"",""CUP_B_T810_Refuel_CZ_WDL"",""CUP_B_T810_Reammo_CZ_WDL"",""CUP_B_T810_Repair_CZ_WDL"",""CUP_B_T810_Armed_CZ_DES"",""CUP_B_T810_Unarmed_CZ_DES"",""CUP_B_T810_Refuel_CZ_DES"",""CUP_B_T810_Reammo_CZ_DES"",""CUP_B_T810_Repair_CZ_DES"",""B_Heli_Light_01_F"",""B_Heli_Light_01_armed_F"",""B_Heli_Light_01_dynamicLoadout_F"",""C_Heli_Light_01_civil_F"",""C_Heli_light_01_blue_F"",""C_Heli_light_01_red_F"",""C_Heli_light_ 11:02:00 "1h 0min | MegaZ(76561197990778975) | Deleting C_Van_01_transport_EPOCH @308096.." 11:02:03 Warning Message: Picture picturething not found 11:02:13 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cdf662040# 2301105: van_01_transport_f.p3d]" 11:02:22 "DEBUG: _spawnUnits [""Epoch_SapperG_F""]" 11:02:22 No such side 11:02:50 "1h 1min | MegaZ(76561197990778975) | Teleport to [17853.7,31751.2,0](GPS: 178317)" 11:02:58 Cannot create object 2:5337 with type[DestructionEffects], param[NetworkMessageCreateDestructionEffects], NMT code[241]: 11:02:58 Cannot create object 2:5339 with type[DestructionEffects], param[NetworkMessageCreateDestructionEffects], NMT code[241]: 11:02:58 Cannot create object 2:5341 with type[DestructionEffects], param[NetworkMessageCreateDestructionEffects], NMT code[241]: 11:02:58 Cannot create object 2:5343 with type[DestructionEffects], param[NetworkMessageCreateDestructionEffects], NMT code[241]: 11:02:58 Client: Object 2:5341 (type Type_93) not found. 11:02:58 Client: Object 2:5341 (type Type_454) not found. 11:02:58 Client: Object 2:5337 (type Type_93) not found. 11:02:58 Client: Object 2:5337 (type Type_454) not found. 11:02:58 Client: Object 2:5337 (type Type_92) not found. 11:02:58 Client: Object 2:5343 (type Type_92) not found. 11:02:58 Client: Object 2:5339 (type Type_93) not found. 11:02:58 Client: Object 2:5343 (type Type_454) not found. 11:02:58 Client: Object 2:5339 (type Type_454) not found. 11:02:58 Client: Object 2:5343 (type Type_93) not found. 11:02:58 Client: Object 2:5341 (type Type_92) not found. 11:02:58 Client: Object 2:5339 (type Type_92) not found. 11:02:58 "1h 1min | MegaZ(76561197990778975) | Teleport to [17823,31793.5,0](GPS: 178317)" 11:03:08 "1h 1min | MegaZ(76561197990778975) | Vehicle Marker - 0" 11:03:13 "1h 1min | MegaZ(76561197990778975) | Vehicle Marker - 1" 11:06:07 "1h 4min | MegaZ(76561197990778975) | Teleport to [32159.3,22558,0](GPS: 321225)" 11:06:38 "1h 5min | MegaZ(76561197990778975) | Teleport to [32650.9,26414.9,0](GPS: 326264)" 11:07:01 "1h 5min | MegaZ(76561197990778975) | Restore - B Alpha 1-1:1 (MegaZ)(76561197990778975)" 11:07:22 "DEBUG: _spawnUnits [""Epoch_SapperG_F""]" 11:07:22 No such side 11:07:29 "1h 6min | MegaZ(76561197990778975) | Teleport to [23188.4,19750,0.0307312](GPS: 231197)" 11:07:45 Warning Message: Picture picturething not found 11:07:52 "CHECK: [""O_Heli_Transport_04_EPOCH"",2500,1,""cfgvehicles"",""Mi-290 Taru"",""The Mi-290 Taru is a CSAT heavy utility helicopter with coaxial rotors and a unique modular construction. Its design is inspired by both Kamov Ka-226 and S-64 Skycrane aircraft. Various mission pods allow Taru to serve many different roles. Primarily it can transport cargo (up to 13,500 kg), troops (up to 16 passengers), and provide battlefield supplies (ammunition, fuel, repair facilities, and medical equipment). The helicopter can also transport light vehicles thanks to Sling Loading capabilities. While the Taru is unarmed, it does have countermeasure launchers."",""\A3\Air_F_Heli\Heli_Transport_04\Data\UI\Heli_Transport_04_CA.paa"","""","""",17cd0ce4080# 2300614: heli_transport_04_f.p3d]" 11:08:31 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 11:08:31 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 11:08:31 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 11:08:31 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 11:08:31 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 11:08:31 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 11:08:31 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 11:08:31 "1h 7min | MegaZ(76561197990778975) | Teleport to [38160.4,19941.3,0](GPS: 381199)" 11:08:32 ausbuildings\hirise\proxy\kitchenandpics.p3d: No geometry and no visual shape 11:08:32 ausbuildings\hirise\proxy\kitchenandpics.p3d: house, config class missing 11:08:32 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 11:08:32 mm_buildings\prison\gaol_gate_sec.p3d: No geometry and no visual shape 11:08:32 mm_buildings\prison\gaol_gate_sec.p3d: house, config class missing 11:08:32 ausbuildings\hirise\proxy\kitchenandpics.p3d: house, config class missing 11:08:34 mm_bank\miscrisk.p3d: house, config class missing 11:08:46 "1h 7min | MegaZ(76561197990778975) | Deleting O_Truck_02_covered_EPOCH @381199.." 11:08:53 "1h 7min | MegaZ(76561197990778975) | Deleting CUP_C_Golf4_camodark_Civ @381199.." 11:08:53 "fn_handleMessage ====] Paremeters = _this = [""start"",""A group of Bandits was sighted in a nearby sector! Check the Blue marker on your map for the location!"",""Bandit Patrol""]" 11:09:06 "fn_handleMessage ====] Paremeters = _this = [""start"",""Pirates were spotted off the coast - intercept them and collect the loot"",""Mafia Fishermen""]" 11:09:12 ausextras\signs\buildingsigns\fatboyspizza.p3d: No geometry and no visual shape 11:09:15 "1h 7min | MegaZ(76561197990778975) | Teleport to [20543.2,22715.3,0](GPS: 205227)" 11:09:19 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 11:09:54 "fn_handleMessage ====] Paremeters = _this = [""start"",""A temporary enemy camp has been spotted. Check the Red marker on your map for its location"",""Bandit Camp""]" 11:10:03 "1h 8min | MegaZ(76561197990778975) | Teleport to [5851.92,15728.8,0](GPS: 058157)" 11:10:21 "1h 8min | MegaZ(76561197990778975) | SPECTATE - switchedCamera on MegaZ(76561197990778975) - C_Van_01_box_EPOCH" 11:10:26 "1h 8min | MegaZ(76561197990778975) | Restore - B Alpha 1-1:1 (MegaZ)(76561197990778975)" 11:10:35 "1h 9min | MegaZ(76561197990778975) | Teleport to [4069,19448.6,0](GPS: 040194)" 11:10:38 Fresnel n must be >0, given n=0,k=0.3 11:10:54 "fn_handleMessage ====] Paremeters = _this = [""start"",""A local Mafia Don has been spotted! Capture him and earn a reward!"",""Capture Don""]" 11:10:56 "1h 9min | MegaZ(76561197990778975) | Teleport to [9243.98,18113.9,0](GPS: 092181)" 11:10:59 "fn_handleMessage ====] Paremeters = _this = [""start"",""Pirates were spotted off the coast - intercept them and collect the loot"",""Mafia Fishermen""]" 11:11:18 "1h 9min | MegaZ(76561197990778975) | Teleport to [4097.06,19448.2,0](GPS: 040194)" 11:11:35 "1h 10min | MegaZ(76561197990778975) | SPECTATE - switchedCamera on MegaZ(76561197990778975) - C_Van_01_box_EPOCH" 11:11:37 "1h 10min | MegaZ(76561197990778975) | Restore - B Alpha 1-1:1 (MegaZ)(76561197990778975)" 11:11:53 "1h 10min | MegaZ(76561197990778975) | SPECTATE - switchedCamera on MegaZ(76561197990778975) - Epoch_Male_F" 11:11:54 "fn_handleMessage ====] Paremeters = _this = [""start"",""A temporary enemy camp has been spotted. Check the Red marker on your map for its location"",""Bandit Camp""]" 11:11:58 "fn_handleMessage ====] Paremeters = _this = [""start"",""Pirates were spotted off the coast - intercept them and collect the loot"",""Mafia Fishermen""]" 11:12:22 "DEBUG: _spawnUnits [""Epoch_SapperG_F""]" 11:12:23 Warning Message: Picture picturething not found 11:12:32 "CHECK: [""C_Van_01_box_EPOCH"",1000,1,""cfgvehicles"",""Truck Boxer"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_box_CA.paa"","""","""",17cd49fe040# 2300793: van_01_box_f.p3d]" 11:12:40 Warning Message: Picture picturething not found 11:12:47 "CHECK: [""C_Van_01_box_EPOCH"",1000,1,""cfgvehicles"",""Truck Boxer"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_box_CA.paa"","""","""",17cd5e0e040# 2300862: van_01_box_f.p3d]" 11:13:55 "fn_handleMessage ====] Paremeters = _this = [""start"",""A Bandit resupply camp has been spotted. Check the Orange marker on your map for its location"",""Resupply Camp""]" 11:14:10 "1h 12min | MegaZ(76561197990778975) | Teleport to [31242,9877.57,0](GPS: 312098)" 11:14:11 mm_bank\miscrisk.p3d: house, config class missing 11:14:11 Fresnel n must be >0, given n=0,k=1.4 11:14:25 "1h 12min | MegaZ(76561197990778975) | Teleport to [30854.5,9644.85,0](GPS: 308096)" 11:14:31 Warning Message: Picture picturething not found 11:14:40 "CHECK: [""C_Van_01_box_EPOCH"",1000,1,""cfgvehicles"",""Truck Boxer"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_box_CA.paa"","""","""",17cd20dc080# 2300663: van_01_box_f.p3d]" 11:14:40 "CHECK: [""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_dropside_CA.paa"","""","""",17cdf662040# 2301105: van_01_transport_f.p3d]" 11:14:55 "fn_handleMessage ====] Paremeters = _this = [""start"",""A Bandit Medical camp has been spotted. Check the Green marker on your map for its location"",""Medical Camp""]" 11:15:07 "1h 13min | MegaZ(76561197990778975) | Teleport to [28812.9,20617.6,0](GPS: 288206)" 11:15:51 "1h 14min | MegaZ(76561197990778975) | Teleport to [21863.6,20883.4,0](GPS: 218208)" 11:17:22 "DEBUG: _spawnUnits [""Epoch_SapperG_F""]" 11:17:22 No such side 11:17:24 Setting invalid pitch -0.0000 for R Alpha 1-2:1 REMOTE 11:18:17 "1h 16min | MegaZ(76561197990778975) | Teleport to [23184.1,19761,0](GPS: 231197)" 11:18:27 Warning Message: Picture picturething not found 11:18:34 "CHECK: [""B_Truck_01_covered_EPOCH"",2500,2.2,""cfgvehicles"",""HEMTT Transport (Covered)"",""The Heavy Expanded Mobility Tactical Truck is an 8x8 diesel-powered off-road truck. It serves as a standard heavy transport vehicle for BLUFOR armies. There are several versions covering the basic transport functions: cargo, refuel, medical, repair, and ammo resupply."",""\a3\soft_f_beta\Truck_01\Data\UI\Truck_01_covered_CA.paa"","""","""",17e21780080# 2312081: truck_01_covered_f.p3d]" 11:18:44 "1h 17min | MegaZ(76561197990778975) | Deleting B_Truck_01_covered_EPOCH @231197.." 11:18:50 "1h 17min | MegaZ(76561197990778975) | Teleport to [21681.1,21676.2,0](GPS: 216216)" 11:19:01 "1h 17min | MegaZ(76561197990778975) | Teleport to [21661.9,21685,0](GPS: 216216)" 11:19:12 "1h 17min | MegaZ(76561197990778975) | Vehicle Marker - 0" 11:19:13 "1h 17min | MegaZ(76561197990778975) | Vehicle Marker - 1" 11:20:02 "1h 18min | MegaZ(76561197990778975) | Teleport to [31434.1,11186.5,0](GPS: 314111)" 11:20:03 ausextras\signs\buildingsigns\melbairport.p3d: No geometry and no visual shape 11:20:03 mm_residential2\proxy\roofroof.p3d: house, config class missing 11:20:18 "1h 18min | MegaZ(76561197990778975) | Teleport to [30858.1,9643.73,0](GPS: 308096)" 11:20:25 Warning Message: Picture picturething not found 11:20:31 "CHECK: [""C_Van_01_box_EPOCH"",1000,1,""cfgvehicles"",""Truck Boxer"",""The civilian 4x4 truck is a highly customizable truck with off-road capabilities preferred by the civilian population. It builds on retro design, but utilizes a modern engine and electronics. Most common truck setups are boxed, cistern and pick-up set."",""\A3\soft_f_gamma\van_01\Data\UI\portrait_van_01_box_CA.paa"","""","""",17cd403a040# 2300769: van_01_box_f.p3d]" 11:20:40 "1h 19min | MegaZ(76561197990778975) | Deleting C_Van_01_transport_EPOCH @308096.." 11:21:27 "1h 19min | MegaZ(76561197990778975) | Teleport to [23473,18042.6,0](GPS: 234180)" 11:21:46 "1h 20min | MegaZ(76561197990778975) | Teleport to [23184.6,19754.4,0](GPS: 231197)" 11:21:55 Warning Message: Picture picturething not found 11:22:03 "CHECK: [""B_Truck_01_transport_EPOCH"",2500,2.2,""cfgvehicles"",""HEMTT Transport"",""The Heavy Expanded Mobility Tactical Truck is an 8x8 diesel-powered off-road truck. It serves as a standard heavy transport vehicle for BLUFOR armies. There are several versions covering the basic transport functions: cargo, refuel, medical, repair, and ammo resupply."",""\a3\soft_f_beta\Truck_01\Data\UI\Truck_01_Base_CA.paa"","""","""",17cd8358080# 2300910: truck_01_transport_f.p3d]" 11:22:22 "DEBUG: _spawnUnits []" 11:23:20 "1h 21min | MegaZ(76561197990778975) | Teleport to [29731.6,13348.9,0](GPS: 297133)" 11:23:47 "1h 22min | MegaZ(76561197990778975) | Teleport to [29123.9,14555,0](GPS: 291145)" 11:24:15 "1h 22min | MegaZ(76561197990778975) | Teleport to [27077.7,17697.5,0](GPS: 270176)" 11:25:10 "1h 23min | MegaZ(76561197990778975) | Teleport to [23182.9,19761.4,0](GPS: 231197)" 11:25:20 Warning Message: Picture picturething not found 11:25:27 "CHECK: [""B_Truck_01_mover_EPOCH"",2500,2.2,""cfgvehicles"",""HEMTT"",""The Heavy Expanded Mobility Tactical Truck is an 8x8 diesel-powered off-road truck. It serves as a standard heavy transport vehicle for BLUFOR armies. There are several versions covering the basic transport functions: cargo, refuel, medical, repair, and ammo resupply."",""\a3\soft_f_gamma\Truck_01\Data\UI\Truck_01_mover_F_CA.paa"","""","""",17cd4b1a040# 2310644: truck_01_mover_f.p3d]" 11:25:42 Warning Message: Picture picturething not found 11:25:51 "CHECK: [""B_Truck_01_mover_EPOCH"",2500,2.2,""cfgvehicles"",""HEMTT"",""The Heavy Expanded Mobility Tactical Truck is an 8x8 diesel-powered off-road truck. It serves as a standard heavy transport vehicle for BLUFOR armies. There are several versions covering the basic transport functions: cargo, refuel, medical, repair, and ammo resupply."",""\a3\soft_f_gamma\Truck_01\Data\UI\Truck_01_mover_F_CA.paa"","""","""",17cd4b1a040# 2310644: truck_01_mover_f.p3d]" 11:26:03 "1h 24min | MegaZ(76561197990778975) | Deleting B_Truck_01_mover_EPOCH @231197.." 11:26:26 EPE manager release (0|150|0) 11:26:28 Shutdown normally 11:26:32 SimulWeather - Cloud Renderer - noise texture file is not specified! 11:26:32 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 11:26:32 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 11:26:32 Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_polo_6_Fslow"; Shape: "a3\characters_f\civil\c_citizen4.p3d";] 11:26:32 Deinitialized shape [Class: "VirtualMan_EPOCH"; Shape: "a3\characters_f\common\invisibleman.p3d";] 11:26:32 Deinitialized shape [Class: "O_T_Officer_F"; Shape: "a3\characters_f\opfor\o_officer.p3d";] 11:26:32 Deinitialized shape [Class: "C_Man_Paramedic_01_F"; Shape: "a3\characters_f_orange\uniforms\c_paramedic_01_f.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_scientist_Fslow"; Shape: "a3\characters_f\civil\c_citizen5.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_polo_4_Fslow"; Shape: "a3\characters_f\civil\c_citizen2.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie17slow"; Shape: "a3\characters_f\civil\c_citizen2.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie18walker"; Shape: "a3\characters_f\civil\c_citizen2.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_polo_4_Fwalker"; Shape: "a3\characters_f\civil\c_citizen2.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie19slow"; Shape: "a3\characters_f\civil\c_citizen2.p3d";] 11:26:32 Deinitialized shape [Class: "I_C_Soldier_Bandit_1_F"; Shape: "a3\characters_f_exp\syndikat\i_c_soldier_bandit_1_f.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_journalist_Fslow"; Shape: "a3\characters_f_epc\civil\c_journalist.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_hunter_1_Fwalker"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_hunter_1_Fslow"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_Oresteswalker"; Shape: "a3\characters_f\civil\c_orestes.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_02_f_1_1walker"; Shape: "a3\characters_f\blufor\b_soldier_02.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_02_f_1walker"; Shape: "a3\characters_f\blufor\b_soldier_02.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_02_fwalker"; Shape: "a3\characters_f\blufor\b_soldier_02.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_02_f_1slow"; Shape: "a3\characters_f\blufor\b_soldier_02.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_02_f_1_1slow"; Shape: "a3\characters_f\blufor\b_soldier_02.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_polo_2_Fwalker"; Shape: "a3\characters_f\civil\c_citizen1.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_polo_2_Fslow"; Shape: "a3\characters_f\civil\c_citizen1.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie30slow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie26walker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_w_worker_Fslow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie28slow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_04_fslow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_w_worker_Fwalker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_04_f_1slow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_04_f_1_1slow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie29walker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie27slow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie30walker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie29slow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie27walker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_04_fwalker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_04_f_1_1walker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_04_f_1walker"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie32slow"; Shape: "a3\characters_f\common\coveralls.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie22walker"; Shape: "a3\characters_f\civil\c_citizen3.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie21walker"; Shape: "a3\characters_f\civil\c_citizen3.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_polo_5_Fwalker"; Shape: "a3\characters_f\civil\c_citizen3.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie22slow"; Shape: "a3\characters_f\civil\c_citizen3.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie23walker"; Shape: "a3\characters_f\civil\c_citizen3.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie20walker"; Shape: "a3\characters_f\civil\c_citizen3.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_03_f_1_1slow"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_lite_F_1walker"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_lite_Fslow"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_03_f_1slow"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_03_f_1walker"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_03_f_1_1walker"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_lite_Fwalker"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_03_fwalker"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieB_Soldier_03_fslow"; Shape: "a3\characters_f\blufor\b_soldier_03.p3d";] 11:26:32 Deinitialized shape [Class: "I_ghillie_ard_F"; Shape: "a3\characters_f_mark\indep\i_fullghillie_f.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_CamoBubblegum_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\female_camo.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_RadiationSuit_M"; Shape: "x\addons\a3_epoch_community\epoch_radsuit\radiation_suit_full_epoch.p3d";] 11:26:32 Deinitialized shape [Class: "O_V_Soldier_TL_ghex_F"; Shape: "a3\characters_f_exp\opfor\o_viper.p3d";] 11:26:32 Deinitialized shape [Class: "O_V_Soldier_TL_hex_F"; Shape: "a3\characters_f_exp\opfor\o_viper.p3d";] 11:26:32 Deinitialized shape [Class: "O_G_Soldier_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_guerrilla1_1.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_wetsuitB_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\female_wetsuit.p3d";] 11:26:32 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 11:26:32 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 11:26:32 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 11:26:32 Deinitialized shape [Class: "O_ghillie_lsh_F"; Shape: "a3\characters_f_mark\opfor\o_fullghillie_f.p3d";] 11:26:32 Deinitialized shape [Class: "O_T_ghillie_tna_F"; Shape: "a3\characters_f_mark\opfor\o_fullghillie_f.p3d";] 11:26:32 Deinitialized shape [Class: "O_ghillie_sard_F"; Shape: "a3\characters_f_mark\opfor\o_fullghillie_f.p3d";] 11:26:32 Deinitialized shape [Class: "O_ghillie_ard_F"; Shape: "a3\characters_f_mark\opfor\o_fullghillie_f.p3d";] 11:26:32 Deinitialized shape [Class: "I_Survivor_F"; Shape: "a3\characters_f_beta\indep\ia_soldier_01.p3d";] 11:26:32 Deinitialized shape [Class: "I_soldier_F"; Shape: "a3\characters_f_beta\indep\ia_soldier_01.p3d";] 11:26:32 Deinitialized shape [Class: "O_soldierU_F"; Shape: "a3\characters_f\opfor\o_soldier_01.p3d";] 11:26:32 Deinitialized shape [Class: "O_Soldier_F"; Shape: "a3\characters_f\opfor\o_soldier_01.p3d";] 11:26:32 Deinitialized shape [Class: "O_helipilot_F"; Shape: "a3\characters_f\common\pilot_f.p3d";] 11:26:32 Deinitialized shape [Class: "O_G_Soldier_M_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_guerrilla3_1.p3d";] 11:26:32 Deinitialized shape [Class: "I_Soldier_EPOCH"; Shape: "a3\characters_f_beta\indep\ia_soldier_02.p3d";] 11:26:32 Deinitialized shape [Class: "I_G_Soldier_AR_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_guerrilla2_1.p3d";] 11:26:32 Deinitialized shape [Class: "O_G_Soldier_AR_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_guerrilla2_1.p3d";] 11:26:32 Deinitialized shape [Class: "O_G_medic_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_guerrilla2_1.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Male_F"; Shape: "a3\characters_f\common\basicbody.p3d";] 11:26:32 Deinitialized shape [Class: "Underwear_F"; Shape: "a3\characters_f\common\basicbody.p3d";] 11:26:32 Deinitialized shape [Class: "O_T_Sniper_F"; Shape: "a3\characters_f\opfor\o_sniper.p3d";] 11:26:32 Deinitialized shape [Class: "O_sniper_F"; Shape: "a3\characters_f\opfor\o_sniper.p3d";] 11:26:32 Deinitialized shape [Class: "C_Driver_1_black_F"; Shape: "a3\characters_f_kart\civil\c_driver_f.p3d";] 11:26:32 Deinitialized shape [Class: "C_Driver_1_red_F"; Shape: "a3\characters_f_kart\civil\c_driver_f.p3d";] 11:26:32 Deinitialized shape [Class: "C_Driver_3_F"; Shape: "a3\characters_f_kart\civil\c_driver_f.p3d";] 11:26:32 Deinitialized shape [Class: "C_Driver_1_blue_F"; Shape: "a3\characters_f_kart\civil\c_driver_f.p3d";] 11:26:32 Deinitialized shape [Class: "O_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";] 11:26:32 Deinitialized shape [Class: "I_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Sapper_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\sapper_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_SapperG_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\sapper_character.p3d";] 11:26:32 Deinitialized shape [Class: "C_Marshal_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie25slow"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie24slow"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie24walker"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 11:26:32 Deinitialized shape [Class: "C_Man_casual_1_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie25walker"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_polo_1_Fslow"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 11:26:32 Deinitialized shape [Class: "C_man_shorts_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 11:26:32 Deinitialized shape [Class: "I_C_Soldier_Para_1_F"; Shape: "a3\characters_f_exp\syndikat\i_c_soldier_para_1_f.p3d";] 11:26:32 Deinitialized shape [Class: "I_G_Soldier_TL_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_leader.p3d";] 11:26:32 Deinitialized shape [Class: "O_G_Soldier_TL_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_leader.p3d";] 11:26:32 Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Black_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";] 11:26:32 Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Vrana_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlack10_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn21_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansPatched2_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn16_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansPatched9_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansPatched12_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlack4_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn2_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn16_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn18_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn6_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn17_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn9_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn5_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansPatched1_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn9_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn1_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlack19_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn14_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlack8_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn2_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlack16_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansPatched6_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansArBrn7_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn13_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 11:26:32 Deinitialized shape [Class: "I_G_Soldier_LAT_F"; Shape: "a3\characters_f_bootcamp\guerrilla\ig_guerrilla_6_1.p3d";] 11:26:32 Deinitialized shape [Class: "O_G_Soldier_LAT_F"; Shape: "a3\characters_f_bootcamp\guerrilla\ig_guerrilla_6_1.p3d";] 11:26:32 Deinitialized shape [Class: "I_G_resistanceLeader_F"; Shape: "a3\characters_f_epb\guerrilla\ig_guerrilla4_1.p3d";] 11:26:32 Deinitialized shape [Class: "C_man_p_fugitive_F"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_1walker"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_pilot_Fwalker"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie15walker"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_Nikoswalker"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_pilot_Fslow"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombie15slow"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_1slow"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 Deinitialized shape [Class: "RyanZombieC_man_p_fugitive_Fwalker"; Shape: "a3\characters_f\civil\c_poor.p3d";] 11:26:32 c:\bis\source\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing! 11:26:36 Extensions: Quote Share this post Link to post Share on other sites
megaz 18 Report post Posted October 5, 2018 Server RPT ===================================================================== == C:\TCAFiles\Users\JohnT1\65924\arma3server.exe == C:\TCAFiles\Users\JohnT1\65924\arma3server.exe -ip=194.147.120.63 -port=2302 -profiles=Arma3Config -name=Arma3Config -config=Arma3Config\config.cfg -cfg=Arma3Config\arma3.cfg -servermod="@EpochHive;@infiSTAR_A3;@A3EAI;@Reduced Weapon Sway;" -mod="@Epoch;@Australia 5.0.9;@Ryanzombies;@CUP_Terrains_Core;@CBA_A3;@CUP Units;@CUP Vehicles;@CUP Weapons;" -autoInit -loadMissionToMemory Original output filename: Arma3Retail_Server Exe timestamp: 2018/07/24 22:39:33 Current time: 2018/10/05 10:00:10 Type: Public Build: Stable Version: 1.84.144923 Allocator: C:\TCAFiles\Users\JohnT1\65924\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0] PhysMem: 96 GiB, VirtMem : 4.0 GiB, AvailPhys : 32 GiB, AvailVirt : 3.9 GiB, AvailPage : 69 GiB ===================================================================== 10:00:10 SteamAPI initialization failed. Steam features won't be accessible! 10:00:10 Cannot register unknown string STR_3DEN_CAMERA_NAME 10:00:10 Cannot register unknown string STR_DIFF_SCENE_ONLY 10:00:10 Cannot register unknown string STR_DIFF_SCENE_AND_MAP 10:00:10 Initializing stats manager. 10:00:10 Stats config disabled. 10:00:10 sessionID: 54ffce9ae13e5fcac46391df8db0661f63e3010d 10:01:16 Unexpected stringtable format inside <Text ID="STR_CUP_lib_cz805"><Russian> 10:01:16 Item str_dn_Mk19_Gun_Bag listed twice 10:01:16 Item str_dn_Mk19_Tripod_Bag listed twice 10:01:16 Item str_dn_Mk19_Tripod_Bag listed twice 10:01:16 Unsupported language English in stringtable 10:01:16 Item STR_CUP_DN_GSh301 listed twice 10:01:16 Item STR_CUP_dss_Soviet_Era_Tanker_Helmet listed twice 10:01:17 Item str_dn_2b14 listed twice 10:01:17 Item str_mn_pg9 listed twice 10:01:17 Item str_mn_og9 listed twice 10:01:17 Item str_mn_igla listed twice 10:01:17 Item str_dn_ags30 listed twice 10:01:17 Item str_mn_at13 listed twice 10:01:17 Item str_mn_9k32 listed twice 10:01:17 Item str_dn_at13 listed twice 10:01:17 Item str_dn_at13launchersingle listed twice 10:01:17 Item STR_DN_D30 listed twice 10:01:17 Item str_dn_dshkm listed twice 10:01:17 Item str_dn_dshkm_minitripod listed twice 10:01:17 Item str_lib_m2_mg listed twice 10:01:17 Item str_lib_m119 listed twice 10:01:17 Item str_lib_kord listed twice 10:01:17 Item str_lib_dshkm listed twice 10:01:17 Item STR_LIB_D30 listed twice 10:01:17 Item str_lib_ags30 listed twice 10:01:17 Item str_dn_igla_aa_pod_east listed twice 10:01:17 Item str_dn_igla_twice listed twice 10:01:17 Item str_dn_kord listed twice 10:01:17 Item str_dn_kord_low listed twice 10:01:17 Item str_dn_m119 listed twice 10:01:17 Item str_dn_tow_tripod listed twice 10:01:17 Item str_dn_tow listed twice 10:01:17 Item str_dn_spg9 listed twice 10:01:17 Item str_dn_m252 listed twice 10:01:17 Item str_dn_m2hd_minitripod listed twice 10:01:17 Item str_dn_m2_mg listed twice 10:01:17 Item str_dn_mk19_tripod listed twice 10:01:17 Item str_dn_zu23 listed twice 10:01:17 Item str_lib_2b14 listed twice 10:01:17 Item str_lib_at13 listed twice 10:01:17 Item str_lib_m252 listed twice 10:01:17 Item str_lib_spg9 listed twice 10:01:17 Unsupported language English in stringtable 10:01:17 Item STR_EP1_ULB_actionX listed twice 10:01:17 Item str_ep1_paradrop listed twice 10:01:17 Item str_ep1_mortar listed twice 10:01:17 Item str_ep1_menu_title listed twice 10:01:17 Item str_ep1_cancel_support listed twice 10:01:17 Item str_ep1_artillery listed twice 10:01:17 Item str_ep1_ammo_drop listed twice 10:01:17 Item str_ep1_airstrike listed twice 10:01:17 Item STR_EP1_MPA_UI_ItemInfoGUI listed twice 10:01:17 Item STR_EP1_MPA_UI_SpectateGUI listed twice 10:01:17 Item STR_EP1_MPA_UI_SpectateGUI_Title listed twice 10:01:17 Item STR_EP1_MPA_UI_Action_QuickMenu listed twice 10:01:17 Item STR_EP1_MPA_UI_Action_FastTravel listed twice 10:01:17 Item STR_EP1_MPA_UI_Action_Select listed twice 10:01:17 Item STR_EP1_MPA_UI_DebriefingGUI listed twice 10:01:17 Item STR_EP1_MPA_UI_DebriefingGUI_Title listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickSelectItemGUI_Title listed twice 10:01:17 Item STR_EP1_MPA_UI_DebriefingGUI_TitlePlayers listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterFaction_toolTip listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterSet_toolTip listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterType_toolTip listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickSelectItemGUI_SelectButton listed twice 10:01:17 Item STR_EP1_MPA_UI_ShowRankingsGUI_Title listed twice 10:01:17 Item STR_EP1_MPA_UI_Action_ViewInfo listed twice 10:01:17 Item STR_EP1_MPA_UI_ShowRankingsGUI_CloseButton listed twice 10:01:17 Item STR_EP1_MPA_UI_ShowRankingsGUI_CloseButton_toolTip listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_long1 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_long2 listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickSelectItemGUI_CancelButton_toolTip listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_long3 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_long4 listed twice 10:01:17 Item STR_EP1_MPA_UI_VoteMenu1 listed twice 10:01:17 Item STR_EP1_MPA_UI_VoteMenu2 listed twice 10:01:17 Item STR_EP1_MPA_UI_VoteMenu3 listed twice 10:01:17 Item STR_EP1_MPA_UI_VoteMenu4 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_long5 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_long6 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_short1 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_short2 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_short3 listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickMenu1 listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickMenu2 listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickMenu3 listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickMenu4 listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickMenu5 listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickMenu6 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_short4 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_short5 listed twice 10:01:17 Item STR_EP1_MPA_UI_Brochure_short6 listed twice 10:01:17 Item STR_EP1_MPA_UI_DebriefingGUI_Rankings_Item listed twice 10:01:17 Item STR_EP1_MPA_UI_DebriefingGUI_Rankings_Name listed twice 10:01:17 Item STR_EP1_MPA_UI_DebriefingGUI_TitleGoal listed twice 10:01:17 Item STR_EP1_MPA_UI_DebriefingGUI_TitleTeam listed twice 10:01:17 Item STR_EP1_MPA_UI_FastTravel listed twice 10:01:17 Item STR_EP1_MPA_UI_ItemInfoGUI_Loading listed twice 10:01:17 Item STR_EP1_MPA_UI_ItemInfoGUI_Selected listed twice 10:01:17 Item STR_EP1_MPA_UI_QuickSelectItemGUI_FilterFaction listed twice 10:01:17 Item STR_EP1_MPA_Area_Entrance listed twice 10:01:17 Item STR_EP1_MPA_Hint1 listed twice 10:01:17 Item STR_EP1_MPA_Hint2 listed twice 10:01:17 Item STR_EP1_MPA_Hint3 listed twice 10:01:17 Item STR_EP1_MPA_Hint4 listed twice 10:01:17 Item STR_EP1_MPA_Hint5 listed twice 10:01:17 Item STR_EP1_MPA_Hint6 listed twice 10:01:17 Item STR_EP1_MPA_Hint7 listed twice 10:01:17 Item STR_EP1_MPA_Hint8 listed twice 10:01:17 Item STR_EP1_MPA_Hint9 listed twice 10:01:17 Item STR_EP1_MPA_Hint10 listed twice 10:01:17 Item STR_EP1_MPA_Hint11 listed twice 10:01:17 Item STR_EP1_MPA_Hint12 listed twice 10:01:17 Item STR_EP1_MPA_Hint13 listed twice 10:01:17 Item STR_EP1_MPA_Hint_FastTravel listed twice 10:01:17 Item STR_EP1_MPA_Hint_Respawn listed twice 10:01:17 Item STR_EP1_MPA_Hint14 listed twice 10:01:17 Item STR_EP1_MPA_Hint15 listed twice 10:01:17 Item STR_EP1_MPA_Hint_Preparing listed twice 10:01:17 Item STR_EP1_MPA_Hint_Challenge listed twice 10:01:17 Item STR_EP1_MPA_Hint16 listed twice 10:01:17 Item STR_EP1_MPA_Hint17 listed twice 10:01:17 Item STR_EP1_MPA_Hint18 listed twice 10:01:17 Item STR_EP1_MPA_Hint19 listed twice 10:01:17 Item STR_EP1_MPA_Hint20 listed twice 10:01:17 Item STR_EP1_MPA_Hint21 listed twice 10:01:17 Item STR_EP1_MPA_Hint22 listed twice 10:01:17 Item STR_EP1_MPA_Hint23 listed twice 10:01:17 Item STR_EP1_MPA_Hint24 listed twice 10:01:17 Item STR_EP1_MPA_Hint25 listed twice 10:01:17 Item STR_EP1_MPA_Hint26 listed twice 10:01:17 Item STR_EP1_MPA_Hint27 listed twice 10:01:17 Item STR_EP1_MPA_Hint28 listed twice 10:01:17 Item STR_EP1_MPA_Hint29 listed twice 10:01:17 Item STR_EP1_MPA_Hint30 listed twice 10:01:17 Item STR_EP1_MPA_Hint31 listed twice 10:01:17 Item STR_EP1_MPA_Hint32 listed twice 10:01:17 Item STR_EP1_MPA_Hint33 listed twice 10:01:17 Item STR_EP1_MPA_Hint34 listed twice 10:01:17 Item STR_EP1_MPA_Hint35 listed twice 10:01:17 Item STR_EP1_MPA_Hint36 listed twice 10:01:17 Item STR_EP1_MPA_Hint37 listed twice 10:01:17 Item STR_EP1_MPA_Hint38 listed twice 10:01:17 Item STR_EP1_MPA_Hint39 listed twice 10:01:17 Item STR_EP1_MPA_Hint40 listed twice 10:01:17 Item STR_EP1_MPA_Hint41 listed twice 10:01:17 Item STR_EP1_MPA_Hint42 listed twice 10:01:17 Item STR_EP1_MPA_Hint43 listed twice 10:01:17 Item STR_EP1_MPA_Hint44 listed twice 10:01:17 Item STR_EP1_MPA_Hint45 listed twice 10:01:17 Item STR_EP1_MPA_Hint46 listed twice 10:01:17 Item STR_EP1_MPA_Hint47 listed twice 10:01:17 Item STR_EP1_MPA_Hint48 listed twice 10:01:17 Item STR_EP1_MPA_Hint49 listed twice 10:01:17 Item STR_EP1_MPA_Hint50 listed twice 10:01:17 Item STR_EP1_MPA_Hint51 listed twice 10:01:17 Item STR_EP1_MPA_Hint52 listed twice 10:01:17 Item STR_EP1_MPA_Hint53 listed twice 10:01:17 Item STR_EP1_MPA_Hint54 listed twice 10:01:17 Item STR_EP1_MPA_Hint55 listed twice 10:01:17 Item STR_EP1_MPA_Hint56 listed twice 10:01:17 Item STR_EP1_MPA_Hint57 listed twice 10:01:17 Item STR_EP1_MPA_Hint58 listed twice 10:01:17 Item STR_EP1_MPA_Hint59 listed twice 10:01:17 Item STR_EP1_MPA_Hint60 listed twice 10:01:17 Item STR_EP1_MPA_Hint61 listed twice 10:01:17 Item STR_EP1_MPA_Hint62 listed twice 10:01:17 Item STR_EP1_MPA_Hint63 listed twice 10:01:17 Item STR_EP1_MPA_Hint64 listed twice 10:01:17 Item STR_EP1_MPA_Hint65 listed twice 10:01:17 Item STR_EP1_MPA_Hint66 listed twice 10:01:17 Item STR_EP1_MPA_Hint67 listed twice 10:01:17 Item STR_EP1_MPA_Hint68 listed twice 10:01:17 Item STR_EP1_MPA_Hint69 listed twice 10:01:17 Item STR_EP1_MPA_ArmoryMPManager listed twice 10:01:17 Item STR_EP1_MPA_Area_Static listed twice 10:01:17 Item STR_EP1_MPA_briefingDescription listed twice 10:01:17 Item STR_EP1_MPA_Area_Tracked listed twice 10:01:17 Item STR_EP1_MPA_Briefing_Success listed twice 10:01:17 Item STR_EP1_MPA_Area_Wheeled listed twice 10:01:17 Item STR_EP1_MPA_Briefing_Failure listed twice 10:01:17 Item STR_EP1_MPA_ARMEX_task listed twice 10:01:17 Item STR_EP1_MPA_Briefing_End1 listed twice 10:01:17 Item STR_EP1_MPA_Briefing_End2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Gather listed twice 10:01:17 Item STR_EP1_MPA_Meta_Gather_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_Gather_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Gather_textTask2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Gather_textTask3 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Airtime listed twice 10:01:17 Item STR_EP1_MPA_Meta_Airtime_Current listed twice 10:01:17 Item STR_EP1_MPA_Meta_Airtime_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_MinimumSpeed_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_Airtime_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_MinimumSpeed_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Night listed twice 10:01:17 Item STR_EP1_MPA_Meta_Night_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_Night_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Gather_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Airtime_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Rush listed twice 10:01:17 Item STR_EP1_MPA_Meta_Rush_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_Rush_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Night_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Night_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Rush_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Rush_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_MinimumSpeed_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_AllAboard listed twice 10:01:17 Item STR_EP1_MPA_Meta_AllAboard_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_ProtectPlayer listed twice 10:01:17 Item STR_EP1_MPA_Meta_ProtectPlayer_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_ProtectPlayer_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_AllAboard_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_AllAboard_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_ProtectPlayer_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_ProtectPlayer_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_AllAboard_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_AllAboard_textTask2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Ceiling_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Ceiling_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_RaceToPosition listed twice 10:01:17 Item STR_EP1_MPA_Meta_RaceToPosition_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_RaceToPosition_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Stop_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_Stop_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Ceiling_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Ceiling_textTask2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Stop_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_RaceToPosition_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_RaceToPosition_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Completed listed twice 10:01:17 Item STR_EP1_MPA_Meta_Failed listed twice 10:01:17 Item STR_EP1_MPA_Meta_GetAway_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_GetAway_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_GetAway_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_HighSpeed_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_HighSpeed_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_HighSpeed_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Land_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_Land_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_Land_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_OneEighty_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_SkyHigh_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_SkyHigh_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_OneEighty_textLog listed twice 10:01:17 Item STR_EP1_MPA_Meta_OneEighty_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Meta_YourMetaChal listed twice 10:01:17 Item STR_EP1_MPA_Meta_SkyHigh_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_Aborted listed twice 10:01:17 Item STR_EP1_MPA_Chal_PlayersDisconnected listed twice 10:01:17 Item STR_EP1_MPA_Chal_AttackLocation_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_AttackLocation_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_AttackLocation_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_CheckpointRace_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_DefendLocation_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_CheckpointRace_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_DefendLocation_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_DefendLocation_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_DefendLocation_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Chal_Completion listed twice 10:01:17 Item STR_EP1_MPA_Chal_ConvoyAmbush listed twice 10:01:17 Item STR_EP1_MPA_Chal_ConvoyAmbush_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_ConvoyAmbush_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Chal_ConvoyAmbush_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_ConvoyAmbush_textDebriefing3 listed twice 10:01:17 Item STR_EP1_MPA_Chal_ConvoyAmbush_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_DeathMatch_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_DeathMatch_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Chal_DeathMatch_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_Triathlon listed twice 10:01:17 Item STR_EP1_MPA_Chal_Triathlon_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_DeathMatch_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_DeathMatch_textTask2 listed twice 10:01:17 Item STR_EP1_MPA_Chal_Survival_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_Survival_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_FastTraveled listed twice 10:01:17 Item STR_EP1_MPA_Chal_ItemsUsed listed twice 10:01:17 Item STR_EP1_MPA_Chal_Survival_textDebriefing1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_Survival_textDebriefing2 listed twice 10:01:17 Item STR_EP1_MPA_Chal_LastManStanding listed twice 10:01:17 Item STR_EP1_MPA_Chal_LastManStanding_textLog listed twice 10:01:17 Item STR_EP1_MPA_Chal_LastManStanding_textTask1 listed twice 10:01:17 Item STR_EP1_MPA_Chal_PlayersFastTraveled listed twice 10:01:17 Item STR_EP1_MPA_Chal_Triathlon_Checkpoint listed twice 10:01:17 Item STR_EP1_MPA_Chal_Total listed twice 10:01:17 Item STR_EP1_MPA_Chal_Points listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_hint1 listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_taskShort1 listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_hint2 listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_taskShort2 listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_task1 listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_taskShort3 listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_task2 listed twice 10:01:17 Item STR_EP1_MPA_Tutorial_task3 listed twice 10:01:17 Item STR_EP1_MPA_Briefing_End3 listed twice 10:01:17 Item STR_EP1_MPA_Briefing_End4 listed twice 10:01:17 Item STR_EP1_MPA_Votes_Broadcast1 listed twice 10:01:17 Item STR_EP1_MPA_Votes_Broadcast2 listed twice 10:01:17 Item STR_EP1_MPA_Votes_Broadcast3 listed twice 10:01:17 Item STR_EP1_MPA_Votes_Broadcast4 listed twice 10:01:17 Item STR_EP1_MPA_ARMEX_taskShort listed twice 10:01:17 Item STR_EP1_MPA_ArmoryManager listed twice 10:01:17 Item STR_EP1_MPA_Type_Tracked listed twice 10:01:17 Item STR_EP1_MPA_Misc_FlagCarrierARMEX listed twice 10:01:17 Item STR_EP1_MPA_Misc_ConcreteWall listed twice 10:01:17 Item STR_EP1_MPA_Misc_InfoBoard listed twice 10:01:17 Item STR_EP1_MPA_Misc_Loudspeakers listed twice 10:01:17 Item STR_EP1_MPA_Misc_RedLight listed twice 10:01:17 Item STR_EP1_MPA_Misc_EntranceGate listed twice 10:01:17 Item STR_EP1_MPA_Misc_Direction listed twice 10:01:17 Item STR_EP1_MPA_Misc_PlasticPole listed twice 10:01:17 Item STR_EP1_MPA_Misc_Laptop listed twice 10:01:17 Item STR_EP1_MPA_Type_Wheeled listed twice 10:01:17 Item STR_EP1_MPA_briefingName listed twice 10:01:17 Item STR_EP1_MPA_Broadcast2 listed twice 10:01:17 Item STR_EP1_MPA_Broadcast3 listed twice 10:01:17 Item STR_EP1_MPA_Broadcast4 listed twice 10:01:17 Item STR_EP1_MPA_Broadcast5 listed twice 10:01:17 Item STR_EP1_MPA_Broadcast6 listed twice 10:01:17 Item STR_EP1_MPA_Broadcast1 listed twice 10:01:17 Item STR_EP1_MPA_Broadcast7 listed twice 10:01:17 Item STR_EP1_MPA_Broadcast8 listed twice 10:01:17 Item STR_EP1_MPA_Log_diaryShort1 listed twice 10:01:17 Item STR_EP1_MPA_Log_Chal listed twice 10:01:17 Item STR_EP1_MPA_Log_diaryShort2 listed twice 10:01:17 Item STR_EP1_MPA_Log_diary1 listed twice 10:01:17 Item STR_EP1_MPA_Log_Chal_diary1 listed twice 10:01:17 Item STR_EP1_MPA_Log_diary2 listed twice 10:01:17 Item STR_EP1_MPA_Log_Chal_diaryShort1 listed twice 10:01:17 Item STR_EP1_MPA_Log_diary3 listed twice 10:01:17 Item STR_EP1_MPA_Log_diary4 listed twice 10:01:17 Item STR_EP1_MPA_Log_Meta listed twice 10:01:17 Item STR_EP1_MPA_Log_diary5 listed twice 10:01:17 Item STR_EP1_MPA_Log_Meta_diary1 listed twice 10:01:17 Item STR_EP1_MPA_Log_Meta1 listed twice 10:01:17 Item STR_EP1_MPA_Params_PointLimitAppliedTo listed twice 10:01:17 Item STR_EP1_MPA_Params_PointLimitAppliedTo_Team listed twice 10:01:17 Item STR_EP1_MPA_Params_PointLimit listed twice 10:01:17 Item STR_EP1_MPA_Params_TimeLimit listed twice 10:01:17 Item STR_EP1_MPA_Params_TimeLimit_30 listed twice 10:01:17 Item STR_EP1_MPA_Params_TimeLimit_60 listed twice 10:01:17 Item STR_EP1_MPA_Params_TimeLimit_90 listed twice 10:01:17 Item STR_EP1_MPA_Params_PointLimitAppliedTo_Individuals listed twice 10:01:17 Item STR_EP1_MPA_Params_TimeLimit_120 listed twice 10:01:17 Item STR_EP1_MPA_Params_TimeLimit_150 listed twice 10:01:17 Item str_ep1_location_zavarak listed twice 10:01:17 Item str_ep1_location_zargabad listed twice 10:01:17 Item str_ep1_location_taj listed twice 10:01:17 Item str_ep1_location_yarum listed twice 10:01:17 Item str_ep1_location_timurkalay listed twice 10:01:17 Item str_ep1_location_siahchub listed twice 10:01:17 Item str_ep1_location_thevilla listed twice 10:01:17 Item str_ep1_location_saresangpass listed twice 10:01:17 Item str_ep1_location_sultansafee listed twice 10:01:17 Item str_ep1_location_sanginakt listed twice 10:01:17 Item str_ep1_location_sagram listed twice 10:01:17 Item str_ep1_location_shukurkalay listed twice 10:01:17 Item str_ep1_location_shahbaz listed twice 10:01:17 Item str_ep1_location_shamali listed twice 10:01:17 Item str_ep1_location_safidab listed twice 10:01:17 Item str_ep1_location_rasmanmilitarybase listed twice 10:01:17 Item str_ep1_location_paresiahoilfield listed twice 10:01:17 Item str_ep1_location_naygulvalley listed twice 10:01:17 Item str_ep1_location_sakhee listed twice 10:01:17 Item str_ep1_location_narandarrepass listed twice 10:01:17 Item str_ep1_location_nar listed twice 10:01:17 Item str_ep1_location_nagara1oilfield listed twice 10:01:17 Item str_ep1_location_ravanay listed twice 10:01:17 Item str_ep1_location_mine listed twice 10:01:17 Item str_ep1_location_loymanaraoilfield listed twice 10:01:17 Item str_ep1_location_rasman listed twice 10:01:17 Item str_ep1_location_loymanaraairfield listed twice 10:01:17 Item str_ep1_location_nango listed twice 10:01:17 Item str_ep1_location_nur listed twice 10:01:17 Item str_ep1_location_lalezar listed twice 10:01:17 Item str_ep1_location_jangali listed twice 10:01:17 Item str_ep1_location_jabalassaraj listed twice 10:01:17 Item str_ep1_location_militarybase listed twice 10:01:17 Item str_ep1_location_hazardarakht listed twice 10:01:17 Item str_ep1_location_gurdur listed twice 10:01:17 Item str_ep1_location_nagara listed twice 10:01:17 Item str_ep1_location_durman listed twice 10:01:17 Item str_ep1_location_mulladoost listed twice 10:01:17 Item str_ep1_location_daryache listed twice 10:01:17 Item str_ep1_location_darbangpass listed twice 10:01:17 Item str_ep1_location_chinari listed twice 10:01:17 Item str_ep1_location_charsu listed twice 10:01:17 Item str_ep1_location_hazarbagh listed twice 10:01:17 Item str_ep1_location_loymanara listed twice 10:01:17 Item str_ep1_location_bamjahan listed twice 10:01:17 Item str_ep1_location_landay listed twice 10:01:17 Item str_ep1_location_balapass listed twice 10:01:17 Item str_ep1_location_firuzbaharv listed twice 10:01:17 Item str_ep1_location_khushab listed twice 10:01:17 Item str_ep1_location_aqtappa listed twice 10:01:17 Item str_ep1_location_karachinar listed twice 10:01:17 Item str_ep1_location_factory listed twice 10:01:17 Item str_ep1_location_kakaru listed twice 10:01:17 Item str_ep1_location_ahmaday listed twice 10:01:17 Item str_ep1_location_jilavur listed twice 10:01:17 Item str_ep1_location_abeshurdam listed twice 10:01:17 Item str_ep1_location_jaza listed twice 10:01:17 Item str_ep1_location_airport listed twice 10:01:17 Item str_ep1_location_anar listed twice 10:01:17 Item str_ep1_location_azizayt listed twice 10:01:17 Item str_ep1_location_imarat listed twice 10:01:17 Item STR_EP1_location_bandekirmiz listed twice 10:01:17 Item str_ep1_location_bastam listed twice 10:01:17 Item str_ep1_location_chakchak listed twice 10:01:17 Item str_ep1_location_huzrutimam listed twice 10:01:17 Item str_ep1_location_chaman listed twice 10:01:17 Item str_ep1_location_chardarakht listed twice 10:01:17 Item str_ep1_location_gospandi listed twice 10:01:17 Item str_ep1_location_falar listed twice 10:01:17 Item str_ep1_location_garmsar listed twice 10:01:17 Item str_ep1_location_feeruzabad listed twice 10:01:17 Item STR_EP1_takistan listed twice 10:01:17 Item str_ep1_location_garmarud listed twice 10:01:17 Item str_ep1_lib_uzi_sd listed twice 10:01:17 Item str_ep1_lib_uzi listed twice 10:01:17 Item str_ep1_lib_scar_l_std_mk4cqt listed twice 10:01:17 Item str_ep1_lib_scar_l_std_holo listed twice 10:01:17 Item str_ep1_lib_scar_l_std_eglm_tws listed twice 10:01:17 Item str_ep1_lib_scar_l_std_eglm_rco listed twice 10:01:17 Item str_ep1_lib_scar_l_cqc_holo listed twice 10:01:17 Item str_ep1_lib_scar_l_cqc_cco_sd listed twice 10:01:17 Item str_ep1_lib_scar_l_cqc listed twice 10:01:17 Item str_ep1_lib_scar_h_std_tws_sd listed twice 10:01:17 Item str_ep1_lib_scar_h_std_eglm_spect listed twice 10:01:17 Item str_ep1_lib_scar_h_lng_sniper_sd listed twice 10:01:17 Item str_ep1_lib_scar_h_lng_sniper listed twice 10:01:17 Item str_ep1_lib_scar_h_cqc_cco_sd listed twice 10:01:17 Item str_ep1_lib_scar_h_cqc_cco listed twice 10:01:17 Item str_ep1_lib_sa61 listed twice 10:01:17 Item str_ep1_lib_sa58p listed twice 10:01:17 Item str_ep1_lib_revolver_gold listed twice 10:01:17 Item str_ep1_lib_revolver listed twice 10:01:17 Item str_ep1_lib_mk13_ep1 listed twice 10:01:17 Item str_ep1_lib_maaws listed twice 10:01:17 Item str_ep1_lib_m79_ep1 listed twice 10:01:17 Item str_ep1_lib_m60a4 listed twice 10:01:17 Item str_ep1_lib_m47launcher_ep1 listed twice 10:01:17 Item str_ep1_lib_m32_ep1 listed twice 10:01:17 Item str_ep1_lib_m240_scoped_ep1 listed twice 10:01:17 Item str_ep1_lib_m14_ep1 listed twice 10:01:17 Item str_ep1_lib_m110_tws_ep1 listed twice 10:01:17 Item str_ep1_lib_leeenfield listed twice 10:01:17 Item str_ep1_lib_glock17 listed twice 10:01:17 Item str_ep1_lib_fn_fal listed twice 10:01:17 Item str_ep1_lib_aks_74_nspu listed twice 10:01:17 Item str_ep1_lib_aks_74_goshawk listed twice 10:01:17 Item str_ep1_lib_aks_74 listed twice 10:01:17 Item str_ep1_lib_ak_74_gl_kobra_library listed twice 10:01:17 Item str_ep1_dss_uzi_sd_ep1 listed twice 10:01:17 Item str_ep1_dss_uzi_ep1 listed twice 10:01:17 Item str_ep1_dss_scar_l_std_mk4cqt listed twice 10:01:17 Item str_ep1_dss_scar_l_std_holo listed twice 10:01:17 Item str_ep1_dss_scar_l_std_eglm_tws listed twice 10:01:17 Item str_ep1_dss_scar_l_std_eglm_rco listed twice 10:01:17 Item str_ep1_dss_scar_l_cqc_holo listed twice 10:01:17 Item str_ep1_dss_scar_l_cqc_cco_sd listed twice 10:01:17 Item str_ep1_dss_scar_l_cqc listed twice 10:01:17 Item str_ep1_dss_scar_h_std_tws_sd listed twice 10:01:17 Item str_ep1_dss_scar_h_std_eglm_spect listed twice 10:01:17 Item str_ep1_dss_scar_h_lng_sniper_sd listed twice 10:01:17 Item str_ep1_dss_scar_h_lng_sniper listed twice 10:01:17 Item str_ep1_dss_scar_h_cqc_cco_sd listed twice 10:01:17 Item str_ep1_dss_scar_h_cqc_cco listed twice 10:01:17 Item str_ep1_dss_sa61_ep1 listed twice 10:01:17 Item str_ep1_dss_sa58p_ep1 listed twice 10:01:17 Item str_ep1_dss_revolver_gold_ep1 listed twice 10:01:17 Item str_ep1_dss_revolver_ep1 listed twice 10:01:17 Item str_ep1_dss_mk13_ep1 listed twice 10:01:17 Item str_ep1_dss_maaws_hedp listed twice 10:01:17 Item str_ep1_dss_maaws_heat listed twice 10:01:17 Item str_ep1_dss_maaws listed twice 10:01:17 Item str_ep1_dss_m79_ep1 listed twice 10:01:17 Item str_ep1_dss_m60a4_ep1 listed twice 10:01:17 Item str_ep1_dss_m4a3_ep1 listed twice 10:01:17 Item str_ep1_dss_m4a3_cco_ep1 listed twice 10:01:17 Item str_ep1_dss_m47launcher_ep1 listed twice 10:01:17 Item str_ep1_dss_m32_ep1 listed twice 10:01:17 Item str_ep1_dss_m14_ep1 listed twice 10:01:17 Item str_ep1_dss_m110_tws_ep1 listed twice 10:01:17 Item str_ep1_dss_leeenfield listed twice 10:01:17 Item str_ep1_dss_irstrobe listed twice 10:01:17 Item str_ep1_dss_glock17_ep1 listed twice 10:01:17 Item str_ep1_dss_fn_fal listed twice 10:01:17 Item str_ep1_dss_dragon_ep1 listed twice 10:01:17 Item str_ep1_dss_aks_74_nspu listed twice 10:01:17 Item str_ep1_dss_aks_74_goshawk listed twice 10:01:17 Item str_ep1_dss_aks_74 listed twice 10:01:17 Item str_ep1_dss_ak_74_gl_kobra listed twice 10:01:17 Item str_ep1_dss_6rnd_smokeyellow_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_smokered_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_smoke_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_smokegreen_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_he_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_flareyellow_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_flarewhite_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_flarered_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_flaregreen_m203 listed twice 10:01:17 Item str_ep1_dss_6rnd_45acp listed twice 10:01:17 Item str_ep1_dss_6rnd_105mm_apds listed twice 10:01:17 Item str_ep1_dss_30rnd_9x19_uzi_sd listed twice 10:01:17 Item str_ep1_dss_30rnd_9x19_uzi listed twice 10:01:17 Item str_ep1_dss_30rnd_762x39_sa58 listed twice 10:01:17 Item str_ep1_dss_20rnd_762x51_sb_scar listed twice 10:01:17 Item str_ep1_dss_20rnd_762x51_fnfal listed twice 10:01:17 Item str_ep1_dss_20rnd_762x51_b_scar listed twice 10:01:17 Item str_ep1_dss_17rnd_9x19_glock17 listed twice 10:01:17 Item str_ep1_dss_12rnd_105mm_hesh listed twice 10:01:17 Item str_ep1_dss_10x_303 listed twice 10:01:17 Item str_ep1_dss_10rnd_b_765x17_ball listed twice 10:01:17 Item str_ep1_dss_100rnd_556x45_m249 listed twice 10:01:17 Item str_ep1_dn_yakb listed twice 10:01:17 Item str_ep1_dn_uzi_sd_ep1 listed twice 10:01:17 Item str_ep1_dn_uzi_ep1 listed twice 10:01:17 Item str_ep1_dn_usvehiclebox_ep1 listed twice 10:01:17 Item str_ep1_dn_us_uav_pack_ep1 listed twice 10:01:17 Item str_ep1_dn_usspecialweapons_ep1 listed twice 10:01:17 Item str_ep1_dn_us_patrol_pack_ep1 listed twice 10:01:17 Item str_ep1_dn_usordnancebox_ep1 listed twice 10:01:17 Item str_ep1_dn_uslaunchers_ep1 listed twice 10:01:17 Item str_ep1_dn_usbasicweapons_ep1 listed twice 10:01:17 Item str_ep1_dn_usbasicbag listed twice 10:01:17 Item str_ep1_dn_usbasicammunitionbox_ep1 listed twice 10:01:17 Item str_ep1_dn_us_backpack_ep1 listed twice 10:01:17 Item str_ep1_dn_us_assault_pack_ep1 listed twice 10:01:17 Item str_ep1_dn_unbasicweapons_ep1 listed twice 10:01:17 Item str_ep1_dn_unbasicammunitionbox_ep1 listed twice 10:01:17 Item str_ep1_dn_tripod_bag listed twice 10:01:17 Item str_ep1_dn_tow_tripod_us_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_tow_tripod_us_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_tkvehiclebox_ep1 listed twice 10:01:17 Item str_ep1_dn_tkspecialweapons_ep1 listed twice 10:01:17 Item str_ep1_dn_tk_rpg_backpack_ep1 listed twice 10:01:17 Item str_ep1_dn_tkordnancebox_ep1 listed twice 10:01:17 Item str_ep1_lib_scar_l_cqc_eglm_holo listed twice 10:01:17 Item str_ep1_dn_tklaunchers_ep1 listed twice 10:01:17 Item str_ep1_dn_tkbasicweapons_ep1 listed twice 10:01:17 Item str_ep1_dn_tkbasicammunitionbox_ep1 listed twice 10:01:17 Item str_ep1_dn_tk_assault_pack_ep1 listed twice 10:01:17 Item str_ep1_dn_tk_alice_pack_ep1 listed twice 10:01:17 Item str_ep1_dn_svd_nspu_ep1 listed twice 10:01:17 Item str_ep1_dn_svd_des_ep1 listed twice 10:01:17 Item str_ep1_dn_svd listed twice 10:01:17 Item str_ep1_dn_spg9_tk_ins_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_spg9_tk_gue_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_spg9_tk_gue_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_some_bag_assembleinfo listed twice 10:01:17 Item str_ep1_dn_some_bag listed twice 10:01:17 Item str_ep1_dn_smokelauncher listed twice 10:01:17 Item str_ep1_dn_sgmt listed twice 10:01:17 Item str_ep1_dn_scar_l_std_mk4cqt listed twice 10:01:17 Item str_ep1_dn_scar_l_std_holo listed twice 10:01:17 Item str_ep1_dn_scar_l_std_eglm_tws listed twice 10:01:17 Item str_ep1_dn_scar_l_std_eglm_rco listed twice 10:01:17 Item str_ep1_dn_scar_l_cqc_holo listed twice 10:01:17 Item str_ep1_dn_scar_l_cqc_eglm_holo listed twice 10:01:17 Item str_ep1_dn_scar_l_cqc_cco_sd listed twice 10:01:17 Item str_ep1_dn_scar_l_cqc listed twice 10:01:17 Item str_ep1_dn_scar_h_std_tws_sd listed twice 10:01:17 Item str_ep1_dn_scar_h_std_eglm_spect listed twice 10:01:17 Item str_ep1_dn_scar_h_lng_sniper_sd listed twice 10:01:17 Item str_ep1_dn_scar_h_lng_sniper listed twice 10:01:17 Item str_ep1_dn_scar_h_cqc_cco_sd listed twice 10:01:17 Item str_ep1_dn_scar_h_cqc_cco listed twice 10:01:17 Item str_ep1_dn_sa61_ep1 listed twice 10:01:17 Item str_ep1_dn_sa58v_rco_ep1 listed twice 10:01:17 Item str_ep1_dn_sa58v_ep1 listed twice 10:01:17 Item str_ep1_dn_sa58v_cco_ep1 listed twice 10:01:17 Item str_ep1_dn_sa58p_ep1 listed twice 10:01:17 Item str_ep1_dn_rpg7v listed twice 10:01:17 Item str_ep1_dn_rifle_m203muzzle listed twice 10:01:17 Item str_ep1_dss_scar_l_cqc_eglm_holo listed twice 10:01:17 Item str_ep1_dn_revolver_gold_ep1 listed twice 10:01:17 Item str_ep1_dn_revolver_ep1 listed twice 10:01:17 Item str_ep1_dn_mk_48_des_ep1 listed twice 10:01:17 Item str_ep1_dn_mk19_tripod_us_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_mk19_tripod_us_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_mk19 listed twice 10:01:17 Item str_ep1_dn_mk13_ep1 listed twice 10:01:17 Item str_ep1_dn_mg36_camo listed twice 10:01:17 Item str_ep1_dn_metis_tk_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_metis_tk_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_makarovsd listed twice 10:01:17 Item str_ep1_dn_maaws_hedp listed twice 10:01:17 Item str_ep1_dn_maaws_heat listed twice 10:01:17 Item str_ep1_dn_maaws listed twice 10:01:17 Item str_ep1_dn_m9sd listed twice 10:01:17 Item str_ep1_dn_m79_ep1 listed twice 10:01:17 Item str_ep1_dn_m68 listed twice 10:01:17 Item str_ep1_dn_m60a4_ep1 listed twice 10:01:17 Item str_ep1_dn_m4a3_rco_gl_ep1 listed twice 10:01:17 Item str_ep1_dn_m4a3_ep1 listed twice 10:01:17 Item str_ep1_dn_m4a3_cco_ep1 listed twice 10:01:17 Item str_ep1_dn_m47launcher_ep1 listed twice 10:01:17 Item str_ep1_dn_m32_ep1 listed twice 10:01:17 Item str_ep1_dn_m2staticmg_us_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_m2staticmg_us_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_m2hd_mini_tripod_us_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_m2hd_mini_tripod_us_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_m252_us_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_m252_us_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_m252_base listed twice 10:01:17 Item str_ep1_dn_m24_des_ep1 listed twice 10:01:17 Item str_ep1_dn_m249_tws_ep1 listed twice 10:01:17 Item str_ep1_dn_m249_m145_ep1 listed twice 10:01:17 Item str_ep1_dn_m240_scoped_ep1 listed twice 10:01:17 Item str_ep1_dn_m2 listed twice 10:01:17 Item str_ep1_dn_m14_ep1 listed twice 10:01:17 Item str_ep1_dn_m134_lowrof listed twice 10:01:17 Item str_ep1_dn_m134_highrof listed twice 10:01:17 Item str_ep1_dn_m134 listed twice 10:01:17 Item str_ep1_dn_m120 listed twice 10:01:17 Item str_ep1_dn_m110_tws_ep1 listed twice 10:01:17 Item str_ep1_dn_m110_nvg_ep1 listed twice 10:01:17 Item str_ep1_dn_m107_tws_ep1 listed twice 10:01:17 Item str_ep1_dn_leeenfield listed twice 10:01:17 Item str_ep1_dn_kpvt listed twice 10:01:17 Item str_ep1_dn_kord_un_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_kord_tk_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_kord_tk_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_kord_high_un_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_kord_high_tk_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_kord_high_tk_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_ir_strobe_target listed twice 10:01:17 Item str_ep1_dn_ir_strobe_marker listed twice 10:01:17 Item str_ep1_dn_grad listed twice 10:01:17 Item str_ep1_dn_glock17_ep1 listed twice 10:01:17 Item str_ep1_dn_gerbasicweapons_ep1 listed twice 10:01:17 Item str_ep1_dn_g36k_camo listed twice 10:01:17 Item str_ep1_dn_g36_c_sd_camo listed twice 10:01:17 Item str_ep1_dn_g36c_camo listed twice 10:01:17 Item str_ep1_dn_g36a_camo listed twice 10:01:17 Item str_ep1_dn_fn_fal_anpvs4 listed twice 10:01:17 Item str_ep1_dn_fn_fal listed twice 10:01:17 Item str_ep1_dn_ffarlauncher listed twice 10:01:17 Item str_ep1_dn_eglm listed twice 10:01:17 Item str_ep1_dn_dshkm_tk_ins_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_dshkm_tk_gue_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_dshkm_tk_gue_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_dshkm_mini_tripod_tk_ins_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_dshkm_mini_tripod_tk_gue_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_dshkm_mini_tripod_tk_gue_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_dshkm_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_dragon_ep1 listed twice 10:01:17 Item str_ep1_dn_de_backpack_specops_ep1 listed twice 10:01:17 Item str_ep1_dn_cz_vestpouch_ep1 listed twice 10:01:17 Item str_ep1_dn_czbasicweapons_ep1 listed twice 10:01:17 Item str_ep1_dn_cz_backpack_ep1 listed twice 10:01:17 Item str_ep1_dn_colt1911_ep1 listed twice 10:01:17 Item str_ep1_dn_cfgweapons_throw_irstrobe listed twice 10:01:17 Item str_ep1_dn_cfgweapons_binocular_vector listed twice 10:01:17 Item str_ep1_dn_cfgweapons_aks_74_nspu listed twice 10:01:17 Item str_ep1_dn_cfgweapons_aks_74_goshawk listed twice 10:01:17 Item str_ep1_dn_cfgweapons_ak_74_gl_kobra listed twice 10:01:17 Item str_ep1_dn_cfgweapons_ak_74_gl listed twice 10:01:17 Item str_ep1_dn_azp85 listed twice 10:01:17 Item str_ep1_dn_ags_un_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_ags_tk_ins_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_ags_tk_gue_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_ags_tk_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_ags_tk_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_ags_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_80mmlauncher listed twice 10:01:17 Item str_ep1_dn_6rnd_smokeyellow_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_smokered_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_smoke_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_smokegreen_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_he_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_flareyellow_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_flarewhite_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_flarered_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_flaregreen_m203 listed twice 10:01:17 Item str_ep1_dn_6rnd_45acp listed twice 10:01:17 Item str_ep1_dn_6rnd_105mm_apds listed twice 10:01:17 Item str_ep1_dn_57mmlauncher listed twice 10:01:17 Item str_ep1_dn_30rnd_9x19_uzi_sd listed twice 10:01:17 Item str_ep1_dn_30rnd_9x19_uzi listed twice 10:01:17 Item str_ep1_dn_30rnd_762x39_sa58 listed twice 10:01:17 Item str_ep1_dn_2b14_82mm_tk_ins_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_2b14_82mm_tk_gue_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_2b14_82mm_tk_bag_ep1_assembleinfo listed twice 10:01:17 Item str_ep1_dn_2b14_82mm_tk_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_2b14_82mm_bag_ep1 listed twice 10:01:17 Item str_ep1_dn_2a42_lowrof listed twice 10:01:17 Item str_ep1_dn_2a42_highrof listed twice 10:01:17 Item str_ep1_dn_2a14 listed twice 10:01:17 Item str_ep1_dn_24rnd_120mmhe_m120 listed twice 10:01:17 Item str_ep1_dn_21rnd_100mmheat_d10 listed twice 10:01:17 Item str_ep1_dn_20rnd_762x51_sb_scar listed twice 10:01:17 Item str_ep1_dn_20rnd_762x51_fnfal listed twice 10:01:17 Item str_ep1_dn_20rnd_762x51_b_scar listed twice 10:01:17 Item str_ep1_dn_17rnd_9x19_glock17 listed twice 10:01:17 Item str_ep1_dn_12rnd_105mm_hesh listed twice 10:01:17 Item str_ep1_dn_10x_303_leeenfield listed twice 10:01:18 Item str_ep1_dn_10rnd_b_765x17_ball listed twice 10:01:18 Item str_ep1_dn_100rnd_556x45_m249 listed twice 10:01:18 Item str_ep1_dn_20rnd_b_765x17_ball listed twice 10:01:18 Item str_ep1_dss_20rnd_b_765x17_ball listed twice 10:01:18 Item str_ep1_dss_aks74_kobra listed twice 10:01:18 Item str_ep1_dss_m4a3_cco listed twice 10:01:18 Item str_ep1_dss_m4a3_rco_gl listed twice 10:01:18 Item str_ep1_dss_metis listed twice 10:01:18 Item str_ep1_sn_sd listed twice 10:01:18 Item str_ep1_lib_aks74_kobra listed twice 10:01:18 Item str_ep1_sn_white listed twice 10:01:18 Item str_ep1_sn_he listed twice 10:01:18 Item str_ep1_lib_m4a3_cco listed twice 10:01:18 Item str_ep1_sn_yellow listed twice 10:01:18 Item str_ep1_lib_m4a3_rco_gl listed twice 10:01:18 Item str_ep1_sn_red listed twice 10:01:18 Item str_ep1_sn_green listed twice 10:01:18 Item str_ep1_sn_ap listed twice 10:01:18 Item str_ep1_sn_purple listed twice 10:01:18 Item str_ep1_sn_apfsds listed twice 10:01:18 Item str_ep1_sn_at listed twice 10:01:18 Item str_ep1_sn_orange listed twice 10:01:18 Item str_ep1_sn_pg7v listed twice 10:01:18 Item str_ep1_sn_pg7vl listed twice 10:01:18 Item str_ep1_sn_pg7vr listed twice 10:01:18 Item str_ep1_sn_blue listed twice 10:01:18 Item str_ep1_sn_frag listed twice 10:01:18 Item str_ep1_sn_heaa listed twice 10:01:18 Item str_ep1_sn_hedp listed twice 10:01:18 Item str_ep1_sn_og7 listed twice 10:01:18 Item str_ep1_lib_volha_tk_civ listed twice 10:01:18 Item str_ep1_lib_v3s listed twice 10:01:18 Item str_ep1_lib_suv listed twice 10:01:18 Item str_ep1_lib_s1203_tk_civ listed twice 10:01:18 Item str_ep1_lib_old_bike listed twice 10:01:18 Item str_ep1_lib_maz_543_scud listed twice 10:01:18 Item str_ep1_lib_landrover_spg9 listed twice 10:01:18 Item str_ep1_lib_landrover_special_cz listed twice 10:01:18 Item str_ep1_lib_landrover_mg listed twice 10:01:18 Item str_ep1_lib_landrover listed twice 10:01:18 Item str_ep1_lib_hmmwv_m998_crows_mk19_des listed twice 10:01:18 Item str_ep1_lib_hmmwv_m998_crows_m2_des listed twice 10:01:18 Item str_ep1_lib_hmmwv_m1151_m2_des listed twice 10:01:18 Item str_ep1_lib_hmmwv_m1035_des listed twice 10:01:18 Item str_ep1_lib_btr60_tk listed twice 10:01:18 Item str_ep1_lib_btr40_mg listed twice 10:01:18 Item str_ep1_lib_btr40 listed twice 10:01:18 Item str_ep1_lib_atv listed twice 10:01:18 Item str_ep1_dn_volha_tk_civ_base_ep1 listed twice 10:01:18 Item str_ep1_dn_volhalimo_tk_civ_ep1 listed twice 10:01:18 Item str_ep1_dn_volha_2_tk_civ_ep1 listed twice 10:01:18 Item str_ep1_dn_volha_1_tk_civ_ep1 listed twice 10:01:18 Item str_ep1_dn_v3s_repair_tk_gue_ep1 listed twice 10:01:18 Item str_ep1_dn_v3s_refuel_tk_gue_ep1 listed twice 10:01:18 Item str_ep1_dn_v3s_reammo_tk_gue_ep1 listed twice 10:01:18 Item str_ep1_dn_v3s_open_tk_ep1 listed twice 10:01:18 Item str_ep1_dn_v3s_open_tk_civ_ep1 listed twice 10:01:18 Item str_ep1_dn_suv_base_ep1 listed twice 10:01:18 Item str_ep1_dn_s1203_tk_civ_ep1 listed twice 10:01:18 Item str_ep1_dn_s1203_funeral_ep1 listed twice 10:01:18 Item str_ep1_dn_s1203_ambulance_ep1 listed twice 10:01:18 Item str_ep1_dn_old_moto_base listed twice 10:01:18 Item str_ep1_dn_old_bike_base_ep1 listed twice 10:01:18 Item str_ep1_dn_mtvrrepair_des_ep1 listed twice 10:01:18 Item str_ep1_dn_mtvrrefuel_des_ep1 listed twice 10:01:18 Item str_ep1_dn_mtvrreammo_des_ep1 listed twice 10:01:18 Item str_ep1_dn_mtvr_des_ep1 listed twice 10:01:18 Item str_ep1_dn_maz_543_scud_base_ep1 listed twice 10:01:18 Item str_ep1_dn_m1135_atgmv_ep1 listed twice 10:01:18 Item str_ep1_dn_m1133_mev_ep1 listed twice 10:01:18 Item str_ep1_dn_m1130_cv_ep1 listed twice 10:01:18 Item str_ep1_dn_m1129_mc_ep1 listed twice 10:01:18 Item str_ep1_dn_m1128_mgs_ep1 listed twice 10:01:18 Item str_ep1_dn_m1126_icv_mk19_ep1 listed twice 10:01:18 Item str_ep1_dn_m1126_icv_m2_ep1 listed twice 10:01:18 Item str_ep1_dn_m1126_icv_base_ep1 listed twice 10:01:18 Item str_ep1_dn_landrover_spg9_base_ep1 listed twice 10:01:18 Item str_ep1_dn_landrover_special_cz_ep1 listed twice 10:01:18 Item str_ep1_dn_landrover_mg_base_ep1 listed twice 10:01:18 Item str_ep1_dn_landrover_base listed twice 10:01:18 Item str_ep1_dn_lada2_tk_civ_ep1 listed twice 10:01:18 Item str_ep1_dn_lada1_tk_civ_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_terminal_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_m998_crows_mk19_des_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_m998_crows_m2_des_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_m998a2_sov_des_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_m1151_m2_des_base_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_m1035_des_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_avenger listed twice 10:01:18 Item str_ep1_dn_hilux1_civil_3_open_ep1 listed twice 10:01:18 Item str_ep1_dn_btr60_tk_ep1 listed twice 10:01:18 Item str_ep1_dn_btr40_mg_base_ep1 listed twice 10:01:18 Item str_ep1_dn_btr40_base_ep1 listed twice 10:01:18 Item str_ep1_dn_atv_base_ep1 listed twice 10:01:18 Item STR_EP1_dn_motorcycle listed twice 10:01:18 Item STR_EP1_dn_old_moto listed twice 10:01:18 Item STR_EP1_lib_motorcycle listed twice 10:01:18 Item str_ep1_dn_waterbasin_conc_ep1 listed twice 10:01:18 Item str_ep1_dn_uh60_wreck_ep1 listed twice 10:01:18 Item str_ep1_dn_training_target_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_sphere25cm_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_sphere10cm_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_sphere100cm_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_mp_op_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_mp_ind_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_mp_blu_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_circle_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_checkpoint_us_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_checkpoint_tk_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_arrow_down_large_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_arrow_down_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_1l_noentry_ep1 listed twice 10:01:18 Item str_ep1_dn_sign_1l_firstaid_ep1 listed twice 10:01:18 Item str_ep1_dn_misc_videoprojektor_platno listed twice 10:01:18 Item str_ep1_dn_misc_backpackheap_ep1 listed twice 10:01:18 Item str_ep1_dn_microphone3_ep1 listed twice 10:01:18 Item str_ep1_dn_microphone2_ep1 listed twice 10:01:18 Item str_ep1_dn_microphone1_ep1 listed twice 10:01:18 Item str_ep1_dn_map_for_briefing_ep1 listed twice 10:01:18 Item str_ep1_dn_land_radar_ep1 listed twice 10:01:18 Item str_ep1_dn_land_misc_cargo1eo_ep1 listed twice 10:01:18 Item str_ep1_dn_land_misc_cargo1e_ep1 listed twice 10:01:18 Item str_ep1_dn_land_hlidac_budka_ep1 listed twice 10:01:18 Item str_ep1_dn_land_fort_rampart_ep1 listed twice 10:01:18 Item str_ep1_dn_land_fortified_nest_small_ep1 listed twice 10:01:18 Item str_ep1_dn_land_fort_artillery_nest_ep1 listed twice 10:01:18 Item str_ep1_dn_land_camonetvar_nato_ep1 listed twice 10:01:18 Item str_ep1_dn_land_camonetvar_east_ep1 listed twice 10:01:18 Item str_ep1_dn_land_camonet_nato_ep1 listed twice 10:01:18 Item str_ep1_dn_land_camonet_east_ep1 listed twice 10:01:18 Item str_ep1_dn_land_camonetb_nato_ep1 listed twice 10:01:18 Item str_ep1_dn_land_camonetb_east_ep1 listed twice 10:01:18 Item str_ep1_dn_hmmwv_ghost_ep1 listed twice 10:01:18 Item str_ep1_dn_gunrackus_ep1 listed twice 10:01:18 Item str_ep1_dn_gunracktk_ep1 listed twice 10:01:18 Item str_ep1_dn_flagpole_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierwhite_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierusarmy_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierusa_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrieruno_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriertkmilitia_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriertfknight_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriertakistankingdom_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriertakistan_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierredcrystal_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierredcross_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierredcrescent_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierpowmia_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrieropfor_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriernato_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierindfor_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriergermany_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierczechrepublic_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriercdf_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarriercdfensign_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierblufor_ep1 listed twice 10:01:18 Item str_ep1_dn_flagcarrierbis_ep1 listed twice 10:01:18 Item str_ep1_dn_dirtmount_ep1 listed twice 10:01:18 Item str_ep1_dn_cluttercutter_small_ep1 listed twice 10:01:18 Item str_ep1_dn_cluttercutter_small_2_ep1 listed twice 10:01:18 Item str_ep1_dn_cluttercutter_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgvehicles_protectionzone_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgvehicles_infostand_2_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgvehicles_infostand_1_ep1 listed twice 10:01:18 Item str_ep1_dn_c130j_wreck_ep1 listed twice 10:01:18 Item str_ep1_dn_c130j_static_ep1_useractions_cargoopen listed twice 10:01:18 Item str_ep1_dn_c130j_static_ep1_useractions_cargoclose listed twice 10:01:18 Item str_ep1_dn_c130j_static_ep1 listed twice 10:01:18 Item str_ep1_dn_bleacher_ep1 listed twice 10:01:18 Item str_ep1_dn_ammocrates_nointeractive_small listed twice 10:01:18 Item str_ep1_dn_ammocrates_nointeractive_medium listed twice 10:01:18 Item str_ep1_dn_ammocrates_nointeractive_large listed twice 10:01:18 Item str_ep1_dn_ammocrate_nointeractive_base_ep1 listed twice 10:01:18 Item str_ep1_dn_ammocrate_nointeractive_ listed twice 10:01:18 Item str_ep1_dn_wf_vehicleservicepoint listed twice 10:01:18 Item str_ep1_dn_wf_uavterminal listed twice 10:01:18 Item str_ep1_dn_wf_lightfactory listed twice 10:01:18 Item str_ep1_dn_wf_hq_unfolded listed twice 10:01:18 Item str_ep1_dn_wf_heavyfactory listed twice 10:01:18 Item str_ep1_dn_wf_fieldhhospital listed twice 10:01:18 Item str_ep1_dn_wf_contructionsite2 listed twice 10:01:18 Item str_ep1_dn_wf_contructionsite listed twice 10:01:18 Item str_ep1_dn_wf_barracks listed twice 10:01:18 Item str_ep1_dn_wf_artilleryradar listed twice 10:01:18 Item str_ep1_dn_wf_antiairradar listed twice 10:01:18 Item str_ep1_dn_wf_aircraftfactory listed twice 10:01:18 Item str_ep1_lib_uh60m listed twice 10:01:18 Item str_ep1_lib_uh1h listed twice 10:01:18 Item str_ep1_lib_mh6j listed twice 10:01:18 Item str_ep1_lib_ch47 listed twice 10:01:18 Item str_ep1_lib_an2 listed twice 10:01:18 Item str_ep1_lib_ah6x listed twice 10:01:18 Item str_ep1_lib_ah6j listed twice 10:01:18 Item str_ep1_lib_ah64 listed twice 10:01:18 Item str_ep1_lib_mq9predatorb listed twice 10:01:18 Item str_ep1_lib_t55 listed twice 10:01:18 Item str_ep1_lib_m6 listed twice 10:01:18 Item str_ep1_lib_m2a2 listed twice 10:01:18 Item str_ep1_dn_t55 listed twice 10:01:18 Item str_ep1_dn_m6_ep1 listed twice 10:01:18 Item str_ep1_dn_m2a3_ep1 listed twice 10:01:18 Item str_ep1_dn_m2a2_ep1 listed twice 10:01:18 Item str_ep1_dn_m2a2_base listed twice 10:01:18 Item STR_EP1_dn_t34 listed twice 10:01:18 Item STR_EP1_lib_t34 listed twice 10:01:18 Item str_ep1_dn_vc_test_ep1 listed twice 10:01:18 Item str_ep1_dn_vc_structures_e listed twice 10:01:18 Item str_ep1_dn_vc_military_us listed twice 10:01:18 Item str_ep1_dn_vc_military_tka listed twice 10:01:18 Item str_ep1_dn_vc_military_gue listed twice 10:01:18 Item str_ep1_dn_vc_menspecialforces listed twice 10:01:18 Item str_ep1_dn_vc_menspecial listed twice 10:01:18 Item str_ep1_dn_vc_mendeltaforce listed twice 10:01:18 Item str_ep1_dn_vc_helpers listed twice 10:01:18 Item str_ep1_dn_vc_backpacks listed twice 10:01:18 Item str_ep1_dn_vc_animals_tk listed twice 10:01:18 Item str_ep1_dn_uh60m_mev listed twice 10:01:18 Item str_ep1_dn_uh60m listed twice 10:01:18 Item str_ep1_dn_uh60_base listed twice 10:01:18 Item str_ep1_dn_uh1h_base listed twice 10:01:18 Item str_ep1_dn_mi171sh_rockets listed twice 10:01:18 Item str_ep1_dn_mi171sh listed twice 10:01:18 Item str_ep1_dn_mh6j listed twice 10:01:18 Item str_ep1_dn_m230 listed twice 10:01:18 Item str_ep1_dn_fn_bis_us listed twice 10:01:18 Item str_ep1_dn_fn_bis_un listed twice 10:01:18 Item str_ep1_dn_fn_bis_tk_ins listed twice 10:01:18 Item str_ep1_dn_fn_bis_tk_gue listed twice 10:01:18 Item str_ep1_dn_fn_bis_tk_civ listed twice 10:01:18 Item str_ep1_dn_fn_bis_tk listed twice 10:01:18 Item str_ep1_dn_fn_bis_ger listed twice 10:01:18 Item str_ep1_dn_fn_bis_cz listed twice 10:01:18 Item str_ep1_dn_fn_bis_civ_special listed twice 10:01:18 Item str_ep1_dn_ch47f listed twice 10:01:18 Item str_ep1_dn_ch47_base listed twice 10:01:18 Item str_ep1_dn_cfgmods_expansion listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_usa_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_uno_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_tkm_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_tkg_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_tka_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_opfor_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_nato_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_indfor_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_germany_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_czechrepublic_ep1 listed twice 10:01:18 Item str_ep1_dn_cfgmarkers_faction_blufor_ep1 listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_motorizedsectionat listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_motorizedsection listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_deltapatrolhmmwv listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_motorized_us_deltapatrolatv listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_motorized listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_mechanized_us_mechanizedreconsection listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_mechanized_us_mechanizedinfantrysquadicvmk19 listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_mechanized_us_mechanizedinfantrysquadicvm2 listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_mechanized listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_weaponssquad listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_teamsupport listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_teammg listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_teamat listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_team listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_sniperteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_riflesquad listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_heavyatteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry_us_deltaforceteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_infantry listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_mgsplatoon listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_m1a2section listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_m1a2platoon listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_armored_us_m1a1platoon listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_armored listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_uh60mflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_mq9flight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_mh6jflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ch47fflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_c130jflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ah6xflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ah6jflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_ah64dflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air_us_a10flight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us_air listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_us listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_ger_infantry_kskteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_ger_infantry listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_ger listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_motorized_acr_specialforcespatrollandrover listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_motorized_acr_specialforcespatrolatv listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_motorized_acr_motorizedpatrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_motorized listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_infantry_acr_specialforcesteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_infantry_acr_infantrypatrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_infantry listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_air_acr_mi171sh_rocketsflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_air_acr_mi171shflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz_air listed twice 10:01:18 Item str_ep1_dn_cfggroups_west_bis_cz listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un_motorized_un_motorizedpatrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un_motorized listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un_mechanized_un_mechanizedpatrolm113 listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un_mechanized_un_mechanizedpatrolbmp2 listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un_mechanized listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un_infantry_un_patrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un_infantry listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_un listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized_tk_gue_technicals listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized_tk_gue_motorizedpatrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized_tk_gue_motorizedgroup listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_motorized listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_mechanized_tk_gue_mechanizedpatrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_mechanized_tk_gue_mechanizedgroup listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_mechanized listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_sniperteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_patrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_groupweapons listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_group listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_atteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_infantry_tk_gue_aateam listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_armored_tk_gue_t55section listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_armored_tk_gue_t34platoon listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue_armored listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila_bis_tk_gue listed twice 10:01:18 Item str_ep1_dn_cfggroups_guerrila listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_motorized_tk_motorizedreconsection listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_motorized_tk_motorizedpatrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_motorized_tk_motorizedinfanterysquad listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_motorized listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedspecialsquad listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedreconsectionat listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedreconsection listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedinfantrysquadbtr60 listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized_tk_mechanizedinfantrysquadbmp2 listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_mechanized listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized_tk_ins_technicals listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized_tk_ins_motorizedpatrolbtr40 listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized_tk_ins_motorizedgroup listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_motorized listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_patrol listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_group listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_atteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry_tk_ins_aateam listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins_infantry listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_ins listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_specialpurposesquad listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_sniperteam listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysquad listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysectionmg listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysectionat listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysectionaa listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry_tk_infantrysection listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_infantry listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_armored_tk_t72platoon listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_armored_tk_t55platoon listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_armored_tk_t34platoon listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_armored listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_uh1hflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_su25flight listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_mi24_dflight listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_mi_17flight listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_air_tk_an2flight listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk_air listed twice 10:01:18 Item str_ep1_dn_cfggroups_east_bis_tk listed twice 10:01:18 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ_infantry_tk_civ_crowd2 listed twice 10:01:18 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ_infantry_tk_civ_crowd1 listed twice 10:01:18 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ_infantry listed twice 10:01:18 Item str_ep1_dn_cfggroups_civilian_bis_tk_civ listed twice 10:01:18 Item str_ep1_dn_c130j_static listed twice 10:01:18 Item str_ep1_dn_an2_tk listed twice 10:01:18 Item str_ep1_dn_an2_2_tk_civ listed twice 10:01:18 Item str_ep1_dn_an2_1_tk_civ listed twice 10:01:18 Item str_ep1_dn_ah6x listed twice 10:01:18 Item str_ep1_dn_ah6j listed twice 10:01:18 Item str_ep1_dn_ah6_base listed twice 10:01:18 Item str_ep1_dn_ah64d listed twice 10:01:18 Item str_ep1_dn_ah64_base listed twice 10:01:18 Item str_ep1_dn_ac130 listed twice 10:01:18 Item str_ep1_dn_1200rnd_30x113mm_m789_hedp listed twice 10:01:18 Item str_ep1_dn_vc_military listed twice 10:01:18 Item str_ep1_dn_land_wicker_basket listed twice 10:01:18 Item str_ep1_dn_land_wheel_cart listed twice 10:01:18 Item str_ep1_dn_land_water_pipe listed twice 10:01:18 Item str_ep1_dn_land_vase_loam_3 listed twice 10:01:18 Item str_ep1_dn_land_vase_loam_2 listed twice 10:01:18 Item str_ep1_dn_land_vase_loam listed twice 10:01:18 Item str_ep1_dn_land_vase listed twice 10:01:18 Item str_ep1_dn_land_urn listed twice 10:01:18 Item str_ep1_dn_land_transport_kiosk listed twice 10:01:18 Item str_ep1_dn_land_transport_crates listed twice 10:01:18 Item str_ep1_dn_land_transport_cart listed twice 10:01:18 Item str_ep1_dn_land_tires listed twice 10:01:18 Item str_ep1_dn_land_teapot listed twice 10:01:18 Item str_ep1_dn_land_table_small listed twice 10:01:18 Item str_ep1_dn_land_table listed twice 10:01:18 Item str_ep1_dn_land_sunshade listed twice 10:01:18 Item str_ep1_dn_land_stand_waterl listed twice 10:01:18 Item str_ep1_dn_land_stand_small listed twice 10:01:18 Item str_ep1_dn_land_stand_meat listed twice 10:01:18 Item str_ep1_dn_land_shelf listed twice 10:01:18 Item str_ep1_dn_land_sack listed twice 10:01:18 Item str_ep1_dn_land_reservoir listed twice 10:01:18 Item str_ep1_dn_land_rack listed twice 10:01:18 Item str_ep1_dn_land_pillow listed twice 10:01:18 Item str_ep1_dn_land_misc_well_l listed twice 10:01:18 Item str_ep1_dn_land_misc_well_c listed twice 10:01:18 Item str_ep1_dn_land_misc_rubble listed twice 10:01:18 Item str_ep1_dn_land_misc_ironpipes listed twice 10:01:18 Item str_ep1_dn_land_misc_garb_heap listed twice 10:01:18 Item str_ep1_dn_land_misc_concpipeline listed twice 10:01:18 Item str_ep1_dn_land_misc_concoutlet listed twice 10:01:18 Item str_ep1_dn_land_misc_concbox listed twice 10:01:18 Item str_ep1_dn_land_misc_coil listed twice 10:01:18 Item str_ep1_dn_land_market_stalls_02 listed twice 10:01:18 Item str_ep1_dn_land_market_stalls_01 listed twice 10:01:18 Item str_ep1_dn_land_market_shelter listed twice 10:01:18 Item str_ep1_dn_land_crates_stack listed twice 10:01:18 Item str_ep1_dn_land_crates listed twice 10:01:18 Item str_ep1_dn_land_covering_hut_big listed twice 10:01:18 Item str_ep1_dn_land_covering_hut listed twice 10:01:18 Item str_ep1_dn_land_chest listed twice 10:01:18 Item str_ep1_dn_land_chair listed twice 10:01:18 Item str_ep1_dn_land_carpet_rack listed twice 10:01:18 Item str_ep1_dn_land_carpet_2 listed twice 10:01:18 Item str_ep1_dn_land_carpet listed twice 10:01:18 Item str_ep1_dn_land_canister listed twice 10:01:18 Item str_ep1_dn_land_cages listed twice 10:01:18 Item str_ep1_dn_land_cabinet listed twice 10:01:18 Item str_ep1_dn_land_bucket listed twice 10:01:18 Item str_ep1_dn_land_bowl listed twice 10:01:18 Item str_ep1_dn_land_boots listed twice 10:01:18 Item str_ep1_dn_land_blankets listed twice 10:01:18 Item str_ep1_dn_land_bench listed twice 10:01:18 Item str_ep1_dn_land_basket listed twice 10:01:18 Item str_ep1_dn_land_bags_stack listed twice 10:01:18 Item str_ep1_dn_land_bags listed twice 10:01:18 Item str_ep1_dn_land_bag listed twice 10:01:18 Item str_ep1_dn_fort_stonewall listed twice 10:01:18 Item str_ep1_dn_sheep02_ep1 listed twice 10:01:18 Item str_ep1_dn_sheep01_ep1 listed twice 10:01:18 Item str_ep1_dn_goat02_ep1 listed twice 10:01:18 Item str_ep1_dn_goat01_ep1 listed twice 10:01:18 Item str_ep1_dn_cow01_ep1 listed twice 10:01:18 Item str_ep1_dn_signm_un_base listed twice 10:01:18 Item str_ep1_dn_signm_fob_revolve listed twice 10:01:18 Item str_ep1_dn_signm_fob_prostejov listed twice 10:01:18 Item str_ep1_dn_signm_fob_blanik listed twice 10:01:18 Item str_ep1_dn_signm_farp_winchester listed twice 10:01:18 Item str_ep1_lib_l39_base_library listed twice 10:01:18 Item str_ep1_dn_l39_base listed twice 10:01:18 Item str_ep1_dn_us_soldier_tl_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_spotter_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_sniper_nv_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_sniperh_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_sniper_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_sl_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_pilot_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_officer_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_medic_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_marksman_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_light_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_lat_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_hat_dragon_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_gl_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_engineer_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_crew_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_b_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_at_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_ar_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_amg_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_ahat_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_aat_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_aar_ep1 listed twice 10:01:18 Item str_ep1_dn_us_soldier_aa_ep1 listed twice 10:01:18 Item str_ep1_dn_us_pilot_light_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_undercover_takistani06_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_undercover_takistani05_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_undercover_takistani04_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_undercover_takistani02_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_tl_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_sd_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_night_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_medic_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_marksman_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_m14_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_assault_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_ar_ep1 listed twice 10:01:18 Item str_ep1_dn_us_delta_force_air_controller_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_sl_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_officer_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_light_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_guard_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_b_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_at_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_amg_ep1 listed twice 10:01:18 Item str_ep1_dn_un_cdf_soldier_aat_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_special_forces_tl_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_special_forces_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_special_forces_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_tws_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_spotter_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_sniper_night_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_sniperh_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_sniper_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_sl_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_pilot_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_officer_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_night_2_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_night_1_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_medic_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_lat_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_hat_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_gl_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_engineer_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_crew_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_b_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_base_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_at_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_ar_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_amg_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_aat_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_soldier_aa_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_warlord_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_tl_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_sniper_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_base_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_at_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_ar_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_aat_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_aa_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_4_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_3_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_soldier_2_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_ins_bonesetter_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_warlord_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_tl_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_sniper_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_hat_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_base_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_at_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_ar_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_aat_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_aa_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_5_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_4_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_3_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_soldier_2_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_gue_bonesetter_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_commander_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_worker02_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_worker01_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_woman03_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_woman02_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_woman01_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_takistani_base_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_takistani06_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_takistani05_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_takistani04_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_takistani03_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_takistani02_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_civ_takistani01_ep1 listed twice 10:01:18 Item str_ep1_dn_tk_aziz_ep1 listed twice 10:01:18 Item str_ep1_dn_rita_ensler_ep1 listed twice 10:01:18 Item str_ep1_dn_pierce_light listed twice 10:01:18 Item str_ep1_dn_piercehead listed twice 10:01:18 Item str_ep1_dn_pierce listed twice 10:01:18 Item str_ep1_dn_herrera_light listed twice 10:01:18 Item str_ep1_dn_herrerahead listed twice 10:01:18 Item str_ep1_dn_herrera listed twice 10:01:18 Item str_ep1_dn_haris_press_ep1 listed twice 10:01:18 Item str_ep1_dn_graves_light listed twice 10:01:18 Item str_ep1_dn_graveshead listed twice 10:01:18 Item str_ep1_dn_graves listed twice 10:01:18 Item str_ep1_dn_ger_soldier_tl_ep1 listed twice 10:01:18 Item str_ep1_dn_ger_soldier_scout_ep1 listed twice 10:01:18 Item str_ep1_dn_ger_soldier_mg_ep1 listed twice 10:01:18 Item str_ep1_dn_ger_soldier_medic_ep1 listed twice 10:01:18 Item str_ep1_dn_ger_soldier_ep1 listed twice 10:01:18 Item str_ep1_dn_dr_hladik_ep1 listed twice 10:01:18 Item str_ep1_dn_dr_annie_baker_ep1 listed twice 10:01:18 Item str_ep1_dn_drake_light listed twice 10:01:18 Item str_ep1_dn_drakehead listed twice 10:01:18 Item str_ep1_dn_drake listed twice 10:01:18 Item str_ep1_dn_delta_glasses listed twice 10:01:18 Item str_ep1_dn_cz_special_forces_tl_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_special_forces_scout_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_special_forces_mg_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_special_forces_gl_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_special_forces_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_sl_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_pilot_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_office_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_mg_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_light_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_b_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_base_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_at_des_ep1 listed twice 10:01:18 Item str_ep1_dn_cz_soldier_amg_des_ep1 listed twice 10:01:18 Item str_ep1_dn_civ_eurowoman02_ep1 listed twice 10:01:18 Item str_ep1_dn_civ_eurowoman01_ep1 listed twice 10:01:18 Item str_ep1_dn_civ_euroman02_ep1 listed twice 10:01:18 Item str_ep1_dn_civ_euroman01_ep1 listed twice 10:01:18 Item str_ep1_dn_piercehead_ep1_default listed twice 10:01:18 Item str_ep1_dn_herrerahead_ep1_default listed twice 10:01:18 Item str_ep1_dn_graveshead_ep1_default listed twice 10:01:18 Item str_ep1_dn_facegrover_wounded_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_wounded_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_wounded_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_wounded_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_wounded_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_wounded_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_wounded_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_facegrover_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face20_ep1 listed twice 10:01:18 Item str_ep1_dn_face20_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face20_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face20_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face20_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face20_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face20_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face19_ep1 listed twice 10:01:18 Item str_ep1_dn_face19_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face19_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face19_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face19_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face19_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face19_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face18_ep1 listed twice 10:01:18 Item str_ep1_dn_face18_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face18_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face18_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face18_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face18_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face18_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face17_ep1 listed twice 10:01:18 Item str_ep1_dn_face17_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face17_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face17_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face17_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face17_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face17_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face16_ep1 listed twice 10:01:18 Item str_ep1_dn_face16_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face16_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face16_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face16_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face16_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face16_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face15_ep1 listed twice 10:01:18 Item str_ep1_dn_face15_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face15_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face15_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face15_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face15_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face15_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face14_ep1 listed twice 10:01:18 Item str_ep1_dn_face14_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face14_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face14_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face14_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face14_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face14_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face13_ep1 listed twice 10:01:18 Item str_ep1_dn_face13_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face13_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face13_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face13_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face13_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face13_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face12_ep1 listed twice 10:01:18 Item str_ep1_dn_face12_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face12_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face12_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face12_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face12_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face12_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face11_ep1 listed twice 10:01:18 Item str_ep1_dn_face11_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face11_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face11_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face11_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face11_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face11_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face10_ep1 listed twice 10:01:18 Item str_ep1_dn_face10_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face10_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face10_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face10_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face10_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face10_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face09_ep1 listed twice 10:01:18 Item str_ep1_dn_face09_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face09_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face09_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face09_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face09_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face09_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face08_ep1 listed twice 10:01:18 Item str_ep1_dn_face08_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face08_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face08_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face08_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face08_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face08_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face07_ep1 listed twice 10:01:18 Item str_ep1_dn_face07_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face07_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face07_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face07_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face07_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face07_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face06_ep1 listed twice 10:01:18 Item str_ep1_dn_face06_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face06_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face06_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face06_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face06_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face06_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face05_ep1 listed twice 10:01:18 Item str_ep1_dn_face05_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face05_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face05_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face05_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face05_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face05_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face04_ep1 listed twice 10:01:18 Item str_ep1_dn_face04_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face04_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face04_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face04_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face04_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face04_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face03_ep1 listed twice 10:01:18 Item str_ep1_dn_face03_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face03_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face03_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face03_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face03_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face03_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face02_ep1 listed twice 10:01:18 Item str_ep1_dn_face02_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face02_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face02_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face02_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face02_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face02_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_face01_ep1 listed twice 10:01:18 Item str_ep1_dn_face01_camo6_ep1 listed twice 10:01:18 Item str_ep1_dn_face01_camo5_ep1 listed twice 10:01:18 Item str_ep1_dn_face01_camo4_ep1 listed twice 10:01:18 Item str_ep1_dn_face01_camo3_ep1 listed twice 10:01:18 Item str_ep1_dn_face01_camo2_ep1 listed twice 10:01:18 Item str_ep1_dn_face01_camo1_ep1 listed twice 10:01:18 Item str_ep1_dn_drakehead_ep1_default listed twice 10:01:18 Item str_ep1_dn_cfgglasses_delta_glasses listed twice 10:01:18 Item str_ep1_track19 listed twice 10:01:18 Item str_ep1_track18 listed twice 10:01:18 Item str_ep1_track17 listed twice 10:01:18 Item str_ep1_track16 listed twice 10:01:18 Item str_ep1_track15 listed twice 10:01:18 Item str_ep1_track14 listed twice 10:01:18 Item str_ep1_track13v listed twice 10:01:18 Item str_ep1_track13d2 listed twice 10:01:18 Item str_ep1_track13d1 listed twice 10:01:18 Item str_ep1_track13 listed twice 10:01:18 Item str_ep1_track12 listed twice 10:01:18 Item str_ep1_track11 listed twice 10:01:18 Item str_ep1_track10 listed twice 10:01:18 Item str_ep1_track09 listed twice 10:01:18 Item str_ep1_track08 listed twice 10:01:18 Item str_ep1_track07d listed twice 10:01:18 Item str_ep1_track07 listed twice 10:01:18 Item str_ep1_track06 listed twice 10:01:18 Item str_ep1_track05 listed twice 10:01:18 Item str_ep1_track04 listed twice 10:01:18 Item str_ep1_track03d listed twice 10:01:18 Item str_ep1_track03 listed twice 10:01:18 Item str_ep1_track02 listed twice 10:01:18 Item str_ep1_track01d listed twice 10:01:18 Item str_ep1_track01 listed twice 10:01:18 Item str_ep1_wfsupportunavailable listed twice 10:01:18 Item str_ep1_wfsetline listed twice 10:01:18 Item STR_EP1_WFSTRATEGICMAP listed twice 10:01:18 Item str_ep1_wfrequestsupportlocation listed twice 10:01:18 Item str_ep1_wfnearest listed twice 10:01:18 Item STR_EP1_WFLIMITEDWARFARE listed twice 10:01:18 Item STR_EP1_WFNOTASKAUTOASSIGNMENT listed twice 10:01:18 Item STR_EP1_WFNOTASKDESCRIPTION listed twice 10:01:18 Item str_ep1_wffriendliespresent listed twice 10:01:18 Item str_ep1_wfcannotfire listed twice 10:01:18 Item str_ep1_wfadjustradius listed twice 10:01:18 Item str_ep1_wfadjustposition listed twice 10:01:18 Item str_ep1_wfadjustfire listed twice 10:01:18 Item str_ep1_wfabortfiremission1 listed twice 10:01:18 Item str_ep1_wfabortfiremission listed twice 10:01:18 Item str_ep1_dn_cfgvehicles_warfareoa listed twice 10:01:18 Item str_ep1_config.cppcfgvehicles_weatherpostprocessmanager0 listed twice 10:01:18 Item str_ep1_config.cppcfgvehicles_weatherparticlesmanager0 listed twice 10:01:18 Item str_ep1_config.cppcfgvehicles_jukeboxmanager0 listed twice 10:01:18 Item str_ep1_config.cppcfgvehicles_gitamanager0 listed twice 10:01:18 Item str_ep1_config.cppcfgvehicles_bis_support0 listed twice 10:01:18 Item str_ep1_config.cppcfgobjectcompositions_mpa_infokiosk10 listed twice 10:01:18 Item str_ep1_cfgvehicles.hppcfgvehicles_alice2manager0 listed twice 10:01:18 Item str_ep1_dn_cfgsounds_oil_pump listed twice 10:01:18 Item str_ep1_dn_cfgsfx_sirene_ep1 listed twice 10:01:18 Unsupported language English in stringtable 10:01:18 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice 10:01:19 Conflicting addon CALanguage_e in 'ca\langauage_e\', previous definition in 'ca\language_e\' 10:01:19 Conflicting addon A3_Sounds_F in 'mm_buildings\prison\sounds\', previous definition in 'mm_bank\sound\' 10:01:19 Conflicting addon Mattaust_Objects in 'MM_Shopping\', previous definition in 'MM_objects\' 10:01:21 Conflicting addon A3_Sounds_F in 'a3\sounds_f\', previous definition in 'mm_bank\sound\' 10:01:22 Updating base class ->House, by jas92\jas92_structures_f\clothing_store\config.cpp/CfgVehicles/House_F/ (original (no unload)) 10:01:22 Updating base class ->NonStrategic, by a3\data_f\config.bin/CfgVehicles/HouseBase/ (original a3\data_f\config.bin) 10:01:22 Updating base class ->HouseBase, by a3\data_f\config.bin/CfgVehicles/Ruins/ (original a3\data_f\config.bin) 10:01:22 Updating base class ->DestructionEffects, by a3\data_f\config.bin/CfgVehicles/House/DestructionEffects/ (original a3\data_f\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin) 10:01:22 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin) 10:01:22 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin) 10:01:22 Updating base class ->Ruins, by a3\structures_f\config.bin/CfgVehicles/Ruins_F/ (original a3\structures_f\config.bin) 10:01:22 Updating base class ->EtelkaMonospacePro, by a3\uifonts_f\config.bin/CfgFontFamilies/EtelkaMonospaceProBold/ (original ca\uifonts\config.bin) 10:01:22 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesBasic/DefaultDie/ (original a3\anims_f\config\sdr\config.bin) 10:01:22 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/Crew/ (original a3\anims_f\config\sdr\config.bin) 10:01:22 Updating base class Default->GdtConcrete, by a3\map_data\config.bin/CfgSurfaces/carpet/ (original shb\config.bin) 10:01:22 Updating base class Default->GdtStratisDirt, by a3\map_data\config.bin/CfgSurfaces/mud/ (original shb\config.bin) 10:01:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin) 10:01:22 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin) 10:01:22 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin) 10:01:22 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin) 10:01:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin) 10:01:22 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin) 10:01:22 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin) 10:01:22 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin) 10:01:22 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin) 10:01:22 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin) 10:01:22 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin) 10:01:22 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin) 10:01:22 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin) 10:01:22 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin) 10:01:22 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin) 10:01:22 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably). 10:01:22 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin) 10:01:22 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin) 10:01:22 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin) 10:01:22 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin) 10:01:22 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin) 10:01:22 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin) 10:01:22 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin) 10:01:22 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin) 10:01:22 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin) 10:01:22 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin) 10:01:22 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin) 10:01:22 Updating base class ->ItemCore, by a3\weapons_f\config.bin/CfgWeapons/ItemWatch/ (original a3\weapons_f\config.bin) 10:01:22 Updating base class Roadway->road, by ca\ca_c\config.bin/CfgSurfaces/Cesta/ (original shb\config.bin) 10:01:22 Updating base class Default->woodenFloor, by ca\ca_c\config.bin/CfgSurfaces/Wood/ (original shb\config.bin) 10:01:22 Updating base class Default->metalPlate, by ca\ca_c\config.bin/CfgSurfaces/Metal/ (original shb\config.bin) 10:01:22 Updating base class Default->stones, by ca\ca_c\config.bin/CfgSurfaces/Beton/ (original shb\config.bin) 10:01:22 Updating base class Default->sand, by ca\ca_c\config.bin/CfgSurfaces/SandBuilding/ (original shb\config.bin) 10:01:22 Updating base class Default->Mud, by ca\ca_c\config.bin/CfgSurfaces/MudBuilding/ (original shb\config.bin) 10:01:22 Updating base class Default->concrete, by ca\ca_c\config.bin/CfgSurfaces/BetonNew/ (original shb\config.bin) 10:01:22 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/CubeRoad/ (original shb\config.bin) 10:01:22 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/Sil_new/ (original shb\config.bin) 10:01:22 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/Asfalt_New/ (original shb\config.bin) 10:01:22 Updating base class Default->road, by ca\ca_c\config.bin/CfgSurfaces/Cesta_new/ (original shb\config.bin) 10:01:22 Updating base class Default->concrete_hall, by ca\ca_c\config.bin/CfgSurfaces/Hallway/ (original shb\config.bin) 10:01:22 Updating base class Default->sand, by ca\ca_c\config.bin/CfgSurfaces/SandGeneral/ (original shb\config.bin) 10:01:23 Updating base class ->All, by a3\sounds_f\config.bin/CfgVehicles/Sound/ (original a3\sounds_f\config.bin) 10:01:23 Updating base class Turrets->Turrets, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/ (original CUP\WaterVehicles\CUP_WaterVehicles_Weapons\config.bin) 10:01:23 Updating base class ->MainTurret, by a3\static_f\config.bin/CfgVehicles/StaticMGWeapon/Turrets/MainTurret/ (original a3\static_f\config.bin) 10:01:23 Updating base class ZavoraAnim->House, by ca\buildings_c\misc\config.bin/CfgVehicles/Land_zavora/ (original ca\buildings_c\config.bin) 10:01:23 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) 10:01:23 Updating base class NewTurret->NewTurret, by a3\soft_f\config.bin/CfgVehicles/Car_F/Turrets/MainTurret/ (original a3\soft_f\config.bin) 10:01:23 Updating base class OpenGate->, by ca\misc3_c\config.bin/CfgVehicles/ZavoraAnim/UserActions/CloseGate/ (original ca\buildings_c\config.bin) 10:01:24 Updating base class ->BulletBase, by a3\weapons_f_mark\config.bin/CfgAmmo/B_93x64_Ball/ (original a3\weapons_f_mark\config.bin) 10:01:24 Updating base class CUP_Vmlauncher_FFAR_veh->RocketPods, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vmlauncher_CRV7_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin) 10:01:24 Updating base class CUP_Vacannon_GAU12_veh->CannonCore, by CUP\Weapons\CUP_Weapons_DynamicLoadout\config.bin/CfgWeapons/CUP_Vacannon_GAU22_veh/ (original CUP\Weapons\CUP_Weapons_VehicleWeapons\config.bin) 10:01:24 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin) 10:01:24 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin) 10:01:24 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin) 10:01:24 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin) 10:01:24 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin) 10:01:24 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 10:01:24 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 10:01:24 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin) 10:01:24 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin) 10:01:24 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin) 10:01:24 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin) 10:01:24 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin) 10:01:24 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin) 10:01:24 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\grid\config.bin/CfgWorlds/Intro/ (original CUP\Terrains\cup_terrains_worlds\grid\config.bin) 10:01:24 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/utes/ (original CUP\Terrains\cup_terrains_worlds\intros\config.bin) 10:01:24 Updating base class ->CAWorld, by CUP\Terrains\cup_terrains_worlds\intros\config.bin/CfgWorlds/Chernarus/ (original CUP\Terrains\cup_terrains_worlds\intros\config.bin) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 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) 10:01:24 Updating base class ->LSV_02_AT_base_F, by a3\soft_f_exp\lsv_02\config.bin/CfgVehicles/O_T_LSV_02_AT_F/ (original a3\soft_f_exp\lsv_02\config.bin) 10:01:24 Updating base class ->LSV_02_armed_base_F, by a3\soft_f_exp\lsv_02\config.bin/CfgVehicles/O_LSV_02_armed_F/ (original a3\soft_f_exp\lsv_02\config.bin) 10:01:24 Updating base class ->LSV_02_unarmed_base_F, by a3\soft_f_exp\lsv_02\config.bin/CfgVehicles/O_LSV_02_unarmed_F/ (original a3\soft_f_exp\lsv_02\config.bin) 10:01:24 Updating base class ->Offroad_02_unarmed_base_F, by a3\soft_f_exp\offroad_02\config.bin/CfgVehicles/I_C_Offroad_02_unarmed_F/ (original a3\soft_f_exp\offroad_02\config.bin) 10:01:24 Updating base class ->Offroad_02_LMG_base_F, by a3\soft_f_exp\offroad_02\config.bin/CfgVehicles/I_C_Offroad_02_LMG_F/ (original a3\soft_f_exp\offroad_02\config.bin) 10:01:24 Updating base class ->Offroad_02_AT_base_F, by a3\soft_f_exp\offroad_02\config.bin/CfgVehicles/I_C_Offroad_02_AT_F/ (original a3\soft_f_exp\offroad_02\config.bin) 10:01:26 Updating base class ->Plane_Civil_01_base_F, by a3\air_f_exp\plane_civil_01\config.bin/CfgVehicles/C_Plane_Civil_01_racing_F/ (original a3\air_f_exp\plane_civil_01\config.bin) 10:01:26 Updating base class CfgEnvSounds->EnvSounds, by a3\sounds_f_exp\config.bin/CfgWorlds/CAWorld/EnvSounds/ (original CUP\Terrains\cup_terrains_worlds\envsounds\config.bin) 10:01:26 Updating base class 500Rnd_127x99_mag->500Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/500Rnd_127x99_mag_Tracer_Green/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 500Rnd_127x99_mag->500Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/500Rnd_127x99_mag_Tracer_Yellow/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 200Rnd_127x99_mag->200Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/200Rnd_127x99_mag_Tracer_Green/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 200Rnd_127x99_mag->200Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/200Rnd_127x99_mag_Tracer_Yellow/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 500Rnd_127x99_mag->200Rnd_127x99_mag, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/100Rnd_127x99_mag/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 100Rnd_127x99_mag->100Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/100Rnd_127x99_mag_Tracer_Green/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 100Rnd_127x99_mag->100Rnd_127x99_mag_Tracer_Red, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/100Rnd_127x99_mag_Tracer_Yellow/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 200Rnd_762x51_Belt->VehicleMagazine, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/2000Rnd_762x51_Belt/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 2000Rnd_65x39_Belt->2000Rnd_762x51_Belt, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/5000Rnd_762x51_Belt/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 5000Rnd_762x51_Belt->2000Rnd_762x51_Belt, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/5000Rnd_762x51_Yellow_Belt/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 32Rnd_155mm_Mo_shells->VehicleMagazine, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/8Rnd_82mm_Mo_shells/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class 250Rnd_30mm_HE_shells->VehicleMagazine, by x\addons\a3_epoch_configs\config.bin/CfgMagazines/60Rnd_30mm_APFSDS_shells/ (original a3\weapons_f\config.bin) 10:01:26 Updating base class ->magazine_Missile_AMRAAM_D_x1, by a3\weapons_f_jets\config.bin/CfgMagazines/PylonMissile_Missile_AMRAAM_D_INT_x1/ (original a3\weapons_f_jets\config.bin) 10:01:27 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin) 10:01:27 Updating base class ->Van_02_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/Van_02_transport_base_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class ->Van_02_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/Van_02_vehicle_base_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class ->Van_02_transport_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/I_G_Van_02_transport_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class ->Van_02_transport_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/B_G_Van_02_transport_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class ->Van_02_transport_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/O_G_Van_02_transport_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class ->Van_02_vehicle_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/I_G_Van_02_vehicle_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class ->Van_02_vehicle_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/B_G_Van_02_vehicle_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class ->Van_02_vehicle_base_F, by a3\soft_f_orange\van_02\config.bin/CfgVehicles/O_G_Van_02_vehicle_F/ (original a3\soft_f_orange\van_02\config.bin) 10:01:27 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin) 10:01:27 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin) 10:01:27 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin) 10:01:27 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin) 10:01:27 Updating base class ScrollBar->ScrollBar, by a3\ui_f_tank\config.bin/RscListNBox/ListScrollBar/ (original a3\ui_f_tank\config.bin) 10:01:27 Updating base class ->MissileLauncher, by a3\weapons_f_tank\config.bin/CfgWeapons/missiles_Vorona/ (original a3\weapons_f_tank\config.bin) 10:01:27 Updating base class ->CBA_Extended_EventHandlers_base, by x\cba\addons\xeh\config.bin/CBA_Extended_EventHandlers/ (original x\cba\addons\xeh\config.bin) 10:01:27 Updating base class ->asdg_SlotInfo, by x\cba\addons\jr\config.bin/asdg_FrontSideRail/ (original x\cba\addons\jr\config.bin) 10:01:27 Updating base class ->asdg_OpticSideMount, by CUP\Weapons\CUP_Weapons_East_Attachments\config.bin/CUP_DovetailMount/ (original CUP\Weapons\CUP_Weapons_East_Attachments\config.bin) 10:01:27 Updating base class ->asdg_OpticRail1913_long, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:01:27 Updating base class ->asdg_OpticRail1913_short, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyTopShortMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:01:27 Updating base class ->asdg_FrontSideRail, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnySideMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:01:27 Updating base class ->asdg_UnderSlot, by CUP\Weapons\CUP_Weapons_West_Attachments\config.bin/CUP_PicatinnyUnderMount/ (original CUP\Weapons\CUP_Weapons_West_Attachments\config.bin) 10:01:28 Updating base class KIA_RHIB_Cargo->DefaultDie, by CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin/CfgMovesMaleSdr/States/Zodiac_Dead/ (original CUP\WaterVehicles\CUP_WaterVehicles_Zodiac\config.bin) 10:01:28 Updating base class Optics_Commander_02->Optics_Armored, by CUP\WheeledVehicles\CUP_WheeledVehicles_BTR90\config.bin/Optics_Commander_03/ (original a3\weapons_f\config.bin) 10:01:28 Updating base class Car->LandVehicle, by CUP\WheeledVehicles\CUP_WheeledVehicles_RG31\config.bin/CfgVehicles/car_F/ (original (a3\soft_f\config.bin - no unload)) 10:01:28 Updating base class LandVehicle->Car, by CUP\WheeledVehicles\CUP_WheeledVehicles_Stryker\config.bin/CfgVehicles/Car_F/ (original (a3\soft_f\config.bin - no unload)) 10:01:29 Updating base class ->ProxyRetex, by CUP\WheeledVehicles\CUP_WheeledVehicles_Ridgeback\config.bin/CfgNonAIVehicles/Proxywreck/ (original bin\config.bin) 10:01:29 Updating base class Sounds->, by CUP\TrackedVehicles\CUP_TrackedVehicles_T34\config.bin/CfgVehicles/Tank_F/Sounds/ (original CUP\TrackedVehicles\CUP_TrackedVehicles_T34\config.bin) 10:01:31 Initializing Steam Manager 10:01:31 unable to load subscribed content list. list will be updated from steam 10:01:31 unable to load published content list. list will be updated from steam 10:01:31 unable to load cached items meta info. save and update functionality will be broken 10:01:31 Steam Manager initialized. 10:01:31 10:01:31 ==== Loaded addons ==== 10:01:31 10:01:31 dta\bin.pbo - 144923 10:01:31 dta\core.pbo - 129618 10:01:31 dta\languagecore_f.pbo - 132104 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_baseconfigs.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_basedata.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_aa12.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_ak.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_ammoboxes.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_ammunition.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_as50.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_awm.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_backpacks.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_bizon.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_colt1911.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_compact.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_compatibility.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_curator.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_cz750.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_cz805.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_duty.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_dynamicloadout.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_east_attachments.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_evo.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_fnfal.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_g36.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_glock17.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_grenadelaunchers.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_grenades.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_huntingrifle.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_igla.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_items.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_javelin.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_ksvk.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_l110.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_l129.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_l85.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_leeenfield.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m1014.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m107.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m110.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m136.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m14.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m14_dmr.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m16.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m24.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m240.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m249.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m47.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m60e4.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m72a6.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_m9.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_maaws.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_makarov.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_metis_at_13.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_microuzi.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_mk48.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_mp5.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_nlaw.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_nvg.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_pb_6p9.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_phantom.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_pk.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_pods.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_put.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_revolver.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_rpg18.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_rpg7.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_sa58.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_sa61.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_saiga12k.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_scar.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_shield.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_smaw.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_sounds.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_soundshaders.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_staticweapons.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_stinger.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_strela_2.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_svd.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_uk59.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_vehicleweapons.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_vss.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_weaponscore.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_weaponsdata.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_west_attachments.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons\addons\cup_weapons_xm8.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_a10.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ah1z.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ah6.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ah64.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ambientplanes.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_an2.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_av8b.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_aw159.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_c130j.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ch47.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ch53e.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_core.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_dc3.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_f35.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_hc3.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ka50.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ka52.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_ka60.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_l39.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_mh60s.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_mi24.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_mi35.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_mi6.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_mi8.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_motorplane.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_mq9.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_mv22.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_pchela1t.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_sa330.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_staticline.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_su25.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_su34.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_uh1h.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_uh1y.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_airvehicles_uh60.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_2s6m.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_aav.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_bmp.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_bmp3.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_bradley.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_bulldog.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_challengerii.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_core.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_fv510.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_m113.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_m1_abrams.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_m270.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_m60.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_mcv80.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_sounds.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_t34.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_t55.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_t72.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_t90.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_trackedvehicles_zsu23.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_vehicles_cfggroups.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_vehicles_core.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_vehicles_fastrope.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_vehicles_towing.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_core.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_fishing_boat.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_fregata.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_lhd.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_pbx.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_rhib.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_seafox.pbo - 1 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_weapons.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_watervehicles_zodiac.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_brdm2.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_btr40.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_btr60.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_btr90.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_core.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_coyote.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_datsun.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_dingo.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_hmmwv.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_ikarus.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_jackal.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_kamaz.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_lada.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_lav25.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_lr.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_lsv_02.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_m1030.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_mastiff.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_matv.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_mtvr.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_octavia.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_offroad_02.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_rg31.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_ridgeback.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_s1203.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_skoda.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_strider.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_stryker.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_suv.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_t810.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_towingtractor.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_tt650.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_uaz.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_uphmmwv.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_ural.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_v3s.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_van02.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_vodnik.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_volha.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_vwgolf.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles\addons\cup_wheeledvehicles_wolfhound.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_civil_chernarus.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_civil_russia.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_civil_takistan.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_core.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_acr.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_baf.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_cdf.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_chedaki.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_delta.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_dummyinfantryset.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_germany.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_napa.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_pmc.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_racs.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_russia.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_sla.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_taki.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_takiinsurgents.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_usarmy.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_people_military_usmc.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_creatures_staticweapons.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_cz.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_cz_acr.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_cz_acr_c.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_cz_c.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_en.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_en_c.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_gb_baf.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_gb_baf_c.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_gb_pmc.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_gb_pmc_c.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_ru.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_ru_c.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_tk.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP Units\addons\cup_dubbing_radio_tk_c.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_accessory.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_ai.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_arrays.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_common.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_diagnostic.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_events.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_hashes.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_help.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_jr.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_keybinding.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_main.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_main_a3.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_modules.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_music.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_network.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_settings.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_statemachine.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_strings.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_ui.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_vectors.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_versioning.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CBA_A3\addons\cba_xeh.pbo - 4965324d 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_a1always_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_a1_editorobjects.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_a2_editorobjects.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_aia_compat.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_baseconfig_f.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_buildings.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_a10_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_air2_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_air3_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_air_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_air_d_baf_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_air_e_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_air_pmc_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_animals2_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_buildings.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_buildings2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_buildings2_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_buildings_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_ca_acr.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_ca_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_ca_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_ca_pmc.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_characters2_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_cti_buildings.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_data.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_data_baf.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_data_baf_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_hotfix.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_hotfix_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_l39_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_language.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_languagemissions.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_languagemissions_baf.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_languagemissions_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_languagemissions_pmc.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_language_acr.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_language_baf.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_language_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_language_pmc.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc3.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc3_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc_acr.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc_acr_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc_baf.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc_e_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_misc_rtm2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_mp_armory_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_plants.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_plants2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_plants_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_plants_e2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_plants_pmc.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_roads.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_roads2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_roads_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_roads_pmc.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_roads_rtm2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_rocks.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_rocks2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_rocks_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_signs.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_signs2.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_signs_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_sounds_c_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_sounds_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_sounds_e_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_structures.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_structures_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_structures_e.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_structures_e_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_structures_pmc.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_structures_pmc_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_tracked2_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_tracked_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_tracked_e_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_uifonts.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_ui_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_water2_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_water_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_weapons2_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_weapons_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_weapons_e_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_weapons_pmc_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_wheeled2_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_wheeled_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ca_wheeled_e_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_core.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_dbe1_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_dbe1_models_dbe1.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_dbe1_models_dbe1_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_editor_c.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_hsim_data_h_dummy.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_hsim_languagemissions_h.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_hsim_language_h.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_ibr_plants.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_plants.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_terrains_core.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_weather.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core\addons\cup_terrains_worlds.pbo - 00000000 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Ryanzombies\addons\ryanzombies.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\a6m5wreck.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\art_gallery.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\ausbuildings.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\ausextras.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\ausobjects.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\ausroads.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\ausrocks.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\ausscrappers.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\aussounds.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\australia.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\austrees.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\brg_africa.pbo - unknown 10:01:31 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\ed4_structures_a3.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\jas92_structures_f.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\langauage_e.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_bank.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_buildings.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_buildings2.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_buildings3.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_buildings4.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_civilengineering.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_objects.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_post.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_residential.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_residential2.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_shopping.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\mm_showroom.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\partitioningfence.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\plp_containers.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\raid_road.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\shb.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\xcam_eu.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\xcam_metal.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\xcam_objects.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\xcam_pipe.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\xcam_wood.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9\addons\xcam_woodworks.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a2_epoch_weapons.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_assets.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_assets_1.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_assets_2.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_assets_3.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_code.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_community.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_configs.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_language.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_structures.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_vehicles.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_vehicles_1.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Epoch\addons\a3_epoch_weapons.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\armor_f_tank.ebo - 132036 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\cargoposes_f_tank.ebo - 128283 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\characters_f_tank.ebo - 129798 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\data_f_tank.ebo - 128203 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\dubbing_f_tank.ebo - 127958 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\editorpreviews_f_tank.ebo - 131632 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\functions_f_tank.ebo - 125996 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\languagemissions_f_tank.ebo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\language_f_tank.ebo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\missions_f_tank.ebo - 130984 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\missions_f_tank_data.ebo - 128937 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\modules_f_tank.ebo - 129574 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\music_f_tank.ebo - 127912 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\props_f_tank.ebo - 131702 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\sounds_f_tank.ebo - 131364 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\structures_f_tank.ebo - 131803 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\ui_f_tank.ebo - 128232 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tank\addons\weapons_f_tank.pbo - 131482 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\characters_f_tacops.ebo - 129739 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\data_f_tacops.ebo - 126731 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\dubbing_f_tacops.ebo - 129340 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\functions_f_tacops.ebo - 124382 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\languagemissions_f_tacops.ebo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\language_f_tacops.ebo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\missions_f_tacops.ebo - 131995 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\modules_f_tacops.ebo - 124298 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\music_f_tacops.ebo - 124064 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\sounds_f_tacops.ebo - 123795 10:01:32 C:\TCAFiles\Users\JohnT1\65924\tacops\addons\ui_f_tacops.ebo - 124116 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\air_f_orange.pbo - 132035 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\cargoposes_f_orange.pbo - 126225 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\characters_f_orange.pbo - 129739 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\data_f_orange.pbo - 121095 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\dubbing_f_orange.pbo - 121689 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\editorpreviews_f_orange.pbo - 123173 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\functions_f_orange.pbo - 128287 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\languagemissions_f_orange.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\language_f_orange.pbo - 132196 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\missions_f_orange.pbo - 126711 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\modules_f_orange.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\music_f_orange.pbo - 120725 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\props_f_orange.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\soft_f_orange.pbo - 132239 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\sounds_f_orange.pbo - 122301 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\structures_f_orange.pbo - 132196 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\supplies_f_orange.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\ui_f_orange.pbo - 123398 10:01:32 C:\TCAFiles\Users\JohnT1\65924\orange\addons\weapons_f_orange.pbo - 130995 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\armor_f_argo.pbo - 129739 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\characters_f_patrol.pbo - 129998 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\data_f_argo.pbo - 128209 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\data_f_patrol.pbo - 121287 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\editorpreviews_f_argo.pbo - 121102 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\functions_f_patrol.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\languagemissions_f_patrol.pbo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\language_f_argo.pbo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\language_f_patrol.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\map_malden.pbo - 129554 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\map_malden_data.pbo - 126137 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\map_malden_data_layers.pbo - 123441 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\map_malden_scenes_f.pbo - 120026 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\missions_f_patrol.pbo - 126663 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\modules_f_patrol.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\music_f_argo.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\props_f_argo.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\rocks_f_argo.pbo - 123488 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\sounds_f_patrol.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\structures_f_argo.pbo - 128082 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\ui_f_patrol.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\vegetation_f_argo.pbo - 123488 10:01:32 C:\TCAFiles\Users\JohnT1\65924\argo\addons\weapons_f_patrol.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\air_f_jets.pbo - 132072 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\anims_f_jets.pbo - 123210 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\boat_f_destroyer.pbo - 132140 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\boat_f_jets.pbo - 129607 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\cargoposes_f_jets.pbo - 126225 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\characters_f_jets.pbo - 129739 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\data_f_destroyer.pbo - 132156 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\data_f_jets.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\data_f_sams.pbo - 132140 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\dubbing_f_jets.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\editorpreviews_f_destroyer.pbo - 132141 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\editorpreviews_f_jets.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\editorpreviews_f_sams.pbo - 132141 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\functions_f_destroyer.pbo - 132075 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\functions_f_jets.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\languagemissions_f_jets.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\language_f_destroyer.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\language_f_jets.pbo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\language_f_sams.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\missions_f_jets.pbo - 130755 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\modules_f_jets.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\music_f_jets.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\props_f_destroyer.pbo - 132141 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\props_f_jets.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\sounds_f_jets.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\static_f_destroyer.pbo - 132329 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\static_f_jets.pbo - 131969 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\static_f_sams.pbo - 132140 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\ui_f_jets.pbo - 126137 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\weapons_f_destroyer.pbo - 132155 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\weapons_f_jets.pbo - 131383 10:01:32 C:\TCAFiles\Users\JohnT1\65924\jets\addons\weapons_f_sams.pbo - 132140 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\air_f_exp.pbo - 132062 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\anims_f_exp.pbo - 126506 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\armor_f_exp.pbo - 129739 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\boat_f_exp.pbo - 129747 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\cargoposes_f_exp.pbo - 126224 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\characters_f_exp.pbo - 129738 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\data_f_exp.pbo - 128203 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\dubbing_f_exp.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\dubbing_radio_f_exp.pbo - 119458 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\editorpreviews_f_exp.pbo - 126519 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\functions_f_exp.pbo - 132366 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\languagemissions_f_exp.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\language_f_exp.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\map_data_exp.pbo - 123499 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\map_tanoabuka.pbo - 130033 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\map_tanoabuka_data.pbo - 123523 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\map_tanoabuka_data_layers.pbo - 121192 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\map_tanoa_scenes_f.pbo - 123527 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\missions_f_exp.pbo - 132366 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\missions_f_exp_data.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\missions_f_exp_video.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\modules_f_exp.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\music_f_exp.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\music_f_exp_music.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\props_f_exp.pbo - 130646 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\rocks_f_exp.pbo - 129683 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\soft_f_exp.pbo - 130182 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\sounds_f_exp.pbo - 131659 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\static_f_exp.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\structures_f_exp.pbo - 132109 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\structures_f_exp_civilian.pbo - 131934 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\structures_f_exp_commercial.pbo - 123430 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\structures_f_exp_cultural.pbo - 123423 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\structures_f_exp_data.pbo - 123431 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\structures_f_exp_industrial.pbo - 123429 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\structures_f_exp_infrastructure.pbo - 132117 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\supplies_f_exp.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\ui_f_exp.pbo - 123398 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\vegetation_f_exp.pbo - 127271 10:01:32 C:\TCAFiles\Users\JohnT1\65924\expansion\addons\weapons_f_exp.pbo - 131546 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\anims_f_mark.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\characters_f_mark.pbo - 129739 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\data_f_mark.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\dubbing_f_mark.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\dubbing_f_mp_mark.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\functions_f_mark.pbo - 129645 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\functions_f_mp_mark.pbo - 129434 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\languagemissions_f_mark.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\languagemissions_f_mp_mark.pbo - 132106 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\language_f_mark.pbo - 132105 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\language_f_mp_mark.pbo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\missions_f_mark.pbo - 122301 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\missions_f_mark_data.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\missions_f_mark_video.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\missions_f_mp_mark.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\missions_f_mp_mark_data.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\modules_f_mark.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\modules_f_mp_mark.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\music_f_mark.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\music_f_mark_music.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\sounds_f_mark.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\static_f_mark.pbo - 130728 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\structures_f_mark.pbo - 123419 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\supplies_f_mark.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\ui_f_mark.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\ui_f_mp_mark.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\mark\addons\weapons_f_mark.pbo - 131460 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\air_f_heli.pbo - 132035 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\anims_f_heli.pbo - 123210 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\boat_f_heli.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\cargoposes_f_heli.pbo - 126231 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\data_f_heli.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\dubbing_f_heli.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\functions_f_heli.pbo - 123022 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\languagemissions_f_heli.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\language_f_heli.pbo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\missions_f_heli.pbo - 129397 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\missions_f_heli_data.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\missions_f_heli_video.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\modules_f_heli.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\music_f_heli.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\music_f_heli_music.pbo - 119477 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\soft_f_heli.pbo - 129742 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\sounds_f_heli.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\structures_f_heli.pbo - 129596 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\supplies_f_heli.pbo - 129371 10:01:32 C:\TCAFiles\Users\JohnT1\65924\heli\addons\ui_f_heli.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\anims_f_kart.pbo - 123210 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\characters_f_kart.pbo - 120162 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\data_f_kart.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\languagemissions_f_kart.pbo - 132104 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\language_f_kart.pbo - 132105 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\missions_f_kart.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\missions_f_kart_data.pbo - 119459 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\modules_f_kart.pbo - 128288 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\modules_f_kart_data.pbo - 124178 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\soft_f_kart.pbo - 129741 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\sounds_f_kart.pbo - 125381 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\structures_f_kart.pbo - 123419 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\ui_f_kart.pbo - 119478 10:01:32 C:\TCAFiles\Users\JohnT1\65924\kart\addons\weapons_f_kart.pbo - 120217 10:01:32 C:\TCAFiles\Users\JohnT1\65924\curator\addons\data_f_curator.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\curator\addons\data_f_curator_music.pbo - 119457 10:01:32 C:\TCAFiles\Users\JohnT1\65924\curator\addons\functions_f_curator.pbo - 123333 10:01:32 C:\TCAFiles\Users\JohnT1\65924\curator\addons\language_f_curator.pbo - 132107 10:01:32 C:\TCAFiles\Users\JohnT1\65924\curator\addons\missions_f_curator.pbo - 121570 10:01:32 C:\TCAFiles\Users\JohnT1\65924\curator\addons\modules_f_curator.pbo - 128381 10:01:32 C:\TCAFiles\Users\JohnT1\65924\curator\addons\ui_f_curator.pbo - 130996 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@Reduced Weapon Sway\addons\revo_reducedweaponsway.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@A3EAI\addons\a3eai.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@A3EAI\addons\a3eai_config.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@infiSTAR_A3\addons\a3_infistar.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\a3_custom.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\a3_epoch_wai.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\custom_server.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\dzms.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epochz.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_server.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_server_core.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_server_debris_event.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_server_events.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_server_settings.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_server_vip_event.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_spkcode_config.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\epoch_spk_esvp.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\loot_addon.pbo - unknown 10:01:32 C:\TCAFiles\Users\JohnT1\65924\@EpochHive\addons\traderatms.pbo - unknown 10:01:32 addons\3den.pbo - 131733 10:01:32 addons\3den_language.pbo - 132107 10:01:32 addons\a3.pbo - unknown 10:01:32 addons\air_f.pbo - 132032 10:01:32 addons\air_f_beta.pbo - 132118 10:01:32 addons\air_f_epb.pbo - 132034 10:01:32 addons\air_f_epc.pbo - 129848 10:01:32 addons\air_f_gamma.pbo - 130580 10:01:32 addons\animals_f.pbo - 131659 10:01:32 addons\animals_f_beta.pbo - 123208 10:01:32 addons\anims_f.pbo - 127133 10:01:32 addons\anims_f_bootcamp.pbo - 123209 10:01:32 addons\anims_f_data.pbo - 127133 10:01:32 addons\anims_f_epa.pbo - 129908 10:01:32 addons\anims_f_epc.pbo - 121358 10:01:32 addons\anims_f_exp_a.pbo - 123209 10:01:32 addons\armor_f.pbo - 129739 10:01:32 addons\armor_f_beta.pbo - 132035 10:01:32 addons\armor_f_epb.pbo - 129739 10:01:32 addons\armor_f_epc.pbo - 129739 10:01:32 addons\armor_f_gamma.pbo - 132036 10:01:32 addons\baseconfig_f.pbo - 119457 10:01:32 addons\boat_f.pbo - 132036 10:01:32 addons\boat_f_beta.pbo - 132036 10:01:32 addons\boat_f_epc.pbo - 131911 10:01:32 addons\boat_f_gamma.pbo - 127529 10:01:32 addons\cargoposes_f.pbo - 128420 10:01:32 addons\characters_f.pbo - 130081 10:01:32 addons\characters_f_beta.pbo - 129738 10:01:32 addons\characters_f_bootcamp.pbo - 129738 10:01:32 addons\characters_f_epa.pbo - 129738 10:01:32 addons\characters_f_epb.pbo - 129738 10:01:32 addons\characters_f_epc.pbo - 129738 10:01:32 addons\characters_f_gamma.pbo - 129738 10:01:32 addons\data_f.pbo - 132155 10:01:32 addons\data_f_bootcamp.pbo - 129618 10:01:32 addons\data_f_exp_a.pbo - 119457 10:01:32 addons\data_f_exp_b.pbo - 119457 10:01:32 addons\drones_f.pbo - 132036 10:01:32 addons\dubbing_f.pbo - 119457 10:01:32 addons\dubbing_f_beta.pbo - 119457 10:01:32 addons\dubbing_f_bootcamp.pbo - 119457 10:01:32 addons\dubbing_f_epa.pbo - 119457 10:01:32 addons\dubbing_f_epb.pbo - 119457 10:01:32 addons\dubbing_f_epc.pbo - 119457 10:01:32 addons\dubbing_f_gamma.pbo - 122449 10:01:32 addons\dubbing_radio_f.pbo - 119457 10:01:32 addons\dubbing_radio_f_data_eng.pbo - 119457 10:01:32 addons\dubbing_radio_f_data_engb.pbo - 119458 10:01:32 addons\dubbing_radio_f_data_gre.pbo - 119458 10:01:32 addons\dubbing_radio_f_data_per.pbo - 119458 10:01:32 addons\dubbing_radio_f_data_vr.pbo - 119458 10:01:32 addons\editorpreviews_f.pbo - 128120 10:01:32 addons\editor_f.pbo - 121103 10:01:32 addons\functions_f.pbo - 132155 10:01:32 addons\functions_f_bootcamp.pbo - 129770 10:01:32 addons\functions_f_epa.pbo - 119458 10:01:32 addons\functions_f_epc.pbo - 119458 10:01:32 addons\functions_f_exp_a.pbo - 122619 10:01:32 addons\languagemissions_f.pbo - 132104 10:01:32 addons\languagemissions_f_beta.pbo - 132104 10:01:32 addons\languagemissions_f_bootcamp.pbo - 132107 10:01:32 addons\languagemissions_f_epa.pbo - 132104 10:01:32 addons\languagemissions_f_epb.pbo - 132104 10:01:32 addons\languagemissions_f_epc.pbo - 132123 10:01:32 addons\languagemissions_f_exp_a.pbo - 132107 10:01:32 addons\languagemissions_f_gamma.pbo - 132104 10:01:32 addons\language_f.pbo - 132107 10:01:32 addons\language_f_beta.pbo - 132107 10:01:32 addons\language_f_bootcamp.pbo - 132104 10:01:32 addons\language_f_epa.pbo - 132104 10:01:32 addons\language_f_epb.pbo - 132107 10:01:32 addons\language_f_epc.pbo - 132104 10:01:32 addons\language_f_exp_a.pbo - 132104 10:01:32 addons\language_f_exp_b.pbo - 132104 10:01:32 addons\language_f_gamma.pbo - 132107 10:01:32 addons\map_altis.pbo - 127995 10:01:32 addons\map_altis_data.pbo - 123439 10:01:32 addons\map_altis_data_layers.pbo - 123456 10:01:32 addons\map_altis_data_layers_00_00.pbo - 0000 10:01:32 addons\map_altis_data_layers_00_01.pbo - 0000 10:01:32 addons\map_altis_data_layers_01_00.pbo - 0000 10:01:32 addons\map_altis_data_layers_01_01.pbo - 0000 10:01:32 addons\map_altis_scenes_f.pbo - 119459 10:01:32 addons\map_data.pbo - 127098 10:01:32 addons\map_stratis.pbo - 129518 10:01:32 addons\map_stratis_data.pbo - 122905 10:01:32 addons\map_stratis_data_layers.pbo - 122917 10:01:32 addons\map_stratis_scenes_f.pbo - 119459 10:01:32 addons\map_vr.pbo - 131719 10:01:32 addons\map_vr_scenes_f.pbo - 119459 10:01:32 addons\misc_f.pbo - 119459 10:01:32 addons\missions_f.pbo - 129735 10:01:32 addons\missions_f_beta.pbo - 122470 10:01:32 addons\missions_f_beta_data.pbo - 119459 10:01:32 addons\missions_f_beta_video.pbo - 119459 10:01:32 addons\missions_f_bootcamp.pbo - 129645 10:01:32 addons\missions_f_bootcamp_data.pbo - 119459 10:01:32 addons\missions_f_bootcamp_video.pbo - 119459 10:01:32 addons\missions_f_data.pbo - 119459 10:01:32 addons\missions_f_epa.pbo - 132216 10:01:32 addons\missions_f_epa_data.pbo - 119459 10:01:32 addons\missions_f_epa_video.pbo - 119459 10:01:32 addons\missions_f_epb.pbo - 119459 10:01:32 addons\missions_f_epc.pbo - 119459 10:01:32 addons\missions_f_exp_a.pbo - 121496 10:01:32 addons\missions_f_exp_a_data.pbo - 119459 10:01:32 addons\missions_f_gamma.pbo - 131918 10:01:32 addons\missions_f_gamma_data.pbo - 119459 10:01:32 addons\missions_f_gamma_video.pbo - 119459 10:01:32 addons\missions_f_video.pbo - 119459 10:01:32 addons\modules_f.pbo - 124453 10:01:32 addons\modules_f_beta.pbo - 119459 10:01:32 addons\modules_f_beta_data.pbo - 119459 10:01:32 addons\modules_f_bootcamp.pbo - 119459 10:01:32 addons\modules_f_data.pbo - 122470 10:01:32 addons\modules_f_epb.pbo - 119459 10:01:32 addons\modules_f_exp_a.pbo - 119459 10:01:32 addons\music_f.pbo - 119459 10:01:32 addons\music_f_bootcamp.pbo - 119459 10:01:32 addons\music_f_bootcamp_music.pbo - 119459 10:01:32 addons\music_f_epa.pbo - 119459 10:01:32 addons\music_f_epa_music.pbo - 119459 10:01:32 addons\music_f_epb.pbo - 119459 10:01:32 addons\music_f_epb_music.pbo - 119459 10:01:32 addons\music_f_epc.pbo - 119459 10:01:32 addons\music_f_epc_music.pbo - 119477 10:01:32 addons\music_f_music.pbo - 119477 10:01:32 addons\plants_f.pbo - 126807 10:01:32 addons\props_f_exp_a.pbo - 129371 10:01:32 addons\roads_f.pbo - 127271 10:01:32 addons\rocks_f.pbo - 127271 10:01:32 addons\signs_f.pbo - 127272 10:01:32 addons\soft_f.pbo - 132036 10:01:32 addons\soft_f_beta.pbo - 132036 10:01:32 addons\soft_f_bootcamp.pbo - 129739 10:01:32 addons\soft_f_epc.pbo - 129739 10:01:32 addons\soft_f_gamma.pbo - 131376 10:01:32 addons\sounds_f.pbo - 132162 10:01:32 addons\sounds_f_arsenal.pbo - 127887 10:01:32 addons\sounds_f_bootcamp.pbo - 119477 10:01:32 addons\sounds_f_characters.pbo - 121082 10:01:32 addons\sounds_f_environment.pbo - 120046 10:01:32 addons\sounds_f_epb.pbo - 126923 10:01:32 addons\sounds_f_epc.pbo - 125380 10:01:32 addons\sounds_f_exp_a.pbo - 119477 10:01:32 addons\sounds_f_sfx.pbo - 119477 10:01:32 addons\sounds_f_vehicles.pbo - 128448 10:01:32 addons\static_f.pbo - 132036 10:01:32 addons\static_f_beta.pbo - 122642 10:01:32 addons\static_f_gamma.pbo - 122615 10:01:32 addons\structures_f.pbo - 131287 10:01:32 addons\structures_f_bootcamp.pbo - 123488 10:01:32 addons\structures_f_data.pbo - 130046 10:01:32 addons\structures_f_epa.pbo - 123407 10:01:32 addons\structures_f_epb.pbo - 126137 10:01:32 addons\structures_f_epc.pbo - 123407 10:01:32 addons\structures_f_exp_a.pbo - 123423 10:01:32 addons\structures_f_households.pbo - 129369 10:01:32 addons\structures_f_ind.pbo - 130947 10:01:32 addons\structures_f_mil.pbo - 127270 10:01:32 addons\structures_f_wrecks.pbo - 129371 10:01:32 addons\uifonts_f.pbo - 119478 10:01:32 addons\uifonts_f_data.pbo - 128439 10:01:32 addons\ui_f.pbo - 131720 10:01:32 addons\ui_f_bootcamp.pbo - 119478 10:01:32 addons\ui_f_data.pbo - 129859 10:01:32 addons\ui_f_exp_a.pbo - 119478 10:01:32 addons\weapons_f.pbo - 132157 10:01:32 addons\weapons_f_beta.pbo - 130487 10:01:32 addons\weapons_f_bootcamp.pbo - 124358 10:01:32 addons\weapons_f_epa.pbo - 124514 10:01:32 addons\weapons_f_epb.pbo - 124216 10:01:32 addons\weapons_f_epc.pbo - 130416 10:01:32 addons\weapons_f_gamma.pbo - 120217 10:01:32 10:01:32 ======================= 10:01:32 10:01:32 ============================================================================================= List of mods =============================================================================================== 10:01:32 modsReadOnly = true 10:01:32 safeModsActivated = false 10:01:32 customMods = true 10:01:32 hash = 'E1464C786D82D916B04EE16A156C5AAA743E5598' 10:01:32 hashShort = '67eecb19' 10:01:32 name | modDir | default | origin | hash | hashShort | fullPath 10:01:32 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 10:01:32 CUP Weapons 1.10.1 | @CUP Weapons | false | GAME DIR | 033420968e76d74dbbeb0b40f0eec7984a6978f1 | 249d5372 | C:\TCAFiles\Users\JohnT1\65924\@CUP Weapons 10:01:32 CUP Vehicles 1.10.1 | @CUP Vehicles | false | GAME DIR | 32872fe828e6a8e0c05ea2dbd208c05f35d816c0 | 2346a5e6 | C:\TCAFiles\Users\JohnT1\65924\@CUP Vehicles 10:01:32 CUP Units 1.10.1 | @CUP Units | false | GAME DIR | 17e998fdad6f4ac051e5526854ead37377db800e | 80be0358 | C:\TCAFiles\Users\JohnT1\65924\@CUP Units 10:01:32 Community Base Addons v3.8.0 | @CBA_A3 | false | GAME DIR | 6304a49f3adaa42c1c4fc161d83107a2f59bc243 | 9d5b3d15 | C:\TCAFiles\Users\JohnT1\65924\@CBA_A3 10:01:32 CUP Terrains - Core 1.4.2 | @CUP_Terrains_Core | false | GAME DIR | 3e43cf6f60835dfe6d8e450bcd49eab579e096eb | 9e41eb9 | C:\TCAFiles\Users\JohnT1\65924\@CUP_Terrains_Core 10:01:32 Ryan's Zombies & Demons | @Ryanzombies | false | GAME DIR | 9439c7ffe34403657997eac04e10bb889d81d3c6 | ff6bd66c | C:\TCAFiles\Users\JohnT1\65924\@Ryanzombies 10:01:32 Australia V5.09 | @Australia 5.0.9 | false | GAME DIR | 5961e4dc71872e83723080b5a47af30ebf4a8a4d | 2484fa70 | C:\TCAFiles\Users\JohnT1\65924\@Australia 5.0.9 10:01:32 Epoch Mod 1.2.0 | @Epoch | false | GAME DIR | 02ed17fb0b0b859b45ac71ba84bd2285d66b3a71 | 4efd885a | C:\TCAFiles\Users\JohnT1\65924\@Epoch 10:01:32 Arma 3 DLC Bundle 2 | dlcbundle2 | true | NOT FOUND | | | 10:01:32 Arma 3 DLC Bundle 1 | dlcbundle | true | NOT FOUND | | | 10:01:32 Arma 3 Tanks | tank | true | GAME DIR | 2bb31a61f207ce3731c49bc04f74f83869e9d520 | 3c916866 | C:\TCAFiles\Users\JohnT1\65924\tank 10:01:32 Arma 3 Tac-Ops | tacops | true | GAME DIR | 2f25d6c15d999303bfeafc6acc5ea03d366f6180 | 80a05d1 | C:\TCAFiles\Users\JohnT1\65924\tacops 10:01:32 Arma 3 Laws of War | orange | true | GAME DIR | d8184520c36a84101cd0c179f415f720ec3827ac | e6b18e89 | C:\TCAFiles\Users\JohnT1\65924\orange 10:01:32 Arma 3 Malden | argo | true | GAME DIR | 00f37f3df7324bde5a9c6948c4209dd2bfc523fb | e63cbefc | C:\TCAFiles\Users\JohnT1\65924\argo 10:01:32 Arma 3 Jets | jets | true | GAME DIR | 304f5089d60d4023701471d276626aa2809f833a | b486847 | C:\TCAFiles\Users\JohnT1\65924\jets 10:01:32 Arma 3 Apex | expansion | true | GAME DIR | 2cf0f107eb7e4097fecdbb598a99dbac0c8d5f22 | d938f4af | C:\TCAFiles\Users\JohnT1\65924\expansion 10:01:32 Arma 3 Marksmen | mark | true | GAME DIR | b494f3c091d8febad254479f4e5cfb748423110c | bdcf5b5e | C:\TCAFiles\Users\JohnT1\65924\mark 10:01:32 Arma 3 Helicopters | heli | true | GAME DIR | b3b5c6ce05bfcb23cda002553f2bdfab7d464980 | e345e686 | C:\TCAFiles\Users\JohnT1\65924\heli 10:01:32 Arma 3 Karts | kart | true | GAME DIR | b0986e5d7cae802e2fcb334c6344535637b9acf8 | f58753fb | C:\TCAFiles\Users\JohnT1\65924\kart 10:01:32 Arma 3 Zeus | curator | true | GAME DIR | 08d04c76323ed7cecf16b535abbf3a89e6fa1fba | 36cc0e59 | C:\TCAFiles\Users\JohnT1\65924\curator 10:01:32 Arma 3 | A3 | true | NOT FOUND | | | 10:01:32 Reduced Weapon Sway | @Reduced Weapon Sway | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\JohnT1\65924\@Reduced Weapon Sway 10:01:32 @A3EAI | @A3EAI | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\JohnT1\65924\@A3EAI 10:01:32 @infiSTAR_A3 | @infiSTAR_A3 | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\JohnT1\65924\@infiSTAR_A3 10:01:32 @EpochHive | @EpochHive | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\JohnT1\65924\@EpochHive 10:01:32 ========================================================================================================================================================================================================== 10:01:32 InitSound ... 10:01:32 InitSound - complete 10:01:32 PhysX3 SDK Init started ... 10:01:32 PhysX3 SDK Init ended. 10:01:36 [0,86.137,0,"XEH: PreStart started."] 10:01:36 [CBA] (settings) INFO: Userconfig: Ignored. 10:01:36 [0,86.525,0,"XEH: PreStart finished."] 10:01:36 [XEH]: Ryanzombieslogiceasy does not support Extended Event Handlers! Addon: @Ryanzombies 10:01:36 [XEH]: Ryanzombieslogicspawnfast1opfor does not support Extended Event Handlers! Addon: @Ryanzombies 10:01:36 [XEH]: VirtualMan_EPOCH does not support Extended Event Handlers! Addon: @Epoch 10:01:36 [XEH]: MBK_EPOCH_BASE does not support Extended Event Handlers! Addon: @Epoch 10:01:36 core\skyobject\skyobject.p3d: No geometry and no visual shape 10:01:36 a3\data_f\krater.p3d: No geometry and no visual shape 10:01:36 a3\data_f\koule.p3d: No geometry and no visual shape 10:01:37 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted. a3_characters_f 10:01:37 Loading movesType CfgGesturesMale 10:01:37 Creating action map cache 10:01:37 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:37 MovesType CfgGesturesMale load time 203 ms 10:01:37 Loading movesType CfgMovesMaleSdr 10:01:38 Creating action map cache 10:01:51 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton 10:01:51 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton 10:01:53 MovesType CfgMovesMaleSdr load time 15652 ms 10:01:53 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape 10:01:53 VoteThreshold must be in 0..1 range. Defaulting to 0.5 10:01:53 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303 10:01:53 Steam AppId from steam_appid.txt: 107410 10:01:55 Starting mission: 10:01:55 Mission file: epoch (__cur_mp) 10:01:55 Mission world: Australia 10:01:55 Mission directory: mpmissions\__cur_mp.Australia\ 10:01:57 a3\data_f\blesk1.p3d: No geometry and no visual shape 10:01:57 a3\data_f\blesk2.p3d: No geometry and no visual shape 10:01:57 ca\plants\clutter_flower_mix.p3d: No geometry and no visual shape 10:01:58 a3\data_f\raindrop.p3d: No geometry and no visual shape 10:01:58 a3\map_stratis\data\obloha.p3d: No geometry and no visual shape 10:01:58 a3\data_f\stars.p3d: No geometry and no visual shape 10:01:58 a3\map_stratis\data\horizont.p3d: No geometry and no visual shape 10:01:58 a3\data_f\rainbow.p3d: No geometry and no visual shape 10:02:01 ca\roads\sil10 100.p3d: No geometry and no visual shape 10:02:01 ca\roads\sil10 25.p3d: No geometry and no visual shape 10:02:01 ca\roads\sil10 75.p3d: No geometry and no visual shape 10:02:02 ca\roads\sil10 50.p3d: No geometry and no visual shape 10:02:02 ausextras\road\handicap.p3d: No geometry and no visual shape 10:02:02 ausextras\road\sidewalkcrossing.p3d: No geometry and no visual shape 10:02:02 ausextras\road\asfcrosswalknew.p3d: No geometry and no visual shape 10:02:02 Warning Message: Cannot open object ca\roads\sil10_50.p3d 10:02:02 ca\roads\sil10_50.p3d: No geometry and no visual shape 10:02:02 ausextras\road\sidewalkcrossinglong.p3d: No geometry and no visual shape 10:02:02 No more slot to add connection at 053184 (5315.7,18409.1) 10:02:02 No more slot to add connection at 065190 (6505.2,19073.8) 10:02:02 No more slot to add connection at 065190 (6517.7,19074.2) 10:02:02 No more slot to add connection at 100169 (10029.4,16993.2) 10:02:02 No more slot to add connection at 162336 (16292.4,33612.9) 10:02:02 No more slot to add connection at 185156 (18555.8,15613.3) 10:02:02 No more slot to add connection at 185156 (18556.9,15607.1) 10:02:02 No more slot to add connection at 185156 (18555.8,15613.3) 10:02:02 No more slot to add connection at 203131 (20345.2,13187.8) 10:02:02 No more slot to add connection at 203131 (20351.8,13190.5) 10:02:02 No more slot to add connection at 203131 (20375.1,13199.4) 10:02:02 No more slot to add connection at 203132 (20398.4,13208.4) 10:02:02 No more slot to add connection at 204132 (20421.8,13217.3) 10:02:02 No more slot to add connection at 204132 (20445.1,13226.3) 10:02:02 No more slot to add connection at 204132 (20468.4,13235.2) 10:02:02 No more slot to add connection at 204132 (20491.8,13244.2) 10:02:02 No more slot to add connection at 205132 (20515.1,13253.2) 10:02:02 No more slot to add connection at 205132 (20538.5,13262.1) 10:02:02 No more slot to add connection at 205132 (20542.4,13264.0) 10:02:02 No more slot to add connection at 205132 (20563.8,13276.9) 10:02:02 No more slot to add connection at 205132 (20585.2,13289.8) 10:02:02 No more slot to add connection at 206133 (20606.7,13302.7) 10:02:02 No more slot to add connection at 206133 (20610.2,13305.2) 10:02:02 No more slot to add connection at 206133 (20613.2,13308.4) 10:02:02 No more slot to add connection at 206133 (20615.7,13312.0) 10:02:02 No more slot to add connection at 206133 (20627.8,13333.8) 10:02:02 No more slot to add connection at 206133 (20639.9,13355.7) 10:02:02 No more slot to add connection at 206133 (20652.0,13377.6) 10:02:02 No more slot to add connection at 206133 (20664.1,13399.4) 10:02:02 No more slot to add connection at 206134 (20666.6,13403.0) 10:02:02 No more slot to add connection at 206134 (20669.6,13406.2) 10:02:02 No more slot to add connection at 206134 (20673.1,13408.7) 10:02:02 No more slot to add connection at 206134 (20694.6,13421.6) 10:02:02 No more slot to add connection at 207134 (20716.0,13434.5) 10:02:02 No more slot to add connection at 207134 (20737.4,13447.4) 10:02:02 No more slot to add connection at 207134 (20740.9,13449.9) 10:02:02 No more slot to add connection at 207134 (20744.0,13453.1) 10:02:02 No more slot to add connection at 207134 (20746.4,13456.7) 10:02:02 No more slot to add connection at 207134 (20758.5,13478.5) 10:02:02 No more slot to add connection at 207135 (20770.6,13500.4) 10:02:02 No more slot to add connection at 207135 (20782.8,13522.3) 10:02:02 No more slot to add connection at 207135 (20794.9,13544.1) 10:02:02 No more slot to add connection at 208135 (20807.0,13566.0) 10:02:02 No more slot to add connection at 208135 (20819.1,13587.9) 10:02:02 No more slot to add connection at 208136 (20831.2,13609.7) 10:02:02 No more slot to add connection at 208136 (20843.4,13631.6) 10:02:02 No more slot to add connection at 208136 (20845.8,13635.2) 10:02:02 No more slot to add connection at 208136 (20848.8,13638.4) 10:02:02 No more slot to add connection at 208136 (20852.4,13640.9) 10:02:02 No more slot to add connection at 208136 (20856.3,13642.8) 10:02:02 No more slot to add connection at 208136 (20879.6,13651.8) 10:02:02 No more slot to add connection at 209136 (20903.0,13660.7) 10:02:02 No more slot to add connection at 209136 (20926.3,13669.7) 10:02:02 No more slot to add connection at 209136 (20930.2,13671.6) 10:02:02 No more slot to add connection at 209136 (20933.7,13674.2) 10:02:02 No more slot to add connection at 209136 (20936.8,13677.3) 10:02:02 No more slot to add connection at 209136 (20939.2,13680.9) 10:02:02 No more slot to add connection at 209137 (20951.3,13702.8) 10:02:02 No more slot to add connection at 209137 (20963.4,13724.7) 10:02:02 No more slot to add connection at 209137 (20975.6,13746.5) 10:02:02 No more slot to add connection at 209137 (20987.7,13768.4) 10:02:02 No more slot to add connection at 209137 (20999.8,13790.2) 10:02:02 No more slot to add connection at 210138 (21011.9,13812.1) 10:02:02 No more slot to add connection at 210138 (21024.0,13834.0) 10:02:02 No more slot to add connection at 210138 (21030.1,13844.9) 10:02:02 No more slot to add connection at 244169 (24479.9,16940.4) 10:02:02 No more slot to add connection at 244169 (24496.0,16959.6) 10:02:02 No more slot to add connection at 245169 (24512.0,16978.7) 10:02:02 No more slot to add connection at 245169 (24528.1,16997.9) 10:02:02 No more slot to add connection at 245170 (24531.2,17001.0) 10:02:02 No more slot to add connection at 245170 (24534.8,17003.5) 10:02:02 No more slot to add connection at 245170 (24556.4,17016.0) 10:02:02 No more slot to add connection at 245170 (24578.1,17028.5) 10:02:02 No more slot to add connection at 245170 (24585.2,17033.5) 10:02:02 No more slot to add connection at 246170 (24604.3,17049.5) 10:02:02 No more slot to add connection at 246170 (24623.5,17065.6) 10:02:02 No more slot to add connection at 246170 (24642.6,17081.7) 10:02:02 No more slot to add connection at 246170 (24661.8,17097.7) 10:02:02 No more slot to add connection at 246171 (24665.4,17100.2) 10:02:02 No more slot to add connection at 246171 (24687.0,17112.7) 10:02:02 No more slot to add connection at 247171 (24708.7,17125.2) 10:02:02 No more slot to add connection at 247171 (24730.3,17137.7) 10:02:02 No more slot to add connection at 247171 (24752.0,17150.2) 10:02:02 No more slot to add connection at 247171 (24759.1,17155.2) 10:02:02 No more slot to add connection at 247171 (24765.3,17161.4) 10:02:02 No more slot to add connection at 247171