Bishopob Posted September 11, 2018 Report Share 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. He-Man 1 Link to comment Share on other sites More sharing options...
He-Man Posted September 11, 2018 Report Share 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? Link to comment Share on other sites More sharing options...
Bishopob Posted September 11, 2018 Report Share 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 Link to comment Share on other sites More sharing options...
Bishopob Posted September 12, 2018 Report Share 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? Link to comment Share on other sites More sharing options...
Grahame Posted September 12, 2018 Report Share 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"; Link to comment Share on other sites More sharing options...
Bishopob Posted September 13, 2018 Report Share 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 Link to comment Share on other sites More sharing options...
C4-timah Posted September 28, 2018 Report Share Posted September 28, 2018 On 9/7/2016 at 10: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 Expand 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? Link to comment Share on other sites More sharing options...
He-Man Posted September 28, 2018 Report Share Posted September 28, 2018 YOu should provide us your server rpt log to check for errors Link to comment Share on other sites More sharing options...
C4-timah Posted September 28, 2018 Report Share Posted September 28, 2018 On 9/28/2018 at 4:50 PM, He-Man said: YOu should provide us your server rpt log to check for errors Expand 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. Link to comment Share on other sites More sharing options...
C4-timah Posted September 28, 2018 Report Share 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. Expand 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. Expand 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}; }; Link to comment Share on other sites More sharing options...
He-Man Posted September 29, 2018 Report Share 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}; }; Link to comment Share on other sites More sharing options...
C4-timah Posted September 29, 2018 Report Share Posted September 29, 2018 On 9/29/2018 at 1:59 PM, 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}; }; Expand 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! Link to comment Share on other sites More sharing options...
megaz Posted October 2, 2018 Report Share 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 Link to comment Share on other sites More sharing options...
megaz Posted October 4, 2018 Report Share Posted October 4, 2018 On 5/29/2015 at 4:09 PM, psychosis said: some trouble with selling car and etc vehicle from mission (ZEV) Expand Anyone else have this issue ? Link to comment Share on other sites More sharing options...
C4-timah Posted October 4, 2018 Report Share Posted October 4, 2018 On 10/2/2018 at 3:54 PM, 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 Expand I believe the answer to this is back on page 38. I had a similar issue but with buying vehicles from the HS Traders. Link to comment Share on other sites More sharing options...
megaz Posted October 4, 2018 Report Share Posted October 4, 2018 Thank for the reply I already have that see below ? Reveal hidden contents /* 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 : halvhjearne@gmail.com */ //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]; Link to comment Share on other sites More sharing options...
C4-timah Posted October 4, 2018 Report Share 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"; Link to comment Share on other sites More sharing options...
megaz Posted October 5, 2018 Report Share 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 Link to comment Share on other sites More sharing options...
C4-timah Posted October 5, 2018 Report Share 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? Link to comment Share on other sites More sharing options...
megaz Posted October 5, 2018 Report Share Posted October 5, 2018 Hi C4 logs below I could not see where it was not sold. Client RPT Reveal hidden contents ===================================================================== == 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: Link to comment Share on other sites More sharing options...
megaz Posted October 5, 2018 Report Share Posted October 5, 2018 Server RPT Reveal hidden contents ===================================================================== == 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 (24781.3,17180.6) 10:02:02 No more slot to add connection at 247171 (24797.4,17199.7) 10:02:02 No more slot to add connection at 248172 (24803.6,17205.9) 10:02:02 No more slot to add connection at 248172 (24822.7,17221.9) 10:02:02 No more slot to add connection at 248172 (24841.9,17238.0) 10:02:02 No more slot to add connection at 248172 (24861.0,17254.1) 10:02:02 No more slot to add connection at 248172 (24880.2,17270.1) 10:02:02 No more slot to add connection at 248172 (24899.3,17286.2) 10:02:02 No more slot to add connection at 249173 (24918.5,17302.3) 10:02:02 No more slot to add connection at 249173 (24937.6,17318.4) 10:02:02 No more slot to add connection at 249173 (24956.8,17334.4) 10:02:02 No more slot to add connection at 249173 (24975.9,17350.5) 10:02:02 No more slot to add connection at 249173 (24995.1,17366.6) 10:02:02 No more slot to add connection at 250173 (25014.2,17382.6) 10:02:02 No more slot to add connection at 250173 (25033.4,17398.7) 10:02:02 No more slot to add connection at 250174 (25052.5,17414.8) 10:02:02 No more slot to add connection at 250174 (25071.7,17430.8) 10:02:02 No more slot to add connection at 250174 (25090.8,17446.9) 10:02:02 No more slot to add connection at 251174 (25100.1,17456.2) 10:02:02 No more slot to add connection at 251174 (25107.6,17466.9) 10:02:02 No more slot to add connection at 251174 (25113.1,17478.7) 10:02:02 No more slot to add connection at 251175 (25121.7,17502.2) 10:02:02 No more slot to add connection at 251175 (25130.2,17525.7) 10:02:02 No more slot to add connection at 251175 (25138.8,17549.2) 10:02:02 No more slot to add connection at 251175 (25142.4,17557.1) 10:02:02 No more slot to add connection at 251175 (25147.4,17564.2) 10:02:02 No more slot to add connection at 251175 (25153.6,17570.4) 10:02:02 No more slot to add connection at 251175 (25172.8,17586.5) 10:02:02 No more slot to add connection at 251176 (25191.9,17602.5) 10:02:02 No more slot to add connection at 252176 (25211.1,17618.6) 10:02:02 No more slot to add connection at 252176 (25230.2,17634.7) 10:02:02 No more slot to add connection at 252176 (25249.4,17650.7) 10:02:02 No more slot to add connection at 252176 (25256.5,17655.7) 10:02:02 No more slot to add connection at 252176 (25264.4,17659.4) 10:02:02 No more slot to add connection at 252176 (25287.9,17668.0) 10:02:02 No more slot to add connection at 253126 (25323.8,12635.2) 10:02:02 No more slot to add connection at 253126 (25323.8,12641.4) 10:02:02 No more slot to add connection at 253126 (25323.8,12635.2) 10:02:02 No more slot to add connection at 253126 (25323.8,12641.4) 10:02:02 No more slot to add connection at 253176 (25311.4,17676.5) 10:02:02 No more slot to add connection at 253176 (25334.9,17685.1) 10:02:02 No more slot to add connection at 253176 (25358.4,17693.6) 10:02:02 No more slot to add connection at 253176 (25366.8,17695.9) 10:02:02 No more slot to add connection at 253177 (25391.4,17700.2) 10:02:02 No more slot to add connection at 254177 (25416.0,17704.6) 10:02:02 No more slot to add connection at 254177 (25440.6,17708.9) 10:02:02 No more slot to add connection at 254177 (25465.3,17713.2) 10:02:02 No more slot to add connection at 254177 (25489.9,17717.6) 10:02:02 No more slot to add connection at 255122 (25532.2,12293.6) 10:02:02 No more slot to add connection at 255177 (25514.5,17721.9) 10:02:02 No more slot to add connection at 255177 (25539.1,17726.3) 10:02:02 No more slot to add connection at 255177 (25563.7,17730.6) 10:02:02 No more slot to add connection at 255177 (25588.4,17734.9) 10:02:02 No more slot to add connection at 256177 (25613.0,17739.3) 10:02:02 No more slot to add connection at 256177 (25637.6,17743.6) 10:02:02 No more slot to add connection at 256177 (25662.2,17748.0) 10:02:02 No more slot to add connection at 256177 (25686.8,17752.3) 10:02:02 No more slot to add connection at 257177 (25711.5,17756.7) 10:02:02 No more slot to add connection at 257177 (25724.1,17760.0) 10:02:02 No more slot to add connection at 257177 (25747.6,17768.6) 10:02:02 No more slot to add connection at 257177 (25756.0,17770.8) 10:02:02 No more slot to add connection at 257177 (25780.6,17775.2) 10:02:02 No more slot to add connection at 258177 (25805.2,17779.5) 10:02:02 No more slot to add connection at 258177 (25813.9,17780.3) 10:02:02 No more slot to add connection at 258177 (25838.9,17780.3) 10:02:02 No more slot to add connection at 258177 (25863.9,17780.3) 10:02:02 No more slot to add connection at 258177 (25888.9,17780.3) 10:02:02 No more slot to add connection at 259177 (25913.9,17780.3) 10:02:02 No more slot to add connection at 259177 (25938.9,17780.3) 10:02:02 No more slot to add connection at 259177 (25963.9,17780.3) 10:02:02 No more slot to add connection at 259177 (25988.9,17780.3) 10:02:02 No more slot to add connection at 260177 (26013.9,17780.3) 10:02:02 No more slot to add connection at 260177 (26038.9,17780.3) 10:02:02 No more slot to add connection at 260177 (26063.9,17780.3) 10:02:02 No more slot to add connection at 260177 (26088.9,17780.3) 10:02:02 No more slot to add connection at 261177 (26113.9,17780.3) 10:02:02 No more slot to add connection at 261177 (26138.9,17780.3) 10:02:02 No more slot to add connection at 261177 (26163.9,17780.3) 10:02:02 No more slot to add connection at 261177 (26188.9,17780.3) 10:02:02 No more slot to add connection at 262177 (26213.9,17780.3) 10:02:02 No more slot to add connection at 262177 (26238.9,17780.3) 10:02:02 No more slot to add connection at 262177 (26263.9,17780.3) 10:02:02 No more slot to add connection at 262177 (26288.9,17780.3) 10:02:02 No more slot to add connection at 263177 (26313.9,17780.3) 10:02:02 No more slot to add connection at 263177 (26338.9,17780.3) 10:02:02 No more slot to add connection at 263177 (26363.9,17780.3) 10:02:02 No more slot to add connection at 263177 (26388.9,17780.3) 10:02:02 No more slot to add connection at 264177 (26413.9,17780.3) 10:02:02 No more slot to add connection at 264177 (26438.9,17780.3) 10:02:02 No more slot to add connection at 264177 (26463.9,17780.3) 10:02:02 No more slot to add connection at 264177 (26488.9,17780.3) 10:02:02 No more slot to add connection at 265177 (26513.9,17780.3) 10:02:02 No more slot to add connection at 265177 (26538.9,17780.3) 10:02:02 No more slot to add connection at 265177 (26563.9,17780.3) 10:02:02 No more slot to add connection at 265177 (26588.9,17780.3) 10:02:02 No more slot to add connection at 266177 (26613.9,17780.3) 10:02:02 No more slot to add connection at 266177 (26638.9,17780.3) 10:02:02 No more slot to add connection at 266177 (26663.9,17780.3) 10:02:02 No more slot to add connection at 266177 (26688.9,17780.3) 10:02:02 No more slot to add connection at 266177 (26693.3,17779.9) 10:02:02 No more slot to add connection at 267177 (26717.9,17775.6) 10:02:02 No more slot to add connection at 267177 (26742.5,17771.2) 10:02:02 No more slot to add connection at 267177 (26767.1,17766.9) 10:02:02 No more slot to add connection at 267177 (26791.8,17762.5) 10:02:02 No more slot to add connection at 268177 (26816.4,17758.2) 10:02:02 No more slot to add connection at 268177 (26841.0,17753.9) 10:02:02 No more slot to add connection at 268177 (26865.6,17749.5) 10:02:02 No more slot to add connection at 268177 (26890.2,17745.2) 10:02:02 No more slot to add connection at 268177 (26894.4,17744.1) 10:02:02 No more slot to add connection at 268177 (26898.4,17742.2) 10:02:02 No more slot to add connection at 269177 (26920.0,17729.7) 10:02:02 No more slot to add connection at 269177 (26941.7,17717.2) 10:02:02 No more slot to add connection at 269177 (26961.6,17700.5) 10:02:02 No more slot to add connection at 269176 (26977.7,17681.3) 10:02:02 No more slot to add connection at 269176 (26993.8,17662.2) 10:02:02 No more slot to add connection at 270176 (27009.9,17643.0) 10:02:02 No more slot to add connection at 270176 (27042.0,17604.7) 10:02:02 No more slot to add connection at 270175 (27058.1,17585.6) 10:02:02 No more slot to add connection at 270175 (27074.1,17566.4) 10:02:02 No more slot to add connection at 271175 (27106.3,17528.1) 10:02:02 No more slot to add connection at 270175 (27090.2,17547.3) 10:02:02 No more slot to add connection at 271175 (27122.3,17509.0) 10:02:02 No more slot to add connection at 271174 (27138.4,17489.8) 10:02:02 No more slot to add connection at 271174 (27154.5,17470.7) 10:02:02 No more slot to add connection at 271174 (27186.6,17432.4) 10:02:02 No more slot to add connection at 271174 (27170.6,17451.5) 10:02:02 No more slot to add connection at 271174 (27195.9,17423.1) 10:02:02 No more slot to add connection at 272174 (27215.0,17407.0) 10:02:02 No more slot to add connection at 272174 (27205.4,17415.1) 10:02:02 No more slot to add connection at 272173 (27234.2,17391.0) 10:02:02 No more slot to add connection at 272173 (27272.5,17358.8) 10:02:02 No more slot to add connection at 272173 (27253.3,17374.9) 10:02:02 No more slot to add connection at 272173 (27281.7,17349.6) 10:02:02 No more slot to add connection at 272173 (27297.8,17330.4) 10:02:02 No more slot to add connection at 273173 (27313.9,17311.3) 10:02:02 No more slot to add connection at 273172 (27346.0,17273.0) 10:02:02 No more slot to add connection at 273172 (27329.9,17292.1) 10:02:02 No more slot to add connection at 273172 (27362.1,17253.8) 10:02:02 No more slot to add connection at 273172 (27378.1,17234.7) 10:02:02 No more slot to add connection at 273172 (27394.2,17215.5) 10:02:02 No more slot to add connection at 274171 (27410.3,17196.4) 10:02:02 No more slot to add connection at 274171 (27442.4,17158.1) 10:02:02 No more slot to add connection at 274171 (27458.5,17138.9) 10:02:02 No more slot to add connection at 274171 (27474.6,17119.8) 10:02:02 No more slot to add connection at 274171 (27458.5,17138.9) 10:02:02 No more slot to add connection at 277171 (27752.8,17148.0) 10:02:02 No more slot to add connection at 305098 (30559.8,9878.5) 10:02:02 No more slot to add connection at 305098 (30559.6,9891.0) 10:02:02 No more slot to add connection at 314167 (31482.9,16787.0) 10:02:02 No more slot to add connection at 318163 (31833.6,16361.7) 10:02:02 No more slot to add connection at 321298 (32147.9,29881.9) 10:02:02 No more slot to add connection at 321298 (32172.5,29886.2) 10:02:02 No more slot to add connection at 321298 (32147.9,29881.9) 10:02:02 No more slot to add connection at 321298 (32172.5,29886.2) 10:02:02 No more slot to add connection at 321298 (32147.9,29881.9) 10:02:02 No more slot to add connection at 321298 (32172.5,29886.2) 10:02:02 No more slot to add connection at 337132 (33747.3,13252.5) 10:02:02 No more slot to add connection at 337132 (33747.3,13252.5) 10:02:02 No more slot to add connection at 337132 (33759.6,13230.9) 10:02:02 No more slot to add connection at 337132 (33734.8,13274.4) 10:02:02 No more slot to add connection at 337132 (33772.0,13209.1) 10:02:02 No more slot to add connection at 337132 (33759.7,13230.8) 10:02:02 No more slot to add connection at 366121 (36617.6,12166.9) 10:02:02 No more slot to add connection at 379199 (37994.2,19942.2) 10:02:02 No more slot to add connection at 380199 (38000.4,19942.2) 10:02:02 No more slot to add connection at 381200 (38166.8,20017.6) 10:02:02 No more slot to add connection at 381200 (38173.0,20017.6) 10:02:02 No more slot to add connection at 383194 (38371.4,19411.3) 10:02:02 No more slot to add connection at 383194 (38371.4,19414.4) 10:02:02 No more slot to add connection at 383194 (38384.3,19411.3) 10:02:02 No more slot to add connection at 383194 (38384.3,19414.4) 10:02:02 No more slot to add connection at 383194 (38371.4,19414.2) 10:02:02 No more slot to add connection at 383194 (38390.7,19411.3) 10:02:02 No more slot to add connection at 383194 (38390.7,19414.4) 10:02:02 No more slot to add connection at 383194 (38377.8,19411.3) 10:02:02 No more slot to add connection at 383194 (38377.8,19414.4) 10:02:02 No more slot to add connection at 383194 (38390.7,19414.2) 10:02:02 No more slot to add connection at 383194 (38390.7,19417.3) 10:02:02 No more slot to add connection at 383194 (38371.4,19414.2) 10:02:02 No more slot to add connection at 383194 (38371.4,19417.3) 10:02:02 No more slot to add connection at 383194 (38377.8,19414.4) 10:02:02 No more slot to add connection at 383194 (38390.7,19414.2) 10:02:02 No more slot to add connection at 383194 (38390.7,19417.3) 10:02:02 No more slot to add connection at 383194 (38384.3,19414.2) 10:02:02 No more slot to add connection at 383194 (38384.3,19417.3) 10:02:02 No more slot to add connection at 383194 (38377.8,19417.3) 10:02:02 No more slot to add connection at 383194 (38384.3,19417.3) 10:02:02 No more slot to add connection at 383194 (38377.8,19414.2) 10:02:02 No more slot to add connection at 383194 (38377.8,19417.3) 10:02:02 No more slot to add connection at 383194 (38384.3,19414.4) 10:02:02 No more slot to add connection at 383200 (38372.3,20023.7) 10:02:02 No more slot to add connection at 383200 (38378.5,20023.7) 10:02:02 No more slot to add connection at 387190 (38710.1,19069.5) 10:02:02 No more slot to add connection at 387190 (38703.9,19069.5) 10:02:02 No more slot to add connection at 387190 (38710.1,19069.5) 10:02:02 No more slot to add connection at 387190 (38710.1,19069.5) 10:02:02 No more slot to add connection at 387190 (38735.1,19069.5) 10:02:02 No more slot to add connection at 387190 (38735.1,19069.5) 10:02:02 No more slot to add connection at 387190 (38735.1,19069.5) 10:02:02 No more slot to add connection at 387190 (38760.1,19069.5) 10:02:02 No more slot to add connection at 387190 (38778.8,19020.9) 10:02:02 No more slot to add connection at 387190 (38778.8,19020.9) 10:02:02 No more slot to add connection at 387190 (38791.3,19021.0) 10:02:02 No more slot to add connection at 387190 (38791.3,19021.0) 10:02:02 No more slot to add connection at 387190 (38791.3,19021.0) 10:02:02 No more slot to add connection at 388190 (38816.3,19021.1) 10:02:02 No more slot to add connection at 388190 (38816.1,19021.0) 10:02:02 No more slot to add connection at 388190 (38816.1,19021.0) 10:02:02 No more slot to add connection at 388192 (38873.1,19263.0) 10:02:02 No more slot to add connection at 388192 (38849.6,19254.6) 10:02:02 No more slot to add connection at 388192 (38873.2,19263.0) 10:02:02 No more slot to add connection at 388192 (38873.2,19263.0) 10:02:02 No more slot to add connection at 388192 (38896.7,19271.4) 10:02:02 No more slot to add connection at 388192 (38896.7,19271.4) 10:02:02 No more slot to add connection at 388192 (38896.7,19271.4) 10:02:02 No more slot to add connection at 389192 (38920.2,19279.9) 10:02:02 No more slot to add connection at 389192 (38920.2,19279.9) 10:02:02 No more slot to add connection at 389192 (38943.8,19288.3) 10:02:02 No more slot to add connection at 389192 (38920.2,19279.9) 10:02:02 No more slot to add connection at 389192 (38967.3,19296.7) 10:02:02 No more slot to add connection at 389192 (38943.8,19288.3) 10:02:02 No more slot to add connection at 389192 (38967.3,19296.7) 10:02:02 No more slot to add connection at 389192 (38943.8,19288.3) 10:02:02 No more slot to add connection at 389192 (38967.0,19296.7) 10:02:02 No more slot to add connection at 389192 (38967.0,19296.7) 10:02:02 No more slot to add connection at 389192 (38972.9,19298.8) 10:02:02 ausextras\signs\buildingsigns\e.p3d: No geometry and no visual shape 10:02:02 ausextras\signs\buildingsigns\o.p3d: No geometry and no visual shape 10:02:02 ausextras\signs\buildingsigns\s.p3d: No geometry and no visual shape 10:02:03 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:02:03 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:03 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:03 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:03 ausextras\road\arrow_sa.p3d: No geometry and no visual shape 10:02:03 ausextras\signs\igasignsmall.p3d: No geometry and no visual shape 10:02:05 ausextras\doors\window_b.p3d: No geometry and no visual shape 10:02:05 ausextras\signs\buildingsigns\24hours.p3d: No geometry and no visual shape 10:02:05 ausobjects\buildings\fuelstationnb.p3d: No geometry and no visual shape 10:02:05 ausobjects\signs\shopgo.p3d: No geometry and no visual shape 10:02:05 mm_buildings3\pub_c\proxy\bar.p3d: No geometry and no visual shape 10:02:05 mm_buildings3\pub_c\proxy\misc1.p3d: No geometry and no visual shape 10:02:05 mm_buildings3\pub_c\proxy\misc2.p3d: No geometry and no visual shape 10:02:06 mm_buildings3\pub_c\proxy\bed.p3d: No geometry and no visual shape 10:02:06 mm_buildings3\pub_c\proxy\wardrobe.p3d: No geometry and no visual shape 10:02:06 mm_buildings3\light\light.p3d: No geometry and no visual shape 10:02:06 mm_buildings3\pub_c\proxy\shackle.p3d: No geometry and no visual shape 10:02:06 mm_bank\words.p3d: No geometry and no visual shape 10:02:06 mm_bank\vaultroom.p3d: No geometry and no visual shape 10:02:06 mm_bank\wordsrev2.p3d: No geometry and no visual shape 10:02:06 mm_bank\miscrisk.p3d: No geometry and no visual shape 10:02:06 mm_bank\miscrisk.p3d: house, config class missing 10:02:07 ca\misc\pallets_column.p3d: No geometry and no visual shape 10:02:07 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:07 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:07 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:07 Strange convex component149 in mm_residential2\housedoubleal2.p3d:geometryFire 10:02:07 Strange convex component109 in mm_residential2\housedoubleal2.p3d:geometryView 10:02:07 Strange convex component145 in mm_residential2\housedoubleal2.p3d:geometryView 10:02:07 Strange convex component149 in mm_residential2\housedoubleal2.p3d:geometryView 10:02:07 Strange convex component183 in mm_residential2\housedoubleal2.p3d:geometryView 10:02:07 Strange convex component184 in mm_residential2\housedoubleal2.p3d:geometryView 10:02:07 Strange convex component188 in mm_residential2\housedoubleal2.p3d:geometryView 10:02:08 ca\buildings\dum_istan4_chodnik.p3d: No geometry and no visual shape 10:02:08 ausextras\signs\buildingsigns\melbourne.p3d: No geometry and no visual shape 10:02:08 a3\structures_f\dominants\hospital\hospital_f.p3d: house, config class missing 10:02:08 ausobjects\signs\blockiewashere.p3d: No geometry and no visual shape 10:02:08 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:08 ausextras\signs\buildingsigns\takeaway.p3d: No geometry and no visual shape 10:02:08 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Strange convex component07 in ausobjects\shell\bpexpress.p3d:geometry 10:02:09 Strange convex component10 in ausobjects\shell\bpexpress.p3d:geometry 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:10 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:10 mm_buildings\prison\gaol_gate.p3d: No geometry and no visual shape 10:02:10 mm_buildings\prison\prison_misc.p3d: No geometry and no visual shape 10:02:10 Error: selection Ladder_1_end missing in memory LOD of model mm_buildings\prison\gateb\gateb.p3d 10:02:10 Error: selection Ladder_2_end missing in memory LOD of model mm_buildings\prison\gateb\gateb.p3d 10:02:10 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:10 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:10 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:10 Error: selection Ladder_1_end missing in memory LOD of model mm_buildings\prison\gatea\gatedoora.p3d 10:02:10 Error: selection Ladder_2_end missing in memory LOD of model mm_buildings\prison\gatea\gatedoora.p3d 10:02:10 mm_buildings\prison\prison_misc.p3d: house, config class missing 10:02:10 Strange convex component115 in mm_buildings\prison\gaol_main.p3d:geometry 10:02:10 Error: selection Ladder_1_end missing in memory LOD of model mm_buildings\prison\gaol_main.p3d 10:02:10 Error: selection Ladder_2_end missing in memory LOD of model mm_buildings\prison\gaol_main.p3d 10:02:10 mm_buildings\prison\proxynew\rooftop2.p3d: vehicle, config class missing 10:02:10 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:10 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:10 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:10 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:10 ausobjects\floor\recarpet10x10.p3d: No geometry and no visual shape 10:02:10 ausextras\signs\buildingsigns\perthairport.p3d: No geometry and no visual shape 10:02:10 ausobjects\floor\recarpet20x20.p3d: No geometry and no visual shape 10:02:10 ca\structures\house\a_office02\data\proxy\window_a.p3d: No geometry and no visual shape 10:02:11 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:11 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:11 ausextras\objects\samsungtv.p3d: No geometry and no visual shape 10:02:11 ausextras\signs\buildingsigns\police.p3d: No geometry and no visual shape 10:02:11 ausextras\billboards\spud.p3d: No geometry and no visual shape 10:02:12 mm_residential2\proxy\roofroof.p3d: house, config class missing 10:02:12 mm_residential2\proxy\roofroof.p3d: house, config class missing 10:02:12 Strange convex component04 in ausobjects\buildings\2story.p3d:geometry 10:02:12 Strange convex component05 in ausobjects\buildings\2story.p3d:geometry 10:02:12 Strange convex component25 in ausobjects\buildings\2story.p3d:geometryFire 10:02:12 Strange convex component59 in ausobjects\buildings\2story.p3d:geometryFire 10:02:12 Strange convex component54 in ausobjects\buildings\2story.p3d:geometryView 10:02:12 Strange convex component59 in ausobjects\buildings\2story.p3d:geometryView 10:02:12 ausobjects\subway\subwaysign.p3d: No geometry and no visual shape 10:02:12 ausextras\signs\buildingsigns\fishneon.p3d: No geometry and no visual shape 10:02:12 ausextras\signs\fishandchips.p3d: No geometry and no visual shape 10:02:12 ausscrappers\graffiti\grap5.p3d: No geometry and no visual shape 10:02:12 ausextras\signs\buildingsigns\ray.p3d: No geometry and no visual shape 10:02:12 ausobjects\glowingsigns\seldomstart.p3d: No geometry and no visual shape 10:02:13 ausextras\signs\buildingsigns\chemist.p3d: No geometry and no visual shape 10:02:13 ausobjects\glowingsigns\adealidesupreme.p3d: No geometry and no visual shape 10:02:13 ca\structures\house\a_office02\data\proxy\window_b.p3d: No geometry and no visual shape 10:02:13 ausextras\signs\buildingsigns\adelaideairport.p3d: No geometry and no visual shape 10:02:13 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 10:02:13 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 10:02:13 Strange convex component03 in ausobjects\buildings\3story.p3d:geometry 10:02:14 Strange convex component06 in mm_civilengineering\crane\cranemid.p3d:geometry 10:02:14 Strange convex component09 in mm_civilengineering\crane\cranemid.p3d:geometry 10:02:14 Strange convex component10 in mm_civilengineering\crane\cranemid.p3d:geometry 10:02:14 Strange convex component11 in mm_civilengineering\crane\cranemid.p3d:geometry 10:02:14 Strange convex component38 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component39 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component40 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component41 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component66 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component67 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component123 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component151 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component152 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component153 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component154 in mm_civilengineering\crane\cranetop.p3d:geometryFire 10:02:14 Strange convex component37 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:02:14 Strange convex component38 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:02:14 Strange convex component39 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:02:14 Strange convex component40 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:02:14 Strange convex component65 in mm_civilengineering\crane\cranetop.p3d:geometryView 10:02:14 Strange convex component114 in ausbuildings\tavern\tavern.p3d:geometry 10:02:14 Strange convex component114 in ausbuildings\tavern\tavern.p3d:geometryView 10:02:14 ausbuildings\objects\fccb.p3d: No geometry and no visual shape 10:02:14 ausextras\signs\buildingsigns\hyatt.p3d: No geometry and no visual shape 10:02:14 ausextras\signs\buildingsigns\dansdonutssmall.p3d: No geometry and no visual shape 10:02:14 ausextras\objects\penthouse.p3d: No geometry and no visual shape 10:02:14 ausobjects\glowingsigns\melcourt.p3d: No geometry and no visual shape 10:02:15 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:02:15 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:02:15 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:02:15 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:02:15 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 10:02:15 ausextras\signs\buildingsigns\sydairport.p3d: No geometry and no visual shape 10:02:16 mm_residential\residential_a\house_l\houseb1_l.p3d: house, config class missing 10:02:16 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:16 ausextras\signs\buildingsigns\sydhos.p3d: No geometry and no visual shape 10:02:16 No skeleton given for shb\shb_ramp.p3d destruction 10:02:16 ausobjects\glowingsigns\coffeeshop.p3d: No geometry and no visual shape 10:02:16 ausobjects\glowingsigns\operhousecafe.p3d: No geometry and no visual shape 10:02:16 No skeleton given for shb\shb_pylon.p3d destruction 10:02:16 No skeleton given for shb\shb_truss_1a.p3d destruction 10:02:16 No skeleton given for shb\shb_truss_2a.p3d destruction 10:02:16 No skeleton given for shb\shb_truss_3a.p3d destruction 10:02:16 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:16 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:16 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:16 Strange convex component10 in a3\vegetation_f_exp\tree\t_cocos_small_f.p3d:geometryView 10:02:16 ausbuildings\houses\proxys\ausgreyhouseproxy.p3d: No geometry and no visual shape 10:02:16 Strange convex component20 in ca\plants\palmtest.p3d:geometryView 10:02:16 Strange convex component21 in ca\plants\palmtest.p3d:geometryView 10:02:16 Strange convex component22 in ca\plants\palmtest.p3d:geometryView 10:02:16 Strange convex component23 in ca\plants\palmtest.p3d:geometryView 10:02:16 Strange convex component24 in ca\plants\palmtest.p3d:geometryView 10:02:16 Strange convex component25 in ca\plants\palmtest.p3d:geometryView 10:02:16 ca\plants\palmtest.p3d: No geometry and no visual shape 10:02:16 ausbuildings\houses\proxys\ausgreyhouseproxy.p3d: house, config class missing 10:02:16 austrees\fern.p3d: No geometry and no visual shape 10:02:16 austrees\bushes1\04\bigpalm.p3d: No geometry and no visual shape 10:02:16 austrees\bushes\01\redbush.p3d: No geometry and no visual shape 10:02:16 ausbuildings\tavern\paving.p3d: No geometry and no visual shape 10:02:17 austrees\bushes\05\fern3.p3d: No geometry and no visual shape 10:02:17 austrees\fern1.p3d: No geometry and no visual shape 10:02:17 ausbuildings\houses\data\proxy\squarehousekitchen.p3d: No geometry and no visual shape 10:02:17 ausbuildings\houses\data\proxy\tv.p3d: No geometry and no visual shape 10:02:17 ausbuildings\houses\data\proxy\toilets.p3d: No geometry and no visual shape 10:02:17 ausbuildings\houses\data\proxy\squarehousekitchen.p3d: house, config class missing 10:02:17 ausbuildings\houses\data\proxy\tv.p3d: house, config class missing 10:02:17 ausbuildings\houses\data\proxy\toilets.p3d: house, config class missing 10:02:17 ausbuildings\houses\data\proxy\poolwater.p3d: house, config class missing 10:02:17 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire 10:02:17 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:17 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:17 ausscrappers\graffiti\grap10.p3d: No geometry and no visual shape 10:02:17 Strange convex component26 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_wide_f.p3d:geometryView 10:02:17 Strange convex component68 in a3\structures_f_kart\civ\sportsgrounds\finishgate_01_wide_f.p3d:geometryView 10:02:17 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:02:18 ausscrappers\graffiti\grap9.p3d: No geometry and no visual shape 10:02:18 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:02:18 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:02:18 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:02:18 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 10:02:18 ausextras\signs\buildingsigns\wallabymotors.p3d: No geometry and no visual shape 10:02:18 ausextras\signs\buildingsigns\wb.p3d: No geometry and no visual shape 10:02:18 a3\structures_f\dominants\hospital\hospital_f.p3d: house, config class missing 10:02:18 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:02:18 ausextras\doors\window_a_broken.p3d: No geometry and no visual shape 10:02:18 ca\structures\house\a_office02\data\proxy\window_a_broken.p3d: No geometry and no visual shape 10:02:18 mm_residential\residential_a\house_l\houseb1_l.p3d: house, config class missing 10:02:19 ausextras\signs\buildingsigns\brishos.p3d: No geometry and no visual shape 10:02:19 Strange convex component70 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:02:19 Strange convex component75 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:02:19 Strange convex component76 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:02:19 Strange convex component77 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:02:19 Strange convex component78 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 10:02:19 ausscrappers\graffiti\grap6.p3d: No geometry and no visual shape 10:02:19 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:19 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 10:02:20 ausextras\signs\buildingsigns\alicehos.p3d: No geometry and no visual shape 10:02:20 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape 10:02:20 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:20 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:02:20 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:02:20 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:02:20 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 10:02:20 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 10:02:20 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 10:02:20 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 10:02:20 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 10:02:20 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 10:02:20 mm_civilengineering\bridge25\sling.p3d: No geometry and no visual shape 10:02:20 ausextras\signs\buildingsigns\brisairport.p3d: No geometry and no visual shape 10:02:20 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:02:20 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire 10:02:20 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire 10:02:21 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:21 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:21 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:21 ca\plants\clutter_flower_mix.p3d: No geometry and no visual shape 10:02:22 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:22 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:02:22 Bad simulation thing, type Land_Barrel_water (class=house), ca\structures\misc\armory\barels\barrel_water.p3d 10:02:22 ausobjects\glowingsigns\cfa.p3d: No geometry and no visual shape 10:02:22 "[A3EAI] Initializing A3EAI version 1.0.1a using base path A3EAI." 10:02:22 "[A3EAI] Compiling A3EAI functions." 10:02:23 "[A3EAI] A3EAI functions compiled." 10:02:23 "[A3EAI] Loaded all A3EAI settings in 0.00801086 seconds." 10:02:23 Client: Nonnetwork object 6037d300. 10:02:23 Client: Nonnetwork object 6037d600. 10:02:23 "[A3EAI] A3EAI settings: Debug Level: 0. WorldName: australia. VerifyClassnames: true. VerifySettings: true." 10:02:23 "[A3EAI] AI spawn settings: Static: true. Dynamic: true. Random: true. Air: true. Land: true. UAV: false. UGV: false." 10:02:23 "[A3EAI] A3EAI loading completed in 0.00900269 seconds." 10:02:23 "CfgEpochCoreServerFunctions" 10:02:23 [15905,133.035,0,"XEH: PreInit started. v3.8.0.180801"] 10:02:23 [15905,133.496,0,"XEH: PreInit finished."] 10:02:23 "Epoch: Advanced Vehicle Repair Enabled" 10:02:23 "Loading Functions: CfgServerFunctions" 10:02:23 Connected to Steam servers 10:02:23 "Starting Custom Content PBO" 10:02:23 "Loaded Custom Content PBO" 10:02:23 CallExtension loaded: updatearmalog (C:\TCAFiles\Users\JohnT1\65924\@infiSTAR_A3\updatearmalog.dll) [1.0.0.0] [1.0.0.0] 10:02:23 "<infiSTAR.de> updatearmalog callExtension: [05.10.2018][10:02:23] Downloaded and installed new armalog.dll" 10:02:23 c:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing! 10:02:23 Mission id: 0c9bdc62691bf6080fcfa2465b42e7be40716a1b 10:02:24 CallExtension loaded: armalog (C:\TCAFiles\Users\JohnT1\65924\@infiSTAR_A3\armalog.dll) [1.2.5.9] [1.2.5.9] 10:02:24 Attempt to override final function - bis_fnc_storeparamsvalues_data 10:02:24 "<infiSTAR.de> infiSTAR dll loaded successfully" 10:02:24 "<infiSTAR.de> Epoch Survivor A3 PVE" 10:02:24 "<infiSTAR.de> ok" 10:02:24 "<infiSTAR.de> Loading infiSTAR code.." 10:02:24 CallExtension 'extDB3' could not be found 10:02:24 "<infiSTAR.de> 0 - run.sqf - including AntiHack" 10:02:24 "<infiSTAR.de> VERSION: infiSTAR.de 01-07-2018 15-36-18 (v259)" 10:02:24 "<infiSTAR.de> 0 - STARTING" 10:02:24 "<infiSTAR.de> 0 - TESTING IF serverCommandPassword IS SET PROPERLY" 10:02:24 "<infiSTAR.de> 0 - serverCommandPassword IS FINE" 10:02:24 "<infiSTAR.de>RANDOMVAR| <infiSTAR.de> _fnc_RandomGen: { _fnc_actualGen = { _abc = ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a']; _gen = _abc select (random ((count _abc)-1)); _arr = ['a','2','7','f','5','f','9','8','a','0','5','7','f','5','d','1','a','b','8','7','d','6','d','5','b','b','0','4','9','3','e','f','5']; _randmax = {((round(random _randminval)) + (round(random _randmaxval))) max _randminval}; for '_i' from 0 to (call _randmax)do { _gen = _gen + str(round(random 9)) + (_arr select (random ((count _arr)-1))); }; }; _gen = ''; while{_gen=='' || _gen in _allRandomGenVars}do{ call _fnc_actualGen; }; _allRandomGenVars pushBack _gen; _gen } [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| ----START-LINE---- (01-07-2018 15-36-18 - v259) [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _adminbox: i660d5d215f403e329540450b8a7f599e [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _fnc_mpPackets: k504e48383d363b8b384362 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOG: m00455f32656f2b4d6b3f041f657f6a9a87680735 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOGSPAWN: h1b6b022882502535 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _FNC_PVAH_AdminReq: g3e652f00895e495f [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _token_by_uid: h896a3755428a1776 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _uid_by_token: y1f4b277f5d682575 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _server_setTokenR: h28357973654b383e5b5d177f70 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _YourPlayerToken: j4f255a816f399785714b9e777580 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _TokenCT: u268580160b790f25752f2e3537693d [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AH_MAIN_BLOCK: w104d9889251b5e0b351b57 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AHKickOFF: i151a154573237a9f8f8f178d854b82885d831d [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AHKickLog: k105a219a6a49007d2888573b4f [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _clientdo: x1a1f0f0284074801 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR: o783f204b5f256b6e8d [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR_THREAD: d184f4f7f284a5d2b150f1b053f101815 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AH_HackLogArrayRND: p881a295a825b78284f0025938d3095 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AH_SurvLogArrayRND: a4d817d94594d7d321b7e556b256a7d303a75950d [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AH_AdmiLogArrayRND: e60255788300e974d136b2d275b [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _TMPBAN: m2952174a259b6b243b73469a6b7b132d0a6e459b50 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _massMessage: h8f174f971d74097a5551654e2f5d4f95 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _massSysMessage: t17307d7e63351e1d5041 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AHpos: k567b100f8b1a3a753d38 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _ninetwo: t31194f605b557f92 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _ninetwothread: h27659f482d755d93834b4e4f757546 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _adminsA: i3777704571253749369a388f88698f [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _MC: x1d2d3a562d371f2968283d986f [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _MCS: m5d8a25352d5b535a8a342b5b0045253a071b5b2a37 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _checkidicheckcheck: h3b0a4a3e67946b523a0a4f9f [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _lastshotmade: d3d6f655987731993836a1582856d87188b6438276139 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _dellocveh: o6e6746343d6f376d323d8e78 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _inCombatTime: u5f0b6d71732b77554f177f9d880f27 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _inCombatArray: l4f77891b2658334f85327d4d [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _fnc_infiKeyHandler: f08599a6f256f1b139a801748207f3918580b22558f [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _vehicle_needs_check: t8f4a3167092b59507043774d9f237b95 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_RANDOM: z6b678b5d102b271517494a781322 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_CLIENT: i9a793b07282a5645979485631549457a1966 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _DUMPINGPLAYERUIDARRAY: q5d30455579997d09 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _CURRENTLYDUMPING: t5f575a531d294a847b257f87 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _antiantihack_rndvar: k06515129234b7b8a8d094b1b5f37 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _name_by_uid: c68772079673b326f [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _owner_by_uid: k47603b655f363b772e3f67 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _customcommandingMenu: i4a80090055856f83 [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _customcommandingMenuOpen: b341d7055358b7d2e1f2b1f4a7b [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| _AH_KICKLOG: PVAHR_2b9e7a8b3y [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de>RANDOMVAR| ----END-LINE---- (01-07-2018 15-36-18 - v259) [01-07-2018 15-36-18 - v259]" 10:02:24 "<infiSTAR.de> 0 - loading AntiHack.." 10:02:24 Wrong init state 10:02:24 Successfull attempt to execute serverCommand '#exec users' by server. 10:02:24 "[KillFeed]: Server loading killfeed function" 10:02:24 "[HSBlackmarket] Server Loading functions" 10:02:24 "[HSBlackmarket] Server adding PVEvent" 10:02:24 "[HSBlackmarket] Server Building traders ..." 10:02:24 "[HSBlackmarket]: Selected blacklisted areas for world: Australia" 10:02:24 "[HSBlackmarket]: Found position for a HSBlackmarket ... (193188) [19360.4,18895.4]" 10:02:24 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 10:02:24 No speaker given for 'Vangelis Vidales' 10:02:24 "[halv_spawn] waiting for default 'Debug_static_F' to be build in Australia @ (304060) [30400,6100,0]" 10:02:24 "[HSBlackmarket] Server: loading 'HALV_takegive_crypto.sqf'" 10:02:24 "[HSBlackmarket] Server: loading 'HALV_takegive' PVEvent" 10:02:25 ausobjects\glowingsigns\clothes.p3d: No geometry and no visual shape 10:02:25 ausextras\signs\buildingsigns\fatboyspizza.p3d: No geometry and no visual shape 10:02:25 "[KillFeed]: Server waiting for EPOCH_deadPlayer_PVS" 10:02:25 a3\structures_f\mil\flags\flag_asym_f.p3d: No geometry and no visual shape 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (244139) [24406.4,13955.4,0]" 10:02:25 No speaker given for 'Michalis Papadopoulos' 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (308096) [30857.7,9638.12,0.00138378]" 10:02:25 No speaker given for 'Andreas Costas' 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (278318) [27808.3,31852.7,0.399906]" 10:02:25 No speaker given for 'Thamos Moritiadou' 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (371202) [37153.4,20249.8,0.329715]" 10:02:25 No speaker given for 'Vasilis Isofidou' 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (190339) [19031.9,33966.1,0.00150394]" 10:02:25 No speaker given for 'Sotiris Kanelloupou' 10:02:25 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:25 "<infiSTAR.de> 0.883 - Thread MAIN: starting!" 10:02:25 "<infiSTAR.de> 0.883 - Thread MAIN: loading...!" 10:02:25 "<infiSTAR.de> 0.883 - Thread MAIN: compiling and/or sending none-threaded code!" 10:02:25 "<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerConnected_id: 1 [01-07-2018 15-36-18 - v259]" 10:02:25 "<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerDisconnected_id: 0 [01-07-2018 15-36-18 - v259]" 10:02:25 "<infiSTAR.de> 0.883 - Thread MAIN: none-threaded code compiled and/or sent!" 10:02:25 "<infiSTAR.de> 0.883 - AntiHack loaded!" 10:02:25 "<infiSTAR.de> 0.883 - run.sqf - AntiHack included!" 10:02:25 "<infiSTAR.de> 0.883 - run.sqf - including AdminTools" 10:02:26 "<infiSTAR.de> 0.883 - run.sqf - AdminTools included!" 10:02:26 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (040194) [4076.76,19456.7,0.00218964]" 10:02:26 No speaker given for 'Dimitirou Karagianni' 10:02:26 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:26 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (231197) [23176.8,19778.7,0.068119]" 10:02:26 No speaker given for 'Kostakis Ellinaki' 10:02:26 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 10:02:26 "[HSBlackmarket] Server Done ..." 10:02:26 "<infiSTAR.de> 0.952 - Thread #1: Server Loop #1 starting now!" 10:02:26 "<infiSTAR.de> 0.952 - Thread #1: Server Loop #1 looping now!" 10:02:26 "-- LOOTSPAWNER initialise ------------------------" 10:02:26 "[blckeagls] Loading Server Mission System Version 6.84 Build 148 Build Date 7-29-18 8:00 PM" 10:02:26 "[blckeagls] Variables Loaded" 10:02:26 "[blckeagls] Functions Loaded" 10:02:26 "[blckeagls] debug mode settings:blck_debugON = false blck_debugLevel = 0" 10:02:26 "[blckeagls] Loading configurations for Non-militarized servers: blck_configs.sqf" 10:02:26 "[blckeagls] Loading Mission System using Parameters for Epoch" 10:02:26 "-- LOOTSPAWNER spawnBuilding_list ready, d: 0.0799999s" 10:02:26 "[blckeagls] Configurations for Epoch Loaded" 10:02:26 "-- LOOTSPAWNER Buildingpositions_list ready, d: 0.064s" 10:02:26 "[blckeagls] blck_useHC = false" 10:02:26 "[blckeagls] Loading Configuration Overides" 10:02:26 "[blckeagls] Running Map Addons for Epoch" 10:02:26 "[blckeagls] Loading Map-specific information" 10:02:26 "[blckeagls] Adding Trader Cities to blacklisted locations based on setting for blck_blacklistTraderCities = true" 10:02:26 "[blckeagls] Loading Map-specific settings with worldName = australia" 10:02:26 "[blckeagls] Loading Mission Lists" 10:02:26 "[blckeagls] Mission Lists Loaded Successfully" 10:02:26 "blck_init_server: ->> Static and UMS systems initialized." 10:02:26 "[blckegls] blckegls simulation manager enabled" 10:02:26 "[blckeagls] version 7-29-18 8:00 PM Build 6.84 Build 148 Loaded in 0.214996 seconds" 10:02:26 "blckeagls] waiting for players to join ---- >>>>" 10:02:26 "[blckeagls] spawning Missions" 10:02:26 "[blckeagls] SLS:: -- >> Static Loot Spawner Started" 10:02:26 "-- LOOTSPAWNER LSusedclass_list ready, d: 0.123s" 10:02:26 "-- LOOTSPAWNER LSDer started..." 10:02:26 "-- LOOTSPAWNER ready and waiting for players -----" 10:02:26 "[blckeagls] GMS_StaticMissions Initialized.sqf <Loaded>" 10:02:26 "[blckeagls] Initializing UMS" 10:02:26 "<GMS_UMS_functions.sqf> Functions compiled" 10:02:26 "[blckeagls] UMS <Initialized>" 10:02:26 "[blckeagls] SLS System: Static loot crates ran successfully!" 10:02:26 "[blckeagls] SLS:: -- >> Static Loot Spawner Done" 10:02:26 "[blckeagls] < MISSION SYSTEM FULLY INITIALIZED AND RUNNING >" 10:02:26 "A3EAI Error: Could not dynamically generate food classname list. Classnames from A3EAI_config.sqf used instead." 10:02:26 "[blckeagls] blckListPrior = [[[20480,20480,0],1000],[[30400,6100,0],1000],[[30400,6100,0],1000],[[24398.3,13971.6,0],1000],[[34751.5,13431.9,0],1000],[[19032.7,33974.6,0],1000],[[4056.35,19435.9,0],1000]]" 10:02:26 "[blckeagls] ] blck_locationBlackList = [[[20480,20480,0],1000],[[30400,6100,0],1000],[[30400,6100,0],1000],[[24398.3,13971.6,0],1000],[[34751.5,13431.9,0],1000],[[19032.7,33974.6,0],1000],[[4056.35,19435.9,0],1000]]" 10:02:26 "[A3EAI] Removing invalid headgear classname from A3EAI_headgearTypes0 array: radiation_mask_epoch." 10:02:26 "[A3EAI] Removing invalid headgear classname from A3EAI_headgearTypes1 array: radiation_mask_epoch." 10:02:26 "[CfgWeapons] Removing invalid headgear classname from A3EAI_headgearTypes2 array: radiation_mask_epoch." 10:02:26 "[A3EAI] Removing invalid headgear classname from A3EAI_headgearTypes3 array: radiation_mask_epoch." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: FoodSnooter." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: FoodWalkNSons." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: FoodBioMeat." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: ItemSodaOrangeSherbet." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: ItemSodaPurple." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: ItemSodaMocha." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: ItemSodaBurst." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: ItemSodaRbull." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: honey_epoch." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: emptyjar_epoch." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: sardines_epoch." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: meatballs_epoch." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: scam_epoch." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: sweetcorn_epoch." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: WhiskeyNoodle." 10:02:26 "[A3EAI] Removing invalid food classname from A3EAI_foodLoot array: ItemCoolerE." 10:02:26 "[A3EAI] Verified 573 unique classnames in 0.0869904 seconds." 10:02:27 "[blckeagls] Timstamp 137.489 |Dynamic Missions Running 0 | UMS Running 0 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 2 Min | Missions Run 0" 10:02:56 "[Display #24]" 10:03:56 Warning Message: Script \x\addons\WAI\customsettings.sqf not found 10:03:56 "WAI: AI Config File Loaded" 10:03:56 [DZMS]: Starting DayZ Mission System. 10:03:56 [DZMS]: Currently Running Version: 3.01_A3 10:03:56 [DZMS]: Mission and Extended Configuration Loaded! 10:03:56 [DZMS]: australia Detected. Map Specific Settings Adjusted! 10:03:56 [DZMS]: Loading ExecVM Functions. 10:03:56 [DZMS]: Loading Compiled Functions. 10:03:56 [DZMS]: Loading All Other Functions. 10:03:56 [DZMS]: Mission Functions Script Loaded! 10:03:56 "WAI: Initialising missions" 10:03:56 "WAI: AI Monitor Started" 10:03:56 Error in expression <5 = [ false, Mission, 18, > 10:03:56 Error position: <Mission, 18, > 10:03:56 Error Undefined variable in expression: mission 10:03:56 File epochz\init\fn_init.sqf [epochz_fnc_init], line 995 10:03:56 [DZMS]: Major Mission Clock Starting! 10:03:56 [DZMS]: Minor Mission Clock Starting! 10:03:56 [DZMS]: Mission Marker Loop for JIPs Starting! 10:03:57 "\\\ --- Starting EpochZ 1.0 --- ///" 10:03:57 "EpochZ 1.0: Compounding Zombie Group Weight, Selected Group Trigger Index : 0" 10:03:57 "EpochZ 1.0: Zombie Type Index : 0 Weight : 100 Compound Weight Value : 100" 10:03:57 "EpochZ 1.0: Zombie Type Index : 1 Weight : 55 Compound Weight Value : 155" 10:03:57 "EpochZ 1.0: Zombie Type Index : 2 Weight : 100 Compound Weight Value : 255" 10:03:57 "EpochZ 1.0: Zombie Type Index : 3 Weight : 50 Compound Weight Value : 305" 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [38716,19083.2] | Radius : 300m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [37889.3,19925.4] | Radius : 350m | Near : Brisbane " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [38419.8,20181.8] | Radius : 300m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [38662.9,20325.5] | Radius : 300m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [36206.6,13065.9] | Radius : 450m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [36774.2,13096.8] | Radius : 450m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [37465.5,12872] | Radius : 450m | Near : " 10:03:57 No skeleton given for shb\shb_ramp_end.p3d destruction 10:03:57 No skeleton given for shb\shb_ramp_1.p3d destruction 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [36538.2,12127.3] | Radius : 450m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [22086.5,25659.1] | Radius : 450m | Near : Alice Springs " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [31323.6,11207.8] | Radius : 450m | Near : VICTORIA " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [30932.3,10500] | Radius : 450m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [31177.5,9804.61] | Radius : 450m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [25026,12719.8] | Radius : 450m | Near : Adelaide " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [4724.85,18087.9] | Radius : 450m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [5577.66,18569.4] | Radius : 450m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [16068.2,33516.4] | Radius : 500m | Near : " 10:03:57 "EpochZ 1.0: Compounding Zombie Group Weight, Selected Group Trigger Index : 1" 10:03:57 "EpochZ 1.0: Zombie Type Index : 0 Weight : 25 Compound Weight Value : 25" 10:03:57 "EpochZ 1.0: Zombie Type Index : 1 Weight : 50 Compound Weight Value : 75" 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [16903.8,33750.8] | Radius : 450m | Near : Darwin " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [29107.4,34184.1] | Radius : 200m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [31740.3,25040.2] | Radius : 350m | Near : Support Base " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [8796.32,26697.4] | Radius : 200m | Near : Airstrip " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [19809,24447.7] | Radius : 350m | Near : Pine Gap " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [19511,24047.7] | Radius : 350m | Near : Pine Gap " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [33770.4,15653.8] | Radius : 150m | Near : Army Base " 10:03:57 "EpochZ 1.0: Compounding Zombie Group Weight, Selected Group Trigger Index : 2" 10:03:57 "EpochZ 1.0: Zombie Type Index : 0 Weight : 2 Compound Weight Value : 2" 10:03:57 "EpochZ 1.0: Zombie Type Index : 1 Weight : 2 Compound Weight Value : 4" 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [29003.5,36642.8] | Radius : 75m | Near : Outpost " 10:03:57 "EpochZ 1.0: Compounding Zombie Group Weight, Selected Group Trigger Index : 5" 10:03:57 "EpochZ 1.0: Zombie Type Index : 0 Weight : 2 Compound Weight Value : 2" 10:03:57 "EpochZ 1.0: Zombie Type Index : 1 Weight : 4 Compound Weight Value : 6" 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [17650.9,34261.4] | Radius : 350m | Near : " 10:03:57 "EpochZ 1.0: Creating Trigger | Position : [29985.2,17438.3] | Radius : 50m | Near : " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [26166.9,11101.3] | Radius : 200m | Near : Tailem bend " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [27620.8,12115.8] | Radius : 250m | Near : Mildura " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [35390.9,8491.95] | Radius : 200m | Near : " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [33927.5,13361.1] | Radius : 200m | Near : Bathurst " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [32057.2,29799.1] | Radius : 300m | Near : Cairns " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [28442.1,35182.1] | Radius : 200m | Near : Weipa " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [26769.2,27999.5] | Radius : 200m | Near : Mount Isa " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [22275,19260.4] | Radius : 300m | Near : Coober Pedy " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [20796.1,12792.5] | Radius : 200m | Near : Port Lincoln " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [3863.24,14921.1] | Radius : 200m | Near : Cape Peron " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [27667.2,17003.6] | Radius : 250m | Near : " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [31470.6,16802.1] | Radius : 300m | Near : " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [31760.3,4873.93] | Radius : 200m | Near : Smithton " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [33137.1,4034.09] | Radius : 250m | Near : " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [33712.7,3431.62] | Radius : 200m | Near : Hobart " 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [30988,19871.6] | Radius : 400m | Near : " 10:03:58 "EpochZ 1.0: Compounding Zombie Group Weight, Selected Group Trigger Index : 6" 10:03:58 "EpochZ 1.0: Zombie Type Index : 0 Weight : 25 Compound Weight Value : 25" 10:03:58 "EpochZ 1.0: Zombie Type Index : 1 Weight : 75 Compound Weight Value : 100" 10:03:58 "EpochZ 1.0: Creating Trigger | Position : [35020.9,26154.9] | Radius : 450m | Near : Rockhampton " 10:03:58 "EpochZ 1.0: Crashsite at [26650.3,19518.7] with 3 lootpiles " 10:03:58 "EpochZ 1.0: Crashsite at [25855.4,21706.7] with 3 lootpiles " 10:03:58 "EpochZ 1.0: Crashsite at [25684.6,23313.2] with 4 lootpiles " 10:03:58 "EpochZ 1.0: Crashsite at [22063.7,17170.8] with 5 lootpiles " 10:03:58 "EpochZ 1.0: Crashsite at [27367.8,19513.5] with 2 lootpiles " 10:03:58 "EpochZ 1.0: Crashsite at [22471.6,23528.9] with 3 lootpiles " 10:03:58 "EpochZ 1.0: Crashsite at [14104.8,23031.4] with 3 lootpiles " 10:03:59 "EpochZ 1.0: Crashsite at [20396.7,27047.8] with 3 lootpiles " 10:03:59 "EpochZ 1.0: Crashsite at [24257.2,20071.3] with 4 lootpiles " 10:03:59 "EpochZ 1.0: Crashsite at [22504.4,22692.3] with 4 lootpiles " 10:03:59 "EpochZ 1.0: Crashsite at [20157.7,26683.4] with 3 lootpiles " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [26650.3,19518.7] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [25855.4,21706.7] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [25684.6,23313.2] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [22063.7,17170.8] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [27367.8,19513.5] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [22471.6,23528.9] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [14104.8,23031.4] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [20396.7,27047.8] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [24257.2,20071.3] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [22504.4,22692.3] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Trigger | Position : [20157.7,26683.4] | Radius : 200m | Near : " 10:03:59 "EpochZ 1.0: Creating Safezone Trigger | Position : [24406.4,13955.4] | Radius : 175m | Near : " 10:03:59 "EpochZ 1.0: Creating Safezone Trigger | Position : [30938.6,9580.02] | Radius : 175m | Near : " 10:03:59 "EpochZ 1.0: Creating Safezone Trigger | Position : [37148.2,20206.7] | Radius : 175m | Near : " 10:03:59 "EpochZ 1.0: Creating Safezone Trigger | Position : [19031.9,33966.1] | Radius : 175m | Near : " 10:03:59 "EpochZ 1.0: Creating Safezone Trigger | Position : [4076.76,19456.7] | Radius : 175m | Near : " 10:03:59 "EpochZ 1.0: Creating Safezone Trigger | Position : [23176.8,19778.7] | Radius : 175m | Near : " 10:04:00 "/// --- EpochZ 1.0 Started --- \\\" 10:04:00 [20608,230.774,95.42,"XEH: PostInit started. MISSIONINIT: missionName=epoch, missionVersion=53, worldName=Australia, isMultiplayer=true, isServer=true, isDedicated=true, CBA_isHeadlessClient=false, hasInterface=false, didJIP=false"] 10:04:00 [20608,230.796,95.42,"CBA_VERSIONING: cba=3.8.0.180801, "] 10:04:00 [20608,230.8,95.42,"XEH: PostInit finished."] 10:04:00 "(SPK-DEBUG): SPKcode configfile loaded" 10:04:00 "Epoch: Starting ArmA3 Epoch Server, Version 1.2.0. Note: If server crashes directly after this point check that Redis is running and the connection info is correct." 10:04:00 CallExtension loaded: epochserver (C:\TCAFiles\Users\JohnT1\65924\@EpochHive\epochserver.dll) [] [] 10:04:00 "Epoch: CUP Weapons detected" 10:04:00 "Epoch: CUP Vehicles detected" 10:04:00 "Epoch: Ryanzombies detected" 10:04:00 "Epoch: Init Variables" 10:04:00 "Loading config..." 10:04:00 Attempt to override final function - epoch_server_ispadmin 10:04:00 "Epoch: Set Real Time: [2018,10,05,10,04,00]" 10:04:00 "Epoch: Start Hive, Instance ID: '65924'" 10:04:00 "Epoch: Init Connect/Disconnect handlers" 10:04:00 "Epoch: Setup Side Settings" 10:04:00 "Epoch: Setup World Settings for Australia" 10:04:00 "Epoch: Loading buildings" 10:04:00 Attempt to override final function - epoch_dyn_bankbalance 10:04:00 Attempt to override final function - epoch_dyn_resetgroup 10:04:00 Attempt to override final function - epoch_dyn_groupupdate 10:04:00 Attempt to override final function - epoch_dyn_groupuidupdate 10:04:00 Attempt to override final function - epoch_dyn_healplayer 10:04:00 Attempt to override final function - epoch_dyn_tradecomplete 10:04:00 Attempt to override final function - epoch_dyn_resettempgroup 10:04:00 Attempt to override final function - epoch_dyn_tempgroupupdate 10:04:00 Attempt to override final function - epoch_dyn_tempgroupuidupdate 10:04:00 Attempt to override final function - epoch_dnpvnanv 10:04:01 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:04:01 B_Heli_Light_01_armed_F: hideweapons - unknown animation source hideweapons 10:04:01 B_Heli_Light_01_armed_F: hiderockets - unknown animation source hideweapons 10:04:01 a3\air_f\data\plane_flag_medium_f.p3d: No geometry and no visual shape 10:04:01 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 10:04:01 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape 10:04:05 "Epoch: Loading teleports and static props" 10:04:05 SW keep height animation used for a3\structures_f_epb\civ\accessories\woodpile_large_f.p3d 10:04:05 SW keep height animation used for ca\misc\jeept.p3d 10:04:06 ausextras\signs\buildingsigns\darhos.p3d: No geometry and no visual shape 10:04:06 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:06 a3\data_f\proxies\flags\flag_alone.p3d: No geometry and no visual shape 10:04:06 a3\characters_f_beta\heads\glasses\g_squares_tinted.p3d: No geometry and no visual shape 10:04:07 austrees\deadtree2.p3d: No geometry and no visual shape 10:04:07 ausextras\road\sil112deg.p3d: house, config class missing 10:04:07 ausextras\road\sil112deg.p3d: house, config class missing 10:04:07 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:04:07 ausextras\signs\buildingsigns\vicroads.p3d: No geometry and no visual shape 10:04:07 ausscrappers\graffiti\grap7.p3d: No geometry and no visual shape 10:04:08 ausobjects\smallitems\whittriangle.p3d: No geometry and no visual shape 10:04:08 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_residential\residential_a\house_l\houseb1_l.p3d: house, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 mm_buildings\prison\mapobject\gaol_gate.p3d: vehicle, config class missing 10:04:09 ausobjects\glowingsigns\sydcourt.p3d: No geometry and no visual shape 10:04:09 ausscrappers\graffiti\grap8.p3d: No geometry and no visual shape 10:04:09 ausbuildings\oldbuilding\proxy\lvl1kitchen.p3d: No geometry and no visual shape 10:04:09 ausbuildings\oldbuilding\proxy\lvl1kitchen.p3d: house, config class missing 10:04:09 ausbuildings\light\threelights.p3d: house, config class missing 10:04:09 ausbuildings\light\threelights.p3d: house, config class missing 10:04:09 Strange convex component320 in art_gallery\artgallery.p3d:geometryView 10:04:09 "Epoch: Loading NPC traders" 10:04:09 "Epoch: Spawning NPC traders" 10:04:09 "Epoch: Loading vehicles" 10:04:10 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:04:10 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape 10:04:10 austrees\plant1.p3d: No geometry and no visual shape 10:04:10 austrees\smallplant.p3d: No geometry and no visual shape 10:04:10 austrees\palm_plant.p3d: No geometry and no visual shape 10:04:10 "EpochZ 1.0: Next Horde in 26 minutes." 10:04:10 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:04:10 "[halv_spawn] found some default teleporters ... _deletedefaultteleporters: 'true'" 10:04:11 "[halv_spawn] sendt teleporters and default positions to clients, 4 textures build" 10:04:11 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_EPOCH' 10:04:11 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_EPOCH' 10:04:11 a3\air_f\data\plane_flag_big_f.p3d: No geometry and no visual shape 10:04:11 a3\air_f_heli\heli_transport_04\proxy_heli_transport_04_f.p3d: No geometry and no visual shape 10:04:11 x\addons\a3_epoch_weapons\1911_magazine.p3d: No geometry and no visual shape 10:04:11 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:11 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 10:04:12 CUP_Zodiac: Invalid parent bone 'steering_wheel' for 'propeller' 10:04:12 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:04:12 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:04:12 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:04:12 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 10:04:12 a3\air_f\data\plane_flag_medium_inv_f.p3d: No geometry and no visual shape 10:04:12 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:04:12 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:04:13 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:13 Error: Wheel reference not initialized 10:04:13 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:04:13 Error: Wheel reference not initialized 10:04:14 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\battery\battery.p3d: No geometry and no visual shape 10:04:14 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:04:14 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:14 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:14 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:15 Error: Wheel reference not initialized 10:04:15 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\cables\solar_cables.p3d: No geometry and no visual shape 10:04:15 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:15 Error: Wheel reference not initialized 10:04:15 Error: Bone pravy predni tlumic nerot doesn't exist in skeleton CUP_Motorcycle 10:04:16 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:04:16 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:04:16 Warn: Shape '???' contains water texture however it does not carry a property "class=pond". Consider creating one to speed up the detection! 10:04:16 x\addons\a3_epoch_assets_2\lighter.p3d: No geometry and no visual shape 10:04:16 x\addons\a3_epoch_community\models\wrap.p3d: No geometry and no visual shape 10:04:17 x\addons\a3_epoch_assets\models\rock.p3d: No geometry and no visual shape 10:04:17 x\addons\a3_epoch_community\models\farming\sunflower_plant.p3d: No geometry and no visual shape 10:04:17 x\addons\a3_epoch_community\models\farming\poppy_plant.p3d: No geometry and no visual shape 10:04:17 x\addons\a3_epoch_community\models\hemp.p3d: No geometry and no visual shape 10:04:17 Error: Wheel reference not initialized 10:04:18 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:04:18 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_bench_EPOCH' 10:04:18 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_bench_EPOCH' 10:04:18 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_proxy_f.p3d: No geometry and no visual shape 10:04:18 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_black_proxy_f.p3d: No geometry and no visual shape 10:04:18 Error: Wheel reference not initialized 10:04:19 Error: Wheel reference not initialized 10:04:19 Render target memory points PIP5_pos & PIP5_dir not found. 10:04:19 Error: Wheel reference not initialized 10:04:19 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:19 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:04:20 In Vehicle: cup\wheeledvehicles\cup_wheeledvehicles_datsun\cup_datsun_civil.p3d missing gunner get in direction point 10:04:20 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\solar_panels\solar_panels.p3d: No geometry and no visual shape 10:04:20 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_box_EPOCH' 10:04:20 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_box_EPOCH' 10:04:21 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 B_APC_Tracked_01_CRV_F: cannon_ready_light - unknown animation source muzzle_hide_cannon 10:04:21 a3\weapons_f\acc\reticle_nlaw.p3d: No geometry and no visual shape 10:04:21 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 10:04:21 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 10:04:22 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_covered_EPOCH' 10:04:22 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_covered_EPOCH' 10:04:22 a3\air_f_heli\heli_transport_04\heli_transport_04_covered_proxy_f.p3d: No geometry and no visual shape 10:04:22 austrees\bushes1\05\bush5.p3d: No geometry and no visual shape 10:04:22 austrees\bushes1\03\purpletree.p3d: No geometry and no visual shape 10:04:22 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:22 CUP_Merlin_HC3_FFV: ammo_belt_rotation - unknown animation source reloadanim 10:04:22 CUP_Merlin_HC3_FFV: bullet001 - unknown animation source revolving 10:04:22 CUP_Merlin_HC3_FFV: bullet002 - unknown animation source revolving 10:04:22 CUP_Merlin_HC3_FFV: bullet003 - unknown animation source revolving 10:04:22 CUP_Merlin_HC3_FFV: bullet004 - unknown animation source revolving 10:04:22 CUP_Merlin_HC3_FFV: bullet005 - unknown animation source revolving 10:04:22 CUP_Merlin_HC3_FFV: bullet006 - unknown animation source revolving 10:04:22 CUP_Merlin_HC3_FFV: bullet007 - unknown animation source revolving 10:04:22 CUP_Merlin_HC3_FFV: ammo_belt_bullet008hide_hide - unknown animation source reloadanim 10:04:22 CUP_Merlin_HC3_FFV: magazine_hide - unknown animation source reloadmagazine 10:04:22 CUP_Merlin_HC3_FFV: feedtray_cover_up - unknown animation source reloadmagazine 10:04:22 CUP_Merlin_HC3_FFV: feedtray_cover_down - unknown animation source reloadmagazine 10:04:22 CUP_Merlin_HC3_FFV: bolt_recoil - unknown animation source reloadanim 10:04:22 CUP_Merlin_HC3_FFV: bolt_reload_begin - unknown animation source reloadmagazine 10:04:22 CUP_Merlin_HC3_FFV: bolt_reload_end - unknown animation source reloadmagazine 10:04:22 CUP_Merlin_HC3_FFV: bullet008hide_hide - unknown animation source reloadmagazine 10:04:22 CUP_Merlin_HC3_FFV: rampa_hide - unknown animation source rampa_hide 10:04:22 CUP_Merlin_HC3_FFV: rampa_unhide - unknown animation source rampa_unhide 10:04:23 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:04:23 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_int_baf.p3d: No geometry and no visual shape 10:04:23 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:04:23 cup\airvehicles\cup_airvehicles_hc3\data\merlinhc3_viewcargoseats_baf.p3d: No geometry and no visual shape 10:04:23 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:04:23 cup\airvehicles\cup_airvehicles_hc3\merlinhc3_mainrotorfolded_baf.p3d: vehicle, config class missing 10:04:23 x\addons\a3_epoch_community\models\itemrotor.p3d: No geometry and no visual shape 10:04:23 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape 10:04:23 a3\characters_f\common\headgear_helmet_heli_shield.p3d: No geometry and no visual shape 10:04:23 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:23 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:23 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:23 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:23 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:23 Duplicate HitPoint name 'HitTurret' in 'I_MRAP_03_hmg_F' 10:04:23 Duplicate HitPoint name 'HitGun' in 'I_MRAP_03_hmg_F' 10:04:23 x\addons\a3_epoch_community\models\atropine.p3d: No geometry and no visual shape 10:04:24 Strange convex component01 in cup\weapons\cup_weapons_west_attachments\leupoldvx3\cup_leupoldxv3.p3d:geometry 10:04:24 Strange convex component01 in cup\weapons\cup_weapons_west_attachments\leupoldvx3\cup_leupoldxv3.p3d:geometryFire 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 Render target memory points PIP5_pos & PIP5_dir not found. 10:04:24 x\addons\a3_epoch_community\models\morphine.p3d: No geometry and no visual shape 10:04:24 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_black_F' 10:04:24 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_black_F' 10:04:24 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_black_F' 10:04:24 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_black_F' 10:04:24 x\addons\a3_epoch_community\models\pumpkin.p3d: No geometry and no visual shape 10:04:24 x\addons\a3_epoch_assets_1\models\seabass_cooked.p3d: No geometry and no visual shape 10:04:24 x\addons\a3_epoch_assets\models\rope.p3d: No geometry and no visual shape 10:04:24 a3\air_f_beta\heli_transport_02\main_rotor_center_f.p3d: No geometry and no visual shape 10:04:24 a3\air_f_beta\heli_transport_02\view_pilot_switches_f.p3d: No geometry and no visual shape 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:24 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:25 x\addons\a3_epoch_assets_3\cfgmagazines\log\steamlogs.p3d: No geometry and no visual shape 10:04:25 B_T_LSV_01_unarmed_F: mainturret - unknown animation source mainturret 10:04:25 B_T_LSV_01_unarmed_F: maingun - unknown animation source maingun 10:04:25 B_T_LSV_01_unarmed_F: codriverturret - unknown animation source codriverturret 10:04:25 B_T_LSV_01_unarmed_F: codrivergun - unknown animation source codrivergun 10:04:25 B_T_LSV_01_unarmed_F: magazine_reload_hide_1 - unknown animation source titanmuzzle_reloadmagazine 10:04:25 Duplicate HitPoint name 'HitTurret' in 'O_APC_Wheeled_02_rcws_F' 10:04:25 Duplicate HitPoint name 'HitGun' in 'O_APC_Wheeled_02_rcws_F' 10:04:25 O_APC_Wheeled_02_rcws_F: cannon_ready_light - unknown animation source revolving_gmg 10:04:25 O_APC_Wheeled_02_rcws_F: engine_damage_fire_indicator - unknown animation source hitengine_src 10:04:25 O_APC_Wheeled_02_rcws_F: engine_damage_indicator - unknown animation source hitengine_src 10:04:25 O_APC_Wheeled_02_rcws_F: main_gun_damage_indicator - unknown animation source hitmaingun_src 10:04:25 O_APC_Wheeled_02_rcws_F: turret_control_x - unknown animation source turret_control_y 10:04:25 O_APC_Wheeled_02_rcws_F: turret_control_y - unknown animation source turret_control_x 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_com_smoke_1 - unknown animation source smoke_source 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_com_smoke_2 - unknown animation source smoke_source 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_damage_engine - unknown animation source hitengine_src 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_damage_fuel - unknown animation source hitfuel_src 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_hull - unknown animation source hithull_src 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_engine - unknown animation source hitengine_src 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_fuel - unknown animation source hitfuel_src 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_main_gun - unknown animation source hitmaingun_src 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_turret - unknown animation source hitturret_src 10:04:25 O_APC_Wheeled_02_rcws_F: indicator_turret_damage_com_turret - unknown animation source hitcomturret_src 10:04:25 O_APC_Wheeled_02_rcws_F: showcamonethull - unknown animation source showcamonethull 10:04:25 O_APC_Wheeled_02_rcws_F: showbags - unknown animation source showbags 10:04:25 O_APC_Wheeled_02_rcws_F: showcanisters - unknown animation source showcanisters 10:04:25 O_APC_Wheeled_02_rcws_F: showtools - unknown animation source showtools 10:04:25 O_APC_Wheeled_02_rcws_F: showslathull - unknown animation source showslathull 10:04:25 O_APC_Wheeled_02_rcws_F: slat_front_normal_hide - unknown animation source hitslat_front_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_front_damage_unhide - unknown animation source hitslat_front_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_front_damage_hide - unknown animation source hitslat_front_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_front_destroyed_unhide - unknown animation source hitslat_front_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_front_firegeo_hide - unknown animation source hitslat_front_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_back_normal_hide - unknown animation source hitslat_back_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_back_damage_unhide - unknown animation source hitslat_back_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_back_damage_hide - unknown animation source hitslat_back_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_back_destroyed_unhide - unknown animation source hitslat_back_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_back_firegeo_hide - unknown animation source hitslat_back_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_1_normal_hide - unknown animation source hitslat_left_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_1_damage_unhide - unknown animation source hitslat_left_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_1_damage_hide - unknown animation source hitslat_left_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_1_destroyed_unhide - unknown animation source hitslat_left_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_1_firegeo_hide - unknown animation source hitslat_left_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_2_normal_hide - unknown animation source hitslat_left_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_2_damage_unhide - unknown animation source hitslat_left_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_2_damage_hide - unknown animation source hitslat_left_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_2_destroyed_unhide - unknown animation source hitslat_left_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_2_firegeo_hide - unknown animation source hitslat_left_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_3_normal_hide - unknown animation source hitslat_left_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_3_damage_unhide - unknown animation source hitslat_left_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_3_damage_hide - unknown animation source hitslat_left_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_3_destroyed_unhide - unknown animation source hitslat_left_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_left_3_firegeo_hide - unknown animation source hitslat_left_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_1_normal_hide - unknown animation source hitslat_right_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_1_damage_unhide - unknown animation source hitslat_right_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_1_damage_hide - unknown animation source hitslat_right_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_1_destroyed_unhide - unknown animation source hitslat_right_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_1_firegeo_hide - unknown animation source hitslat_right_1_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_2_normal_hide - unknown animation source hitslat_right_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_2_damage_unhide - unknown animation source hitslat_right_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_2_damage_hide - unknown animation source hitslat_right_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_2_destroyed_unhide - unknown animation source hitslat_right_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_2_firegeo_hide - unknown animation source hitslat_right_2_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_3_normal_hide - unknown animation source hitslat_right_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_3_damage_unhide - unknown animation source hitslat_right_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_3_damage_hide - unknown animation source hitslat_right_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_3_destroyed_unhide - unknown animation source hitslat_right_3_src 10:04:25 O_APC_Wheeled_02_rcws_F: slat_right_3_firegeo_hide - unknown animation source hitslat_right_3_src 10:04:25 x\addons\a3_epoch_community\models\orlistat.p3d: No geometry and no visual shape 10:04:25 x\addons\a3_epoch_community\models\rad_treatment\nanite\rad_nanite_pills.p3d: No geometry and no visual shape 10:04:25 x\addons\a3_epoch_community\models\rad_treatment\cream\rad_cream.p3d: No geometry and no visual shape 10:04:25 x\addons\a3_epoch_community\models\adrenaline.p3d: No geometry and no visual shape 10:04:25 x\addons\a3_epoch_community\models\rad_treatment\iodide\pot_iodide.p3d: No geometry and no visual shape 10:04:25 a3\characters_f\heads\glasses\g_shades_black.p3d: No geometry and no visual shape 10:04:25 a3\boat_f\boat_armed_01\data\boat_armed_01_minigun_cargo_proxy.p3d: No geometry and no visual shape 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_blur.p3d: No geometry and no visual shape 10:04:26 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_tail_static.p3d: No geometry and no visual shape 10:04:26 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_static.p3d: No geometry and no visual shape 10:04:26 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_tail_blur.p3d: No geometry and no visual shape 10:04:26 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_rotor_static_folded.p3d: No geometry and no visual shape 10:04:26 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_int_cockpit.p3d: No geometry and no visual shape 10:04:26 cup\airvehicles\cup_airvehicles_ch53e\proxy\ch53_int_cargo.p3d: No geometry and no visual shape 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 Duplicate HitPoint name 'HitTurret' in 'CUP_B_MH60S_USMC' 10:04:26 Duplicate HitPoint name 'HitGun' in 'CUP_B_MH60S_USMC' 10:04:26 Duplicate HitPoint name 'HitTurret' in 'CUP_B_MH60S_USMC' 10:04:26 Duplicate HitPoint name 'HitGun' in 'CUP_B_MH60S_USMC' 10:04:26 CUP_B_MH60S_USMC: seats_hide - unknown animation source seats_hide 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 10:04:26 "Epoch: Vehicle SPAWN TIMER 16.749, LOADED 193 VEHICLES" 10:04:26 "Epoch: Spawning vehicles" 10:04:27 O_Truck_02_covered_EPOCH: rear_hide - unknown animation source rear_hide 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgMainTable_Vehicle_tables DATA: [""Items"",0.06,""Equipment"",0.06,""Pistols"",0.06,""PistolAmmo"",0.06,""Scopes"",0.04,""Muzzles"",0.04,""Uniforms"",0.06,""Vests"",0.06,""Headgear"",0.06,""Food"",0.04,""Generic"",0.06,""GenericAuto"",0.06,""Machinegun"",0.04,""MachinegunAmmo"",0.04,""Rifle"",0.05,""RifleAmmo"",0.04,""SniperRifle"",0.03,""SniperRifleAmmo"",0.04,""Hand"",0.04,""Grenades"",0.02,""Backpack"",0.04]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_SniperRifle_items DATA: [[""SniperRiflem107"",""CfgLootTable""],0.08,[""SniperRifleMarkDLC"",""CfgLootTable""],0.1,[""srifle_LRR_F"",""weapon""],0.06,[""srifle_LRR_camo_F"",""weapon""],0.05,[""srifle_GM6_F"",""weapon""],0.14,[""srifle_DMR_01_F"",""weapon""],0.12,[""SniperRifleM14"",""CfgLootTable""],0.18,[""srifle_EBR_F"",""weapon""],0.15,[""CUP_SniperRifles"",""CfgLootTable""],0.12]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Pistols_items DATA: [[""Hgun_Pistol_Signal_F"",""weapon""],0.04,[""MultiGun"",""weapon""],0.05,[""hgun_Pistol_heavy_01_F"",""weapon""],0.09,[""hgun_P07_F"",""weapon""],0.1,[""hgun_Rook40_F"",""weapon""],0.11,[""hgun_Pistol_heavy_02_F"",""weapon""],0.13,[""1911_pistol_epoch"",""weapon""],0.11,[""hgun_ACPC2_F"",""weapon""],0.1,[""ruger_pistol_epoch"",""weapon""],0.12,[""CUP_pistols"",""CfgLootTable""],0.15]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Vests_items DATA: [[""V_1_EPOCH"",""item""],0.05,[""V_2_EPOCH"",""item""],0.05,[""V_3_EPOCH"",""item""],0.05,[""V_4_EPOCH"",""item""],0.05,[""V_5_EPOCH"",""item""],0.05,[""V_6_EPOCH"",""item""],0.01,[""V_7_EPOCH"",""item""],0.01,[""V_8_EPOCH"",""item""],0.01,[""V_9_EPOCH"",""item""],0.01,[""V_10_EPOCH"",""item""],0.02,[""V_11_EPOCH"",""item""],0.02,[""V_12_EPOCH"",""item""],0.02,[""V_13_EPOCH"",""item""],0.03,[""V_14_EPOCH"",""item""],0.03,[""V_15_EPOCH"",""item""],0.03,[""V_16_EPOCH"",""item""],0.02,[""V_17_EPOCH"",""item""],0.03,[""V_18_EPOCH"",""item""],0.03,[""V_19_EPOCH"",""item""],0.02,[""V_20_EPOCH"",""item""],0.02,[""V_21_EPOCH"",""item""],0.04,[""V_22_EPOCH"",""item""],0.02,[""V_23_EPOCH"",""item""],0.02,[""V_24_EPOCH"",""item""],0.03,[""V_25_EPOCH"",""item""],0.02,[""V_26_EPOCH"",""item""],0.02,[""V_27_EPOCH"",""item""],0.02,[""V_28_EPOCH"",""item""],0.03,[""V_29_EPOCH"",""item""],0.03,[""V_30_EPOCH"",""item""],0.03,[""V_31_EPOCH"",""item""],0.01,[""V_32 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Uniforms_items DATA: [[""MaleUniforms"",""CfgLootTable""],0.5,[""FemaleUniforms"",""CfgLootTable""],0.5]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_MaleUniforms_items DATA: [[""U_O_CombatUniform_ocamo"",""item""],0.0128205,[""U_O_GhillieSuit"",""item""],0.0128205,[""U_O_PilotCoveralls"",""item""],0.0128205,[""U_O_Wetsuit"",""item""],0.0128205,[""MaleUniforms_OG_Guerilla"",""CfgLootTable""],0.0128205,[""MaleUniforms_Poloshirt"",""CfgLootTable""],0.0128205,[""U_C_Poor_1"",""item""],0.0128205,[""U_C_WorkerCoveralls"",""item""],0.0128205,[""U_C_Journalist"",""item""],0.0128205,[""U_C_Scientist"",""item""],0.0128205,[""U_OrestesBody"",""item""],0.0128205,[""DLCUniforms"",""CfgLootTable""],0.0128205,[""MaleUniforms_FullGhillieMarkDLC"",""CfgLootTable""],0.0128205,[""U_C_Commoner1_1"",""item""],0.0128205,[""U_C_Poor_2"",""item""],0.0128205,[""U_C_HunterBody_grn"",""item""],0.0128205,[""U_C_Poor_shorts_1"",""item""],0.0128205,[""U_C_Commoner_shorts"",""item""],0.0128205,[""U_C_ShirtSurfer_shorts"",""item""],0.0128205,[""U_C_TeeSurfer_shorts_1"",""item""],0.0128205,[""U_C_TeeSurfer_shorts_2"",""item""],0.0128205,[""U_ 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_GenericAuto_items DATA: [[""VehicleDocs"",""CfgLootTable""],0.0366972,[""ItemSafe"",""magazine""],0.00917431,[""ItemLockbox"",""magazine""],0.0366972,[""jerrycan_epoch"",""magazine""],0.0458716,[""CircuitParts"",""magazine""],0.0550459,[""MortarBucket"",""magazine""],0.0825688,[""Repairs"",""CfgLootTable""],0.0917431,[""ItemCorrugated"",""magazine""],0.100917,[""ItemBulb"",""magazine""],0.0183486,[""CinderBlocks"",""magazine""],0.110092,[""JackKit"",""magazine""],0.0733945,[""ItemCoolerE"",""magazine""],0.119266,[""ItemScraps"",""magazine""],0.119266,[""lighter_epoch"",""magazine""],0.00917431,[""ItemSolar"",""magazine""],0.0275229,[""ItemBattery"",""magazine""],0.0275229,[""ItemCables"",""magazine""],0.0275229,[""ItemBarrelE"",""magazine""],0.00917431]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Generic_items DATA: [[""ItemDocument"",""magazine""],0.0420168,[""ItemMixOil"",""magazine""],0.0336134,[""ItemCoolerE"",""magazine""],0.0504202,[""CircuitParts"",""magazine""],0.0672269,[""Repairs"",""CfgLootTable""],0.0588235,[""Towelette"",""magazine""],0.117647,[""HotColdPacks"",""CfgLootTable""],0.0756303,[""PaintCans"",""CfgLootTable""],0.0756303,[""Sodas"",""CfgLootTable""],0.0672269,[""CanFood"",""CfgLootTable""],0.0672269,[""Primitive"",""CfgLootTable""],0.176471,[""lighter_epoch"",""magazine""],0.00840336,[""Seeds"",""CfgLootTable""],0.00840336,[""ItemAluminumBar"",""magazine""],0.0168067,[""ItemCopperBar"",""magazine""],0.0168067,[""ItemTinBar"",""magazine""],0.00840336,[""ItemCanteen_Dirty"",""magazine""],0.0420168,[""ItemCanteen_Clean"",""magazine""],0.00840336,[""ItemBottlePlastic_Dirty"",""magazine""],0.0420168,[""ItemBottlePlastic_Clean"",""magazine""],0.00840336,[""ItemFireExtinguisher"",""magazine""],0.00840336]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_CanFood_items DATA: [[""ItemPowderMilk"",""magazine""],0.0247934,[""ItemRicebox"",""magazine""],0.0247934,[""ItemCereals"",""magazine""],0.0247934,[""ItemVitamins"",""magazine""],0.0247934,[""honey_epoch"",""magazine""],0.0413223,[""emptyjar_epoch"",""magazine""],0.107438,[""water_epoch"",""magazine""],0.0247934,[""clean_water_epoch"",""magazine""],0.00826446,[""FoodBioMeat"",""magazine""],0.0909091,[""sardines_epoch"",""magazine""],0.0909091,[""meatballs_epoch"",""magazine""],0.107438,[""scam_epoch"",""magazine""],0.115702,[""sweetcorn_epoch"",""magazine""],0.115702,[""FoodSnooter"",""magazine""],0.0413223,[""krypto_candy_epoch"",""magazine""],0.0330578,[""TacticalBacon"",""magazine""],0.0413223,[""FoodMeeps"",""magazine""],0.00826446,[""ItemEmptyTin"",""magazine""],0.0413223,[""ItemBakedBeans"",""magazine""],0.0247934,[""HotAxeSauce_epoch"",""magazine""],0.00826446]" 10:04:27 Error: Wheel reference not initialized 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Items_items DATA: [[""ItemCompass"",""item""],0.2,[""ItemGeigerCounter_EPOCH"",""item""],0.01,[""ItemGPS"",""item""],0.09,[""EpochRadio0"",""item""],0.03,[""EpochRadio1"",""item""],0.03,[""EpochRadio2"",""item""],0.03,[""EpochRadio3"",""item""],0.02,[""EpochRadio4"",""item""],0.02,[""EpochRadio5"",""item""],0.02,[""EpochRadio6"",""item""],0.02,[""EpochRadio7"",""item""],0.01,[""EpochRadio8"",""item""],0.01,[""EpochRadio9"",""item""],0.01,[""ItemWatch"",""item""],0.3,[""FAK"",""magazine""],0.2]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_MachinegunAmmo_items DATA: [[""MachinegunAmmo_200Rnd_65x39_cased_Box"",""CfgLootTable""],0.08,[""130Rnd_338_Mag"",""magazine""],0.06,[""MachinegunAmmo_150Rnd_762x54_Box"",""CfgLootTable""],0.1,[""MachinegunAmmo_100Rnd_65x39_caseless_mag"",""CfgLootTable""],0.13,[""200Rnd_556x45_M249"",""magazine""],0.1,[""150Rnd_93x64_Mag"",""magazine""],0.1,[""MachinegunAmmo_30Rnd_65x39_caseless_mag"",""CfgLootTable""],0.2,[""CUP_MachinegunAmmo"",""CfgLootTable""],0.23]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_CUP_MachinegunAmmo_items DATA: [[""CUP_200Rnd_TE4_Red_Tracer_556x45_M249"",""magazine""],0.0625,[""CUP_200Rnd_TE4_Yellow_Tracer_556x45_M249"",""magazine""],0.0625,[""CUP_200Rnd_TE1_Red_Tracer_556x45_M249"",""magazine""],0.0625,[""CUP_100Rnd_TE4_Green_Tracer_556x45_M249"",""magazine""],0.0625,[""CUP_100Rnd_TE4_Red_Tracer_556x45_M249"",""magazine""],0.0625,[""CUP_100Rnd_TE4_Yellow_Tracer_556x45_M249"",""magazine""],0.0625,[""CUP_200Rnd_TE4_Green_Tracer_556x45_L110A1"",""magazine""],0.0625,[""CUP_200Rnd_TE4_Red_Tracer_556x45_L110A1"",""magazine""],0.0625,[""CUP_200Rnd_TE4_Yellow_Tracer_556x45_L110A1"",""magazine""],0.0625,[""CUP_30Rnd_556x45_Stanag"",""magazine""],0.0625,[""CUP_30Rnd_556x45_G36"",""magazine""],0.0625,[""CUP_100Rnd_TE4_LRT4_White_Tracer_762x51_Belt_M"",""magazine""],0.0625,[""CUP_100Rnd_TE4_LRT4_Red_Tracer_762x51_Belt_M"",""magazine""],0.0625,[""CUP_200Rnd_TE4_Green_Tracer_556x45_M249"",""magazine""],0.0625,[""CUP_100Rnd_TE4_LRT4_762x54_PK_Tracer_Gree 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_SniperRifleM14_items DATA: [[""M14_EPOCH"",""weapon""],0.5,[""M14Grn_EPOCH"",""weapon""],0.5]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Headgear_items DATA: [[""HeadgearArmored"",""CfgLootTable""],0.1,[""HeadgearNoArmor"",""CfgLootTable""],0.9]" 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_HeadgearNoArmor_items DATA: [[""H_11_EPOCH"",""item""],0.016129,[""H_28_EPOCH"",""item""],0.016129,[""H_34_EPOCH"",""item""],0.016129,[""H_39_EPOCH"",""item""],0.016129,[""H_40_EPOCH"",""item""],0.016129,[""H_41_EPOCH"",""item""],0.016129,[""H_42_EPOCH"",""item""],0.016129,[""H_43_EPOCH"",""item""],0.016129,[""H_44_EPOCH"",""item""],0.016129,[""H_45_EPOCH"",""item""],0.016129,[""H_46_EPOCH"",""item""],0.016129,[""H_47_EPOCH"",""item""],0.016129,[""H_48_EPOCH"",""item""],0.016129,[""H_49_EPOCH"",""item""],0.016129,[""H_50_EPOCH"",""item""],0.016129,[""H_51_EPOCH"",""item""],0.016129,[""H_52_EPOCH"",""item""],0.016129,[""H_53_EPOCH"",""item""],0.016129,[""H_54_EPOCH"",""item""],0.016129,[""H_55_EPOCH"",""item""],0.016129,[""H_56_EPOCH"",""item""],0.016129,[""H_57_EPOCH"",""item""],0.016129,[""H_58_EPOCH"",""item""],0.016129,[""H_59_EPOCH"",""item""],0.016129,[""H_60_EPOCH"",""item""],0.016129,[""H_61_EPOCH"",""item""],0.016129,[""H_62_EPOCH"",""item""],0.016129,[""H 10:04:27 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_VehicleDocs_items DATA: [[""ItemVehDoc1"",""magazine""],0.487805,[""ItemVehDoc2"",""magazine""],0.365854,[""ItemVehDoc3"",""magazine""],0.097561,[""ItemVehDoc4"",""magazine""],0.0487805]" 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Muzzles_items DATA: [[""muzzle_sr25S_epoch"",""item""],0.0555556,[""muzzle_snds_H"",""item""],0.0555556,[""muzzle_snds_M"",""item""],0.0555556,[""muzzle_snds_L"",""item""],0.0555556,[""muzzle_snds_B"",""item""],0.0555556,[""muzzle_snds_H_MG"",""item""],0.0555556,[""muzzle_snds_acp"",""item""],0.0555556,[""Muzzles_MultiGun"",""CfgLootTable""],0.0555556,[""Muzzles_338MarkDLC"",""CfgLootTable""],0.0555556,[""Muzzles_93mmgMarkDLC"",""CfgLootTable""],0.0555556,[""CUP_Muzzles"",""CfgLootTable""],0.444444]" 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_FemaleUniforms_items DATA: [[""FemaleWetsuits"",""CfgLootTable""],0.010101,[""U_CamoRed_uniform"",""item""],0.010101,[""U_CamoAloha_uniform"",""item""],0.010101,[""U_CamoBiker_uniform"",""item""],0.010101,[""U_CamoBubblegum_uniform"",""item""],0.010101,[""U_CamoLumberjack_uniform"",""item""],0.010101,[""U_CamoOutback_uniform"",""item""],0.010101,[""U_CamoPink_uniform"",""item""],0.010101,[""U_CamoPinkPolka_uniform"",""item""],0.010101,[""U_CamoBrn_uniform"",""item""],0.010101,[""U_CamoBlue_uniform"",""item""],0.010101,[""U_Camo_uniform"",""item""],0.010101,[""U_ghillie1_uniform"",""item""],0.010101,[""U_ghillie2_uniform"",""item""],0.010101,[""U_ghillie3_uniform"",""item""],0.010101,[""U_JeansPatched1_uniform"",""item""],0.010101,[""U_JeansPatched2_uniform"",""item""],0.010101,[""U_JeansPatched3_uniform"",""item""],0.010101,[""U_JeansPatched4_uniform"",""item""],0.010101,[""U_JeansPatched5_uniform"",""item""],0.010101,[""U_JeansPatched6_uniform"",""item""],0.01010 10:04:28 O_Truck_02_transport_EPOCH: rear_hide - unknown animation source rear_hide 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Machinegun_items DATA: [[""LMG_Zafir_F"",""weapon""],0.0909091,[""Machinegun_arifle_MX_SW_F"",""CfgLootTable""],0.181818,[""LMG_Mk200_F"",""weapon""],0.272727,[""Machinegun_m249_EPOCH"",""CfgLootTable""],0.272727,[""MMG_MarkDLC_EPOCH"",""CfgLootTable""],0.0909091,[""CUP_lmgs"",""CfgLootTable""],0.0909091]" 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_MMG_MarkDLC_EPOCH_items DATA: [[""MMG_01_hex_F"",""weapon""],0.2,[""MMG_01_tan_F"",""weapon""],0.2,[""MMG_02_camo_F"",""weapon""],0.2,[""MMG_02_black_F"",""weapon""],0.2,[""MMG_02_sand_F"",""weapon""],0.2]" 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_PistolAmmo_items DATA: [[""EnergyPack"",""magazine""],0.04,[""6Rnd_RedSignal_F"",""magazine""],0.02,[""6Rnd_GreenSignal_F"",""magazine""],0.02,[""30Rnd_9x21_Mag"",""magazine""],0.08,[""6Rnd_45ACP_Cylinder"",""magazine""],0.09,[""16Rnd_9x21_Mag"",""magazine""],0.09,[""11Rnd_45ACP_Mag"",""magazine""],0.1,[""9Rnd_45ACP_Mag"",""magazine""],0.11,[""9rnd_45X88_magazine"",""magazine""],0.12,[""10rnd_22X44_magazine"",""magazine""],0.13,[""CUP_PistolAmmo"",""CfgLootTable""],0.1,[""CUP_ShotgunAmmo"",""CfgLootTable""],0.05,[""CUP_SubMachinegunAmmo"",""CfgLootTable""],0.05]" 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Food_items DATA: [[""ItemCoolerE"",""magazine""],0.0291262,[""bluburger_epoch"",""magazine""],0.038835,[""redburger_epoch"",""magazine""],0.038835,[""gyro_wrap_epoch"",""magazine""],0.038835,[""icecream_epoch"",""magazine""],0.0291262,[""Sodas"",""CfgLootTable""],0.436893,[""CanFood"",""CfgLootTable""],0.38835]" 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Sodas_items DATA: [[""WhiskeyNoodle"",""magazine""],0.049505,[""ItemSodaOrangeSherbet"",""magazine""],0.128713,[""ItemSodaAlpineDude"",""magazine""],0.0594059,[""ItemSodaPurple"",""magazine""],0.128713,[""ItemSodaMocha"",""magazine""],0.118812,[""ItemSodaBurst"",""magazine""],0.148515,[""ItemSodaRbull"",""magazine""],0.128713,[""FoodWalkNSons"",""magazine""],0.128713,[""ItemSodaEmpty"",""magazine""],0.108911]" 10:04:28 "DEBUG: LootTable: EPOCH_LT_CfgLootTable_CUP_Machinegun_arifle_MX_SW_F_items DATA: [[""arifle_MX_SW_F"",""weapon""],0.666667,[""arifle_MX_SW_Black_F"",""weapon""],0.333333]" 10:04:28 "DEBUG: Failed to find vehicle class" 10:04:28 "Epoch: Loading storage" 10:04:28 x\addons\a3_epoch_community\models\farming\sapling.p3d: No geometry and no visual shape 10:04:28 x\addons\a3_epoch_community\models\caffeinepills.p3d: No geometry and no visual shape 10:04:28 x\addons\a3_epoch_assets_1\models\trout_cooked.p3d: No geometry and no visual shape 10:04:28 x\addons\a3_epoch_community\models\farming\sapling_teen.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_community\models\enginespares.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_community\models\engineblock.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_community\models\fueltank.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_community\epoch_radsuit\radsuit_packed_epoch.p3d: No geometry and no visual shape 10:04:29 Error compiling '' in 'hitpelvis' 10:04:29 Error compiling '' in 'hitabdomen' 10:04:29 Error compiling '' in 'hitdiaphragm' 10:04:29 Error compiling '' in 'hitchest' 10:04:29 Error compiling '' in 'hitarms' 10:04:29 Error compiling '' in 'hitlegs' 10:04:29 x\addons\a3_epoch_community\models\krypto.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_community\models\icecream.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_assets_1\models\seabass.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_community\models\seeds.p3d: No geometry and no visual shape 10:04:29 x\addons\a3_epoch_assets\models\stick.p3d: No geometry and no visual shape 10:04:30 x\addons\a3_epoch_community\models\sunflower.p3d: No geometry and no visual shape 10:04:30 x\addons\a3_epoch_community\models\goldenseal.p3d: No geometry and no visual shape 10:04:30 Error compiling '' in 'hitpelvis' 10:04:30 Error compiling '' in 'hitabdomen' 10:04:30 Error compiling '' in 'hitdiaphragm' 10:04:30 Error compiling '' in 'hitchest' 10:04:30 Error compiling '' in 'hitarms' 10:04:30 Error compiling '' in 'hitlegs' 10:04:30 x\addons\a3_epoch_community\models\geigercounter.p3d: No geometry and no visual shape 10:04:31 x\addons\a3_epoch_community\models\hotsauce.p3d: No geometry and no visual shape 10:04:31 x\addons\a3_epoch_assets_1\models\trout.p3d: No geometry and no visual shape 10:04:31 x\addons\a3_epoch_assets_1\models\tuna_cooked.p3d: No geometry and no visual shape 10:04:32 "Epoch: Storage SPAWN TIMER 4.55301 slots left: 1404" 10:04:32 "Epoch: Loading static loot" 10:04:33 ausextras\signs\buildingsigns\perhos.p3d: No geometry and no visual shape 10:04:34 ausbuildings\doughnut_time\donutsign.p3d: No geometry and no visual shape 10:04:34 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:34 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:34 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:35 ausextras\shipwreck2\shipwreck2.p3d: No geometry and no visual shape 10:04:36 Strange convex component38 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component39 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component40 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component43 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component44 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component45 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component46 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component47 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component48 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component90 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component91 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component92 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component95 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component96 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component97 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component98 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component99 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component100 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component142 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component143 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component144 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component147 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component148 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component149 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component150 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component151 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component152 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component173 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component174 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component175 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 Strange convex component176 in xcam_pipe\bunker\bunker_01.p3d:geometryFire 10:04:36 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:04:36 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:04:36 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:04:36 ausextras\signs\buildingsigns\adehos.p3d: No geometry and no visual shape 10:04:36 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:36 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:37 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:37 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:37 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:37 Strange convex component25 in ca\structures\barn_w\barn_w_02.p3d:geometryView 10:04:37 Strange convex component26 in ca\structures\barn_w\barn_w_02.p3d:geometryView 10:04:37 austrees\bushes1\01\largefern.p3d: No geometry and no visual shape 10:04:37 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:37 austrees\bushes\02\bush2.p3d: No geometry and no visual shape 10:04:37 austrees\bushes\04\bush4.p3d: No geometry and no visual shape 10:04:37 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:38 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:04:38 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:04:38 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:38 ausextras\signs\buildingsigns\melbairport.p3d: No geometry and no visual shape 10:04:39 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:39 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:39 ca\misc2\samsite\powgen_big.p3d: house, config class missing 10:04:40 Bad simulation fire, type Land_FirePlace_F (class=house), a3\structures_f\civ\camping\fireplace_f.p3d 10:04:40 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:04:40 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 10:04:40 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 10:04:40 Cannot create object with abstract type Land_operahouse_1_2 (scope = private?) 10:04:40 Cannot create object with abstract type Land_operahouse_1_1 (scope = private?) 10:04:40 ausobjects\buildings\opera\operahouse_3.p3d: No geometry and no visual shape 10:04:41 "Loaded Server FSM" 10:04:41 "Loading Settings for VIP event..." 10:04:41 "Loading Settings for DynamicDebris event..." 10:04:42 Loading movesType CfgGesturesSapper 10:04:42 Creating action map cache 10:04:42 Error: Bone cheek_lf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone nose_tip doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_uplb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone jaw_ls doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_uplf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_lc doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_lwlb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_lwlf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone jaw_lm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone zig_lb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_lwm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_upm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone ear_l doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone corr doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone tongue_m doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone tongue_f doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eyebrow_lb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eyebrow_lf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eyebrow_lm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone zig_lm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eye_upl doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eye_lwl doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone cheek_l doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone cheek_lb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone zig_lt doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone nose_l doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone cheek_lm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone nose_r doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone forehead_r doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone forehead_m doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone forehead_l doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone cheek_rb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eye_lwr doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone cheek_r doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone zig_rt doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone zig_rm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone cheek_rf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone cheek_rm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eyebrow_rm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eyebrow_rf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eye_upr doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone eyebrow_rb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone tongue_b doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone ear_r doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone neck_l doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_uprf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone neck_r doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_uprb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_rc doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_lwrb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone lip_lwrf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone neck_b doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone zig_rb doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone neck_t doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone jaw_rf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone jaw_lf doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone chin doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone jaw_rm doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone jaw_rs doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone jaw doesn't exist in skeleton SapperSkeleton 10:04:42 Error: Bone headcutscene doesn't exist in skeleton SapperSkeleton 10:04:42 MovesType CfgGesturesSapper load time 104 ms 10:04:42 Loading movesType CfgMovesSapperSdr 10:04:42 Creating action map cache 10:04:44 MovesType CfgMovesSapperSdr load time 2119 ms 10:04:44 No such side 10:04:45 (SPK-DEBUG): loading ESVP serverside addon... 10:04:45 "Epoch: Server Start Complete: 44.294 seconds" 10:04:45 "DEBUG: server event \epoch_server_debris_event\EpochEvents\DynamicDebris.sqf" 10:04:45 "DEBUG UNITTEST INIT: _payload count 128" 10:04:45 "DEBUG UNITTEST INIT: _payload_64k count 65536" 10:04:45 "Epoch UnitTest: version Time: 0 : 0.6.0.0 " 10:04:45 "Epoch UnitTest: 000 Time: 0 : [""65924"",0] " 10:04:45 "Epoch UnitTest: 510 Time: 0 : [2018,10,05,10,04,45] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveSET Time: 0 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveSET 64k Time: 0.0400085 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveSETBIT Time: 0.00100708 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveSETBIT Time: 0 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGETBIT Time: 0 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGETBIT Time: 0 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveSETEX Time: 0.00100708 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveSETEX 64k Time: 0.0639954 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGET Time: 0 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGET 64k Time: 0.0419922 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGETRANGE Time: 0.0370178 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGETRANGE 64k Time: 0.0419922 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveEXPIRE Time: 0.0440063 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGETTTL Time: 0.00100708 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveGETTTL 64k Time: 0.039978 : [""isOK:"",true] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_DATA Time: 0 : [1,""1""] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_DATA_64 Time: 0 : [1,""1""] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_EXPIRES_DATA Time: 0.00100708 : [1,""1""] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_EXPIRES_DATA_64 Time: 0 : [1,""1""] " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveLog Time: 0.0360107 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveLog 64k Time: 0.00299072 : " 10:04:45 "Epoch UnitTest: EPOCH_fnc_server_hiveMD5 Time: 0.00299072 : [""isOK:"",true] " 10:04:46 "DEBUG: server event removed \epoch_server_debris_event\EpochEvents\DynamicDebris.sqf" 10:05:29 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [12947.3,27599.9,0] : _markerClass BlueMarker2 : _aiDifficultyLevel blue _markerMissionName Bandit Patrol" 10:05:41 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [18969.3,13174.1] : _markerClass Mafia Pirates501354 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 10:06:15 BEServer: registering a new player #1090315366 10:06:29 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [14472.6,25697.7,0] : _markerClass RedMarker1 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 10:06:44 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [1955.96,10774.4] : _markerClass Mafia Pirates980754 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 10:06:55 Server: Object 0:0 not found (message Type_181) 10:06:55 Server: Object 0:0 not found (message Type_181) 10:06:55 Server: Object 0:0 not found (message Type_181) 10:06:55 Server: Object 0:0 not found (message Type_181) 10:06:55 Server: Object 0:0 not found (message Type_181) 10:06:55 Server: Object 0:0 not found (message Type_181) 10:07:14 Unaccessible 10:07:14 "<infiSTAR.de>TOKENLOG| MegaZ(76561197990778975) CLIENT OWNER ID [3], TOKEN [ng59o4nnzwd65xx0e] [01-07-2018 15-36-18 - v259]" 10:07:14 "<infiSTAR.de> ******ADMIN-LOGIN******: MegaZ(76561197990778975) (v259)" 10:07:14 "<infiSTAR.de>CONNECTLOG| 0h 5min | Connected: MegaZ(76561197990778975 - 3) - time: 274.902 - serverFPS: 50.3145 [01-07-2018 15-36-18 - v259]" 10:07:14 "EpochZ 1.0: 1 Player in game." 10:07:14 "EpochZ 1.0: Waiting 180 seconds." 10:07:14 Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed 10:07:14 No speaker given for 'Abdul-Aziz Ghafurzai' 10:07:15 Speaker Male01_F not found in CfgVoiceTypes 10:07:27 "[blckeagls] Timstamp 437.729 |Dynamic Missions Running 5 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 7 Min | Missions Run 0" 10:07:29 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [6966.56,25823.1,0] : _markerClass BlueMarker1 : _aiDifficultyLevel blue _markerMissionName Rescue Hostage" 10:07:37 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[71,111,100,32,77,111,100,101,32,45,32,49]],""2:3736""]" 10:07:37 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:07:37 "<infiSTAR.de>ADMINLOG| 0h 6min | MegaZ(76561197990778975) | God Mode - 1 [01-07-2018 15-36-18 - v259]" 10:07:37 "[A3EAI Monitor] [Uptime:00:07:27][FPS:50][Groups:6/6][Respawn:0][HC:false]" 10:07:37 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 10:07:44 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[86,101,104,105,99,108,101,32,77,97,114,107,101,114,32,45,32,49]],""2:3736""]" 10:07:44 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:07:44 "<infiSTAR.de>ADMINLOG| 0h 6min | MegaZ(76561197990778975) | Vehicle Marker - 1 [01-07-2018 15-36-18 - v259]" 10:07:49 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,57,50,50,53,46,55,44,56,53,55,54,46,54,55,44,48,93,40,71,80,83,58,32,50,57,50,48,56,53,41]],""2:3736""]" 10:07:49 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:07:49 "<infiSTAR.de>ADMINLOG| 0h 6min | MegaZ(76561197990778975) | Teleport to [29225.7,8576.67,0](GPS: 292085) [01-07-2018 15-36-18 - v259]" 10:07:51 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [6265.33,10857] : _markerClass Mafia Pirates986246 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 10:08:16 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,53,51,46,53,44,57,54,52,57,46,57,54,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:08:16 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:08:16 "<infiSTAR.de>ADMINLOG| 0h 6min | MegaZ(76561197990778975) | Teleport to [30853.5,9649.96,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:08:18 Loading movesType CfgMovesRabbit_F 10:08:18 Creating action map cache 10:08:18 MovesType CfgMovesRabbit_F load time 31 ms 10:08:21 "EpochZ 1.0: Activating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 10:08:21 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31376.9,9985.63,0] " 10:08:23 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:23 "EpochZ 1.0: Randomly Selected Value : 192" 10:08:23 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:08:23 "EpochZ 1.0: Selected Zombie Class : RyanZombie30slow" 10:08:23 "EpochZ 1.0: Spawning 1 Zombie | Position : [31083.1,9774.38,0] | Class : RyanZombie30slow " 10:08:23 Loading movesType CfgGesturesMale 10:08:23 Creating action map cache 10:08:23 MovesType CfgGesturesMale load time 21 ms 10:08:23 Loading movesType CfgRyanZombiesMovesMaleSdrSlow2 10:08:23 Creating action map cache 10:08:23 MovesType CfgRyanZombiesMovesMaleSdrSlow2 load time 36 ms 10:08:25 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:25 "EpochZ 1.0: Randomly Selected Value : 146" 10:08:25 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:08:25 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1_1Walker" 10:08:25 "EpochZ 1.0: Spawning 1 Zombie | Position : [31021.9,9868.13,0] | Class : RyanZombieB_Soldier_02_f_1_1Walker " 10:08:25 Loading movesType CfgGesturesMale 10:08:25 Creating action map cache 10:08:25 MovesType CfgGesturesMale load time 21 ms 10:08:25 Loading movesType CfgRyanZombiesMovesMaleSdrwalker 10:08:25 Creating action map cache 10:08:25 MovesType CfgRyanZombiesMovesMaleSdrwalker load time 18 ms 10:08:27 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:27 "EpochZ 1.0: Randomly Selected Value : 60" 10:08:27 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:08:27 "EpochZ 1.0: Selected Zombie Class : RyanZombie26walker" 10:08:27 "EpochZ 1.0: Spawning 1 Zombie | Position : [31004.4,9831.88,0] | Class : RyanZombie26walker " 10:08:29 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:29 "EpochZ 1.0: Randomly Selected Value : 196" 10:08:29 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:08:29 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_w_worker_Fslow" 10:08:29 "EpochZ 1.0: Spawning 1 Zombie | Position : [31106.9,9723.13,0] | Class : RyanZombieC_man_w_worker_Fslow " 10:08:30 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [26623.6,12347.5,0] : _markerClass RedMarker2 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 10:08:31 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:31 "EpochZ 1.0: Randomly Selected Value : 216" 10:08:31 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:08:31 "EpochZ 1.0: Selected Zombie Class : RyanZombie28slow" 10:08:31 "EpochZ 1.0: Spawning 1 Zombie | Position : [31103.1,9751.88,0] | Class : RyanZombie28slow " 10:08:33 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31200.6,9915.63,0] " 10:08:35 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:35 "EpochZ 1.0: Randomly Selected Value : 294" 10:08:35 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 10:08:35 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_fslow" 10:08:35 "EpochZ 1.0: Spawning 1 Zombie | Position : [30978.1,9876.88,0] | Class : RyanZombieB_Soldier_04_fslow " 10:08:36 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""CUP_C_Datsun_Tubeframe"",750,1,""cfgvehicles"",""Datsun 620 Pickup (Tubeframe)"","""",""\CUP\WheeledVehicles\CUP_WheeledVehicles_Datsun\data\UI\datsun1_civil_3_open_ca.paa"","""","""",9bb26b00# 2301178: cup_datsun_civil.p3d REMOTE]]" 10:08:37 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:37 "EpochZ 1.0: Randomly Selected Value : 56" 10:08:37 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:08:37 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_OrestesWalker" 10:08:37 "EpochZ 1.0: Spawning 1 Zombie | Position : [31115.6,9790.63,0] | Class : RyanZombieC_OrestesWalker " 10:08:39 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31260.6,9923.13,0] " 10:08:41 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31148.1,9815.63,0] " 10:08:43 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31248.1,9826.88,0] " 10:08:45 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:45 "EpochZ 1.0: Randomly Selected Value : 87" 10:08:45 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:08:45 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_2_FWalker" 10:08:45 "EpochZ 1.0: Spawning 1 Zombie | Position : [31145.6,9711.88,0] | Class : RyanZombieC_man_polo_2_FWalker " 10:08:47 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:47 "EpochZ 1.0: Randomly Selected Value : 86" 10:08:47 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:08:47 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_w_worker_FWalker" 10:08:47 "EpochZ 1.0: Spawning 1 Zombie | Position : [31015.6,9820.63,0] | Class : RyanZombieC_man_w_worker_FWalker " 10:08:49 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:49 "EpochZ 1.0: Randomly Selected Value : 137" 10:08:49 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:08:49 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1_1Walker" 10:08:49 "EpochZ 1.0: Spawning 1 Zombie | Position : [31134.4,9753.13,0] | Class : RyanZombieB_Soldier_02_f_1_1Walker " 10:08:51 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:51 "EpochZ 1.0: Randomly Selected Value : 217" 10:08:51 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:08:51 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_4_Fslow" 10:08:51 "EpochZ 1.0: Spawning 1 Zombie | Position : [31099.4,9650.63,0] | Class : RyanZombieC_man_polo_4_Fslow " 10:08:51 Loading movesType CfgGesturesMale 10:08:51 Creating action map cache 10:08:51 MovesType CfgGesturesMale load time 21 ms 10:08:51 Loading movesType CfgRyanZombiesMovesMaleSdrSlow 10:08:51 Creating action map cache 10:08:51 MovesType CfgRyanZombiesMovesMaleSdrSlow load time 36 ms 10:08:53 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:53 "EpochZ 1.0: Randomly Selected Value : 3" 10:08:53 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:08:53 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_OrestesWalker" 10:08:53 "EpochZ 1.0: Spawning 1 Zombie | Position : [31053.1,9794.38,0] | Class : RyanZombieC_OrestesWalker " 10:08:55 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31060.6,9919.38,0] " 10:08:57 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:57 "EpochZ 1.0: Randomly Selected Value : 65" 10:08:57 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:08:57 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_1Walker" 10:08:57 "EpochZ 1.0: Spawning 1 Zombie | Position : [31015.6,9820.63,0] | Class : RyanZombieC_man_1Walker " 10:08:59 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:08:59 "EpochZ 1.0: Randomly Selected Value : 255" 10:08:59 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:08:59 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_journalist_Fslow" 10:08:59 "EpochZ 1.0: Spawning 1 Zombie | Position : [31000.6,9831.88,0] | Class : RyanZombieC_journalist_Fslow " 10:09:01 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:09:01 "EpochZ 1.0: Randomly Selected Value : 186" 10:09:01 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:09:01 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_6_Fslow" 10:09:01 "EpochZ 1.0: Spawning 1 Zombie | Position : [30985.6,9799.38,0] | Class : RyanZombieC_man_polo_6_Fslow " 10:09:03 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:09:03 "EpochZ 1.0: Randomly Selected Value : 51" 10:09:03 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:09:03 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_pilot_FWalker" 10:09:03 "EpochZ 1.0: Spawning 1 Zombie | Position : [31085.6,9781.88,0] | Class : RyanZombieC_man_pilot_FWalker " 10:09:03 BEServer: registering a new player #1722770276 10:09:06 "EpochZ 1.0: No suitable spawn location found for a Zombie near [] " 10:09:07 [DZMS]: Running Minor Mission SM1. 10:09:08 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31230.6,9861.88,0] " 10:09:09 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:09:09 "EpochZ 1.0: Randomly Selected Value : 276" 10:09:09 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 10:09:09 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_f_1slow" 10:09:09 "EpochZ 1.0: Spawning 1 Zombie | Position : [30923.1,9835.63,0] | Class : RyanZombieB_Soldier_04_f_1slow " 10:09:11 Performance warning: SimpleSerialization::Write '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:11 a3\characters_f_beta\heads\glasses\g_shades_red.p3d: No geometry and no visual shape 10:09:11 Performance warning: SimpleSerialization::Read '' 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:11 Given magazine[ItemPainkiller] not found) 10:09:11 [DZMS]: (DZMSUnitsMinor) 2 AI Spawned, 2 units in mission. 10:09:12 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31380.6,9890.63,0] " 10:09:16 Given magazine[ItemPainkiller] not found) 10:09:16 a3\characters_f_gamma\heads\glasses\g_aviators.p3d: No geometry and no visual shape 10:09:16 [DZMS]: (DZMSUnitsMinor) 2 AI Spawned, 4 units in mission. 10:09:21 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape 10:09:21 [DZMS]: (DZMSUnitsMinor) 2 AI Spawned, 6 units in mission. 10:09:24 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,56,48,48,53,46,50,53,44,49,52,55,52,53,46,52,44,48,93,40,71,80,83,58,32,48,56,48,49,52,55,41]],""2:3736""]" 10:09:24 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:09:24 "<infiSTAR.de>ADMINLOG| 0h 8min | MegaZ(76561197990778975) | Teleport to [8005.25,14745.4,0](GPS: 080147) [01-07-2018 15-36-18 - v259]" 10:09:27 a3\characters_f\heads\glasses\g_shades_blue.p3d: No geometry and no visual shape 10:09:27 Given magazine[ItemBloodbag] not found) 10:09:27 [DZMS]: (DZMSUnitsMinor) 2 AI Spawned, 8 units in mission. 10:09:28 [DZMS]: (DZMSUnitsMinor) Waiting for 4/8 Units or Less to be Alive and a Player to be Near the Objective. 10:09:30 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [36525.1,17101.1,0] : _markerClass OrangeMarker1 : _aiDifficultyLevel orange _markerMissionName Resupply Camp" 10:09:30 "EpochZ 1.0: Removing 1 Zombie | Position : [31019.7,9863.42,0.00143862] | Class : RyanZombieB_Soldier_02_f_1_1walker" 10:09:32 "EpochZ 1.0: Removing 1 Zombie | Position : [31012.5,9825.73,0.00143909] | Class : RyanZombie26walker" 10:09:32 "EpochZ 1.0: Removing 1 Zombie | Position : [31007.5,9827.05,0.00143909] | Class : RyanZombieC_man_1walker" 10:09:34 "EpochZ 1.0: Removing 1 Zombie | Position : [31014.4,9820.33,0.00143862] | Class : RyanZombieC_journalist_Fslow" 10:09:36 "EpochZ 1.0: Removing 1 Zombie | Position : [30989.3,9795,0.00143909] | Class : RyanZombieC_man_polo_6_Fslow" 10:09:38 "EpochZ 1.0: Removing 1 Zombie | Position : [31073.1,9766.58,0.00143909] | Class : RyanZombieC_man_pilot_Fwalker" 10:09:40 "EpochZ 1.0: Removing 1 Zombie | Position : [30975.3,9880.27,0.00143862] | Class : RyanZombieB_Soldier_04_fslow" 10:09:42 "EpochZ 1.0: Removing 1 Zombie | Position : [31096.6,9786.32,0.00282431] | Class : RyanZombieC_Oresteswalker" 10:09:44 "EpochZ 1.0: Removing 1 Zombie | Position : [30916.9,9831.52,0.00143909] | Class : RyanZombieB_Soldier_04_f_1slow" 10:09:45 "DEBUG: server event PlantSpawner" 10:09:50 "EpochZ 1.0: Removing 1 Zombie | Position : [31163.1,9714.38,0.00143909] | Class : RyanZombieC_man_polo_2_Fwalker" 10:09:52 "EpochZ 1.0: Removing 1 Zombie | Position : [31020.2,9831.45,0.00143909] | Class : RyanZombieC_man_w_worker_Fwalker" 10:09:53 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,52,48,55,51,46,53,44,49,57,52,53,49,46,54,44,48,93,40,71,80,83,58,32,48,52,48,49,57,52,41]],""2:3736""]" 10:09:53 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:09:53 "<infiSTAR.de>ADMINLOG| 0h 8min | MegaZ(76561197990778975) | Teleport to [4073.5,19451.6,0](GPS: 040194) [01-07-2018 15-36-18 - v259]" 10:09:54 "EpochZ 1.0: Removing 1 Zombie | Position : [31119.4,9754.22,0.00143909] | Class : RyanZombieB_Soldier_02_f_1_1walker" 10:09:58 "EpochZ 1.0: Removing 1 Zombie | Position : [31062.9,9803.27,0.00143862] | Class : RyanZombieC_Oresteswalker" 10:09:58 "EpochZ 1.0: Removing 1 Zombie | Position : [31079.6,9786.78,0.00143909] | Class : RyanZombie30slow" 10:10:14 "EpochZ 1.0: 1 Player in game." 10:10:14 "EpochZ 1.0: Waiting 180 seconds." 10:10:17 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a038c100# 2301499: truck_01_box_f.p3d REMOTE]]" 10:10:18 Loading movesType CfgMovesSnakes_F 10:10:18 Creating action map cache 10:10:18 MovesType CfgMovesSnakes_F load time 22 ms 10:10:30 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [31679,25369.8,0] : _markerClass GreenMarker1 : _aiDifficultyLevel green _markerMissionName Medical Camp" 10:10:31 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,53,55,50,57,46,52,49,44,50,52,51,55,57,46,52,44,48,93,40,71,80,83,58,32,48,53,55,50,52,51,41]],""2:3736""]" 10:10:31 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:10:31 "<infiSTAR.de>ADMINLOG| 0h 9min | MegaZ(76561197990778975) | Teleport to [5729.41,24379.4,0](GPS: 057243) [01-07-2018 15-36-18 - v259]" 10:10:39 Error: Object(3 : 16) not found 10:10:48 [DZMS]: Running Major Mission SM7. 10:10:50 Performance warning: SimpleSerialization::Write '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:10:50 Performance warning: SimpleSerialization::Read '' 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:10:50 Given magazine[ItemPainkiller] not found) 10:10:50 Given magazine[ItemPainkiller] not found) 10:10:50 Given magazine[ItemHeatPack] not found) 10:10:50 Given magazine[ItemPainkiller] not found) 10:10:50 [DZMS]: (DZMSUnitsMajor) 6 AI Spawned, 6 units in mission. 10:10:55 Given magazine[ItemHeatPack] not found) 10:10:55 Given magazine[ItemHeatPack] not found) 10:10:55 Given magazine[ItemBloodbag] not found) 10:10:55 Given magazine[ItemHeatPack] not found) 10:10:55 [DZMS]: (DZMSUnitsMajor) 6 AI Spawned, 12 units in mission. 10:11:00 Given magazine[ItemPainkiller] not found) 10:11:00 Given magazine[ItemHeatPack] not found) 10:11:00 Given magazine[ItemPainkiller] not found) 10:11:00 [DZMS]: (DZMSUnitsMajor) 4 AI Spawned, 16 units in mission. 10:11:03 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,56,55,46,56,44,49,57,55,53,55,46,51,44,48,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 10:11:03 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:11:03 "<infiSTAR.de>ADMINLOG| 0h 9min | MegaZ(76561197990778975) | Teleport to [23187.8,19757.3,0](GPS: 231197) [01-07-2018 15-36-18 - v259]" 10:11:05 Given magazine[ItemPainkiller] not found) 10:11:05 Given magazine[ItemHeatPack] not found) 10:11:05 [DZMS]: (DZMSUnitsMajor) 4 AI Spawned, 20 units in mission. 10:11:10 [DZMS]: (DZMSUnitsMajor) Waiting for 10/20 Units or Less to be Alive and a Player to be Near the Objective. 10:11:30 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a0f91600# 2301529: truck_02_covered_f.p3d REMOTE]]" 10:12:18 Loading movesType CfgMovesGoat_F 10:12:18 Creating action map cache 10:12:18 MovesType CfgMovesGoat_F load time 27 ms 10:12:28 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,48,49,53,55,46,52,44,50,56,55,56,51,46,50,44,48,93,40,71,80,83,58,32,50,48,49,50,56,55,41]],""2:3736""]" 10:12:28 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:12:28 "<infiSTAR.de>ADMINLOG| 0h 11min | MegaZ(76561197990778975) | Teleport to [20157.4,28783.2,0](GPS: 201287) [01-07-2018 15-36-18 - v259]" 10:12:28 "[blckeagls] Timstamp 738.184 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 12 Min | Missions Run 0" 10:12:38 "[A3EAI Monitor] [Uptime:00:12:28][FPS:50][Groups:6/6][Respawn:0][HC:false]" 10:12:38 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 10:13:15 "EpochZ 1.0: 1 Player in game." 10:13:15 "EpochZ 1.0: Waiting 180 seconds." 10:13:20 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,53,48,52,49,46,50,44,50,53,55,51,51,46,53,44,48,93,40,71,80,83,58,32,50,53,48,50,53,55,41]],""2:3736""]" 10:13:20 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:13:20 "<infiSTAR.de>ADMINLOG| 0h 11min | MegaZ(76561197990778975) | Teleport to [25041.2,25733.5,0](GPS: 250257) [01-07-2018 15-36-18 - v259]" 10:13:40 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,66,95,84,114,117,99,107,95,48,49,95,99,111,118,101,114,101,100,95,69,80,79,67,72,32,64,50,53,48,50,53,55,46,46]],""2:3736""]" 10:13:40 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:13:40 "<infiSTAR.de>ADMINLOG| 0h 12min | MegaZ(76561197990778975) | Deleting B_Truck_01_covered_EPOCH @250257.. [01-07-2018 15-36-18 - v259]" 10:13:50 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,50,52,48,49,46,56,44,50,55,49,57,53,44,48,93,40,71,80,83,58,32,51,50,52,50,55,49,41]],""2:3736""]" 10:13:50 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:13:50 "<infiSTAR.de>ADMINLOG| 0h 12min | MegaZ(76561197990778975) | Teleport to [32401.8,27195,0](GPS: 324271) [01-07-2018 15-36-18 - v259]" 10:14:00 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieC_man_w_worker_Fslow" 10:14:01 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie28slow" 10:14:19 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,56,56,49,46,54,44,51,49,56,49,51,46,50,44,48,93,40,71,80,83,58,32,50,55,56,51,49,56,41]],""2:3736""]" 10:14:19 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:14:19 "<infiSTAR.de>ADMINLOG| 0h 12min | MegaZ(76561197990778975) | Teleport to [27881.6,31813.2,0](GPS: 278318) [01-07-2018 15-36-18 - v259]" 10:14:22 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieC_man_polo_4_Fslow" 10:14:46 "DEBUG: server event PlantSpawner" 10:14:54 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a0222b00# 2301507: truck_03_covered_f.p3d REMOTE]]" 10:15:20 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,49,54,53,57,46,55,44,50,51,53,53,48,44,48,93,40,71,80,83,58,32,51,49,54,50,51,53,41]],""2:3736""]" 10:15:20 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:15:20 "<infiSTAR.de>ADMINLOG| 0h 13min | MegaZ(76561197990778975) | Teleport to [31659.7,23550,0](GPS: 316235) [01-07-2018 15-36-18 - v259]" 10:16:07 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,57,50,46,51,44,49,57,55,54,52,46,49,44,48,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 10:16:07 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:16:07 "<infiSTAR.de>ADMINLOG| 0h 14min | MegaZ(76561197990778975) | Teleport to [23192.3,19764.1,0](GPS: 231197) [01-07-2018 15-36-18 - v259]" 10:16:15 "EpochZ 1.0: 1 Player in game." 10:16:15 "EpochZ 1.0: Waiting 180 seconds." 10:16:18 Loading movesType CfgMovesSheep_F 10:16:18 Creating action map cache 10:16:18 MovesType CfgMovesSheep_F load time 30 ms 10:16:39 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a006c100# 2301510: truck_02_transport_f.p3d REMOTE]]" 10:16:55 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,57,48,48,46,54,44,49,57,53,48,50,46,53,44,48,93,40,71,80,83,58,32,50,51,57,49,57,53,41]],""2:3736""]" 10:16:55 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:16:55 "<infiSTAR.de>ADMINLOG| 0h 15min | MegaZ(76561197990778975) | Teleport to [23900.6,19502.5,0](GPS: 239195) [01-07-2018 15-36-18 - v259]" 10:17:00 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,52,51,54,56,46,52,44,49,57,54,49,56,46,56,44,48,93,40,71,80,83,58,32,50,52,51,49,57,54,41]],""2:3736""]" 10:17:00 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:17:00 "<infiSTAR.de>ADMINLOG| 0h 15min | MegaZ(76561197990778975) | Teleport to [24368.4,19618.8,0](GPS: 243196) [01-07-2018 15-36-18 - v259]" 10:17:07 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,52,51,57,53,46,56,44,49,57,56,56,53,46,53,44,48,93,40,71,80,83,58,32,50,52,51,49,57,56,41]],""2:3736""]" 10:17:07 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:17:07 "<infiSTAR.de>ADMINLOG| 0h 15min | MegaZ(76561197990778975) | Teleport to [24395.8,19885.5,0](GPS: 243198) [01-07-2018 15-36-18 - v259]" 10:17:12 "EpochZ 1.0: Activating Trigger | Position : [24257.2,20071.3,0] | GroupSize : 20 | Near : " 10:17:12 "EpochZ 1.0: Zombie Group Highest Compound Weight : 100" 10:17:12 "EpochZ 1.0: Randomly Selected Value : 22" 10:17:12 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 25" 10:17:12 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1Walker" 10:17:12 "EpochZ 1.0: Spawning 1 Zombie | Position : [24350.6,20045.6,0] | Class : RyanZombieB_Soldier_02_f_1Walker " 10:17:17 "EpochZ 1.0: Zombie Group Highest Compound Weight : 100" 10:17:17 "EpochZ 1.0: Randomly Selected Value : 96" 10:17:17 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 100" 10:17:17 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1_1slow" 10:17:17 "EpochZ 1.0: Spawning 1 Zombie | Position : [24405.6,20020.6,0] | Class : RyanZombieB_Soldier_03_f_1_1slow " 10:17:22 "EpochZ 1.0: Zombie Group Highest Compound Weight : 100" 10:17:22 "EpochZ 1.0: Randomly Selected Value : 58" 10:17:22 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 100" 10:17:22 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_f_1slow" 10:17:22 "EpochZ 1.0: Spawning 1 Zombie | Position : [24358.1,19873.1,0] | Class : RyanZombieB_Soldier_04_f_1slow " 10:17:23 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[105,110,102,105,83,84,65,82,32,77,97,112,73,99,111,110,115,32,45,32,49]],""2:3736""]" 10:17:23 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:17:23 "<infiSTAR.de>ADMINLOG| 0h 15min | MegaZ(76561197990778975) | infiSTAR MapIcons - 1 [01-07-2018 15-36-18 - v259]" 10:17:27 "EpochZ 1.0: Zombie Group Highest Compound Weight : 100" 10:17:27 "EpochZ 1.0: Randomly Selected Value : 54" 10:17:27 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 100" 10:17:27 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_f_1_1slow" 10:17:27 "EpochZ 1.0: Spawning 1 Zombie | Position : [24185.6,20010.6,0] | Class : RyanZombieB_Soldier_04_f_1_1slow " 10:17:28 "[blckeagls] Timstamp 1038.35 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 17 Min | Missions Run 0" 10:17:28 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,52,50,50,52,46,56,44,50,48,48,52,56,46,50,44,48,93,40,71,80,83,58,32,50,52,50,50,48,48,41]],""2:3736""]" 10:17:28 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:17:28 "<infiSTAR.de>ADMINLOG| 0h 16min | MegaZ(76561197990778975) | Teleport to [24224.8,20048.2,0](GPS: 242200) [01-07-2018 15-36-18 - v259]" 10:17:32 "EpochZ 1.0: Zombie Group Highest Compound Weight : 100" 10:17:32 "EpochZ 1.0: Randomly Selected Value : 87" 10:17:32 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 100" 10:17:32 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1_1slow" 10:17:32 "EpochZ 1.0: Spawning 1 Zombie | Position : [24108.1,19824.4,0] | Class : RyanZombieB_Soldier_03_f_1_1slow " 10:17:37 "EpochZ 1.0: Zombie Group Highest Compound Weight : 100" 10:17:37 "EpochZ 1.0: Randomly Selected Value : 17" 10:17:37 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 25" 10:17:37 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_lite_F_1Walker" 10:17:37 "EpochZ 1.0: Spawning 1 Zombie | Position : [24256.9,19861.9,0] | Class : RyanZombieB_Soldier_lite_F_1Walker " 10:17:38 "[A3EAI Monitor] [Uptime:00:17:28][FPS:50][Groups:6/6][Respawn:0][HC:false]" 10:17:38 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 10:17:42 "EpochZ 1.0: Zombie Group Highest Compound Weight : 100" 10:17:42 "EpochZ 1.0: Randomly Selected Value : 62" 10:17:42 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 100" 10:17:42 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_lite_Fslow" 10:17:42 "EpochZ 1.0: Spawning 1 Zombie | Position : [24010.6,20031.9,0] | Class : RyanZombieB_Soldier_lite_Fslow " 10:17:45 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,48,53,48,56,46,53,44,49,57,49,54,48,46,52,44,48,93,40,71,80,83,58,32,50,48,53,49,57,49,41]],""2:3736""]" 10:17:45 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:17:45 "<infiSTAR.de>ADMINLOG| 0h 16min | MegaZ(76561197990778975) | Teleport to [20508.5,19160.4,0](GPS: 205191) [01-07-2018 15-36-18 - v259]" 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:51 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:52 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:17:53 "WAI: position Road" 10:17:53 "WAI: Good position At [20480,20480,550]" 10:17:53 "EpochZ 1.0: Removing 1 Zombie | Position : [24401.5,20022.2,0.00142097] | Class : RyanZombieB_Soldier_03_f_1_1slow" 10:17:53 "WAI: [Mission: Drone Pilot]: Starting... [20480,20480,550]" 10:17:53 Strange convex component26 in a3\drones_f\air_f_gamma\uav_02\uav_02_f.p3d:geometryView 10:17:53 I_UAV_02_F: hideweapons - unknown animation source hideweapons 10:17:53 "WAI: Spawned a group of 3 AI at [20484.5,20476.7,0]" 10:17:54 "WAI: Spawned a group of 3 AI at [20481,20468.2,0]" 10:17:54 "WAI: Spawned a group of 3 AI at [20482.9,20473.7,0]" 10:17:54 "WAI: Spawned a group of 3 AI at [20490.9,20471.7,0]" 10:17:54 Duplicate HitPoint name 'HitGun' in 'I_HMG_01_high_F' 10:17:54 Duplicate HitPoint name 'HitTurret' in 'I_HMG_01_high_F' 10:17:54 Dimensions in class I_HMG_01_high_F should be an array of size 2. 10:17:54 "WAI: Spawned in 4 I_HMG_01_high_F" 10:17:58 "EpochZ 1.0: Removing 1 Zombie | Position : [24352.3,19850.6,0.00135803] | Class : RyanZombieB_Soldier_04_f_1slow" 10:18:03 "EpochZ 1.0: Removing 1 Zombie | Position : [24202.6,19997,0.00118637] | Class : RyanZombieB_Soldier_04_f_1_1slow" 10:18:08 "EpochZ 1.0: Removing 1 Zombie | Position : [24139.3,19850.5,0.00121307] | Class : RyanZombieB_Soldier_03_f_1_1slow" 10:18:13 "EpochZ 1.0: Removing 1 Zombie | Position : [24270.3,19861.8,0.00118065] | Class : RyanZombieB_Soldier_lite_F_1walker" 10:18:18 "EpochZ 1.0: Removing 1 Zombie | Position : [24023.4,20043.1,0.00155258] | Class : RyanZombieB_Soldier_lite_Fslow" 10:18:18 "EpochZ 1.0: Removing 1 Zombie | Position : [24360.1,20055.5,0.00154305] | Class : RyanZombieB_Soldier_02_f_1walker" 10:18:26 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,49,51,55,53,46,56,44,49,53,49,49,48,46,50,44,48,93,40,71,80,83,58,32,51,49,51,49,53,49,41]],""2:3736""]" 10:18:26 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:18:26 "<infiSTAR.de>ADMINLOG| 0h 17min | MegaZ(76561197990778975) | Teleport to [31375.8,15110.2,0](GPS: 313151) [01-07-2018 15-36-18 - v259]" 10:18:45 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,52,52,52,51,46,55,44,49,51,56,53,55,46,55,44,48,93,40,71,80,83,58,32,50,52,52,49,51,56,41]],""2:3736""]" 10:18:45 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:18:45 "<infiSTAR.de>ADMINLOG| 0h 17min | MegaZ(76561197990778975) | Teleport to [24443.7,13857.7,0](GPS: 244138) [01-07-2018 15-36-18 - v259]" 10:18:53 "EpochZ 1.0: Deactivating Trigger | Position : [24257.2,20071.3,0] | GroupSize : 20 | Near : " 10:19:12 "EpochZ 1.0: Deactivating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 10:19:16 "EpochZ 1.0: 1 Player in game." 10:19:16 "EpochZ 1.0: Waiting 180 seconds." 10:19:18 Loading movesType CfgMovesHen_F 10:19:18 Creating action map cache 10:19:18 MovesType CfgMovesHen_F load time 34 ms 10:19:45 "DEBUG: server event MoneyDrop" 10:19:45 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 10:19:46 "DEBUG: server event PlantSpawner" 10:21:56 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,52,52,48,52,46,55,44,49,51,57,49,57,46,53,44,48,93,40,71,80,83,58,32,50,52,52,49,51,57,41]],""2:3736""]" 10:21:56 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:21:56 "<infiSTAR.de>ADMINLOG| 0h 20min | MegaZ(76561197990778975) | Teleport to [24404.7,13919.5,0](GPS: 244139) [01-07-2018 15-36-18 - v259]" 10:22:16 "EpochZ 1.0: 1 Player in game." 10:22:16 "EpochZ 1.0: Waiting 180 seconds." 10:22:28 "[blckeagls] Timstamp 1338.46 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.5356 | Server Uptime 22 Min | Missions Run 0" 10:22:38 "[A3EAI Monitor] [Uptime:00:22:28][FPS:50][Groups:5/5][Respawn:1][HC:false]" 10:22:38 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 10:24:46 "DEBUG: server event ContainerSpawner" 10:24:46 Cargo_Container: door_1_rot - unknown animation source door_1_sound_source 10:24:46 Cargo_Container: door_1_locked_rot - unknown animation source door_1_locked_source 10:24:46 Cargo_Container: door_2_rot - unknown animation source door_2_sound_source 10:24:46 Cargo_Container: door_2_locked_rot - unknown animation source door_2_locked_source 10:24:46 Error: selection end1 missing in memory LOD of model a3\structures_f\ind\cargo\cargo20_orange_f.p3d 10:24:47 "DEBUG: server event PlantSpawner" 10:24:53 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:25:16 "EpochZ 1.0: 1 Player in game." 10:25:16 "EpochZ 1.0: Waiting 180 seconds." 10:26:14 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9ef14100# 2301504: truck_01_mover_f.p3d REMOTE]]" 10:26:45 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:26:47 BEServer: cannot find channel #1307903468, users.card=1 10:26:48 BEServer: registering a new player #1307903468 10:27:09 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 10:27:22 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,49,51,48,50,46,51,44,50,51,48,55,50,46,57,44,48,93,40,71,80,83,58,32,50,49,51,50,51,48,41]],""2:3736""]" 10:27:22 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:27:22 "<infiSTAR.de>ADMINLOG| 0h 25min | MegaZ(76561197990778975) | Teleport to [21302.3,23072.9,0](GPS: 213230) [01-07-2018 15-36-18 - v259]" 10:27:28 "[blckeagls] Timstamp 1638.62 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 27 Min | Missions Run 0" 10:27:39 "[A3EAI Monitor] [Uptime:00:27:29][FPS:50][Groups:5/5][Respawn:1][HC:false]" 10:27:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 10:27:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,56,55,51,44,50,51,56,50,55,46,52,44,48,93,40,71,80,83,58,32,50,51,56,50,51,56,41]],""2:3736""]" 10:27:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:27:39 "<infiSTAR.de>ADMINLOG| 0h 26min | MegaZ(76561197990778975) | Teleport to [23873,23827.4,0](GPS: 238238) [01-07-2018 15-36-18 - v259]" 10:27:48 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,51,55,48,46,49,44,50,52,51,50,48,46,56,44,48,93,40,71,80,83,58,32,50,55,51,50,52,51,41]],""2:3736""]" 10:27:48 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:27:48 "<infiSTAR.de>ADMINLOG| 0h 26min | MegaZ(76561197990778975) | Teleport to [27370.1,24320.8,0](GPS: 273243) [01-07-2018 15-36-18 - v259]" 10:28:16 "EpochZ 1.0: 1 Player in game." 10:28:16 "EpochZ 1.0: Waiting 180 seconds." 10:28:19 Loading movesType CfgMovesDog_F 10:28:19 Creating action map cache 10:28:19 MovesType CfgMovesDog_F load time 37 ms 10:28:20 Server: Object 0:0 not found (message Type_181) 10:28:20 Server: Object 0:0 not found (message Type_181) 10:28:20 Server: Object 0:0 not found (message Type_181) 10:28:20 Server: Object 0:0 not found (message Type_181) 10:28:20 Server: Object 0:0 not found (message Type_181) 10:28:20 Server: Object 0:0 not found (message Type_181) 10:28:25 Unaccessible 10:28:25 "<infiSTAR.de>TOKENLOG| Solster(76561198084209108) CLIENT OWNER ID [5], TOKEN [gyilkr7vr452wu] [01-07-2018 15-36-18 - v259]" 10:28:25 "<infiSTAR.de>CONNECTLOG| 0h 27min | Connected: Solster(76561198084209108 - 5) - time: 1544.84 - serverFPS: 50.1567 [01-07-2018 15-36-18 - v259]" 10:28:27 Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed 10:28:30 No speaker given for 'Rahim Khalili' 10:28:32 Speaker Male01_F not found in CfgVoiceTypes 10:28:45 "DEBUG: server event GardenManager" 10:28:45 "DEBUG: server event SolarChargerManager" 10:28:46 "STORAGE: saved to hive Garden_EPOCH Pos [[[12893,17479,1],[0.123047,0.119141,0.897888]],[0.292358,0.956309,0.00012207],[7.59493e-005,-0.000150866,1]] Owners [] Locked 1" 10:28:47 "STORAGE: saved to hive Garden_EPOCH Pos [[[12897,17488,43],[0.584961,0.666016,0.557526]],[-0.951294,0.308285,-6.10352e-005],[-6.38632e-005,9.16488e-007,1]] Owners [] Locked 1" 10:28:48 "STORAGE: saved to hive Garden_EPOCH Pos [[[12900,17479,6],[0.998047,0.904297,0.198486]],[-0.952026,0.306016,0],[0,0,1]] Owners [] Locked 1" 10:28:49 "STORAGE: saved to hive Garden_EPOCH Pos [[[12897,17485,43],[0.805664,0.685547,0.831726]],[-0.886963,-0.461841,-0.00012207],[-0.000134309,-6.37256e-006,1]] Owners [] Locked 1" 10:28:50 "STORAGE: saved to hive Garden_EPOCH Pos [[[12890,17469,3],[0.297852,0.453125,0.0649109]],[0.317322,0.948318,0],[0,0,1]] Owners [] Locked 1" 10:28:51 "STORAGE: saved to hive Garden_EPOCH Pos [[[12907,17477,5],[0.178711,0.90625,0.921753]],[0.950928,-0.309413,0],[0,0,1]] Owners [] Locked 1" 10:28:52 "STORAGE: saved to hive Garden_EPOCH Pos [[[12913,17472,0],[0.208984,0.744141,0.904449]],[0.307434,0.951569,0],[0,0,1]] Owners [] Locked 1" 10:28:53 "STORAGE: saved to hive Garden_EPOCH Pos [[[12899,17465,2],[0.915039,0.882813,0.457489]],[-0.299744,-0.95402,0],[0,0,1]] Owners [] Locked 1" 10:28:54 "STORAGE: saved to hive Garden_EPOCH Pos [[[12915,17482,0],[0.811523,0.416016,0]],[0.30542,0.952218,0],[0,0,1]] Owners [] Locked 1" 10:28:55 "STORAGE: saved to hive Garden_EPOCH Pos [[[12909,17463,2],[0.510742,0.0527344,0.106659]],[-0.307617,-0.95151,0],[0,0,1]] Owners [] Locked 1" 10:28:56 "STORAGE: saved to hive Garden_EPOCH Pos [[[12903,17475,6],[0.137695,0.753906,0.313171]],[-0.327026,-0.945015,0],[0,0,1]] Owners [] Locked 1" 10:28:57 "STORAGE: saved to hive Garden_EPOCH Pos [[[12903,17478,6],[0.947266,0.292969,0.0324707]],[0.318848,0.947806,0],[0,0,1]] Owners [] Locked 1" 10:28:58 "STORAGE: saved to hive Garden_EPOCH Pos [[[12909,17463,5],[0.442383,0.408203,0.331879]],[-0.307373,-0.951585,-0.00274658],[0.000869107,-0.00316704,0.999995]] Owners [] Locked 1" 10:28:59 "STORAGE: saved to hive Garden_EPOCH Pos [[[12915,17482,3],[0.519531,0.234375,0.220337]],[0.311523,0.950234,-0.00292969],[0.00421936,0.00169983,0.99999]] Owners [] Locked 1" 10:29:00 "STORAGE: saved to hive Garden_EPOCH Pos [[[12890,17469,6],[0.62207,0.542969,0.280487]],[0.308228,0.951312,-0.000488281],[0.000702867,0.00028554,1]] Owners [] Locked 1" 10:29:01 "STORAGE: saved to hive Garden_EPOCH Pos [[[12900,17483,43],[0.111328,0.71875,0.837463]],[-0.951294,0.308285,-0],[0,0,1]] Owners [] Locked 1" 10:29:02 "STORAGE: saved to hive Garden_EPOCH Pos [[[12903,17483,43],[0.0976563,0.929688,0.598267]],[0.4552,-0.890389,-0.00012207],[0.000103955,-8.39518e-005,1]] Owners [] Locked 1" 10:29:03 "STORAGE: saved to hive Garden_EPOCH Pos [[[12905,17486,43],[0.0585938,0.244141,0.227753]],[-0.951294,0.308285,6.10352e-005],[6.38632e-005,-9.16488e-007,1]] Owners [] Locked 1" 10:29:04 "STORAGE: saved to hive Garden_EPOCH Pos [[[12904,17489,42],[0.855469,0.212891,0.951691]],[0.889282,0.457359,-0.00012207],[0.000134089,6.18134e-006,1]] Owners [] Locked 1" 10:29:05 "STORAGE: saved to hive Garden_EPOCH Pos [[[12902,17491,42],[0.533203,0.191406,0.927673]],[-0.951294,0.308285,0.000244141],[0.000267054,3.21336e-005,1]] Owners [] Locked 1" 10:29:06 "STORAGE: saved to hive Garden_EPOCH Pos [[[12899,17490,43],[0.589844,0.980469,0.167389]],[-0.464417,0.885617,-0.00012207],[-0.000104562,8.30039e-005,1]] Owners [] Locked 1" 10:29:47 "DEBUG: server event PlantSpawner" 10:30:25 "EpochZ 1.0: Next Horde in 21 minutes." 10:31:13 "WAI: position Wildness" 10:31:13 "WAI: Good position At [32013.9,27282.1]" 10:31:13 "WAI: [Mission: Mi-8 Crash]: Starting... [32013.9,27282.1]" 10:31:13 "WAI: Spawned a group of 7 AI at [32021.1,27267.2,0]" 10:31:14 "WAI: Spawned a group of 7 AI at [32021.3,27278.8,0]" 10:31:17 "EpochZ 1.0: 2 Player in game." 10:31:17 "EpochZ 1.0: Waiting 90 seconds." 10:32:28 "[blckeagls] Timstamp 1939 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 32 Min | Missions Run 0" 10:32:39 "[A3EAI Monitor] [Uptime:00:32:29][FPS:50][Groups:5/5][Respawn:1][HC:false]" 10:32:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 10:32:40 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[86,101,104,105,99,108,101,32,71,111,100,32,77,111,100,101,32,45,32,49]],""2:3736""]" 10:32:40 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:32:40 "<infiSTAR.de>ADMINLOG| 0h 31min | MegaZ(76561197990778975) | Vehicle God Mode - 1 [01-07-2018 15-36-18 - v259]" 10:32:47 "EpochZ 1.0: 2 Player in game." 10:32:47 "EpochZ 1.0: Waiting 90 seconds." 10:32:54 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,56,49,46,56,44,49,57,55,52,57,46,57,44,48,46,49,57,48,52,57,56,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 10:32:54 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:32:54 "<infiSTAR.de>ADMINLOG| 0h 31min | MegaZ(76561197990778975) | Teleport to [23181.8,19749.9,0.190498](GPS: 231197) [01-07-2018 15-36-18 - v259]" 10:33:17 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""CUP_C_C47_CIV"",667,0.7,""cfgvehicles"",""C-47 Skytrain"","""",""\cup\airvehicles\cup_airvehicles_DC3\Data\ui\DC3_CA.paa"","""","""",97f88100# 2300806: cup_c47.p3d REMOTE]]" 10:33:53 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,54,53,51,49,46,54,44,51,51,54,55,55,46,54,44,48,93,40,71,80,83,58,32,49,54,53,51,51,54,41]],""2:3736""]" 10:33:53 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:33:53 "<infiSTAR.de>ADMINLOG| 0h 32min | MegaZ(76561197990778975) | Teleport to [16531.6,33677.6,0](GPS: 165336) [01-07-2018 15-36-18 - v259]" 10:33:58 "EpochZ 1.0: Activating Trigger | Position : [16903.8,33750.8,0] | GroupSize : 25 | Near : Darwin " 10:33:58 "EpochZ 1.0: Activating Trigger | Position : [16068.2,33516.4,0] | GroupSize : 25 | Near : " 10:33:58 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16938.1,33683.1,0] " 10:33:59 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16000.6,33750.6,0] " 10:34:00 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:34:00 "EpochZ 1.0: Randomly Selected Value : 258" 10:34:00 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 10:34:00 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1slow" 10:34:00 "EpochZ 1.0: Spawning 1 Zombie | Position : [16718.1,33683.1,0] | Class : RyanZombieB_Soldier_03_f_1slow " 10:34:00 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:34:00 "EpochZ 1.0: Randomly Selected Value : 294" 10:34:00 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 10:34:00 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_lite_Fslow" 10:34:00 "EpochZ 1.0: Spawning 1 Zombie | Position : [16341.9,33580.6,0] | Class : RyanZombieB_Soldier_lite_Fslow " 10:34:02 "EpochZ 1.0: No suitable spawn location found for a Zombie near [17009.4,33821.9,0] " 10:34:03 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16009.4,33515.6,0] " 10:34:04 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:34:04 "EpochZ 1.0: Randomly Selected Value : 25" 10:34:04 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:34:04 "EpochZ 1.0: Selected Zombie Class : RyanZombie15walker" 10:34:04 "EpochZ 1.0: Spawning 1 Zombie | Position : [16611.9,33818.1,0] | Class : RyanZombie15walker " 10:34:05 "EpochZ 1.0: No suitable spawn location found for a Zombie near [15945.6,33663.1,0] " 10:34:06 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16774.4,33860.6,0] " 10:34:07 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16098.1,33328.1,0] " 10:34:08 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16898.1,33689.4,0] " 10:34:09 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:34:09 "EpochZ 1.0: Randomly Selected Value : 124" 10:34:09 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:34:09 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1Walker" 10:34:09 "EpochZ 1.0: Spawning 1 Zombie | Position : [16280.6,33625.6,0] | Class : RyanZombieB_Soldier_03_f_1Walker " 10:34:10 "EpochZ 1.0: No suitable spawn location found for a Zombie near [17110.6,33714.4,0] " 10:34:11 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16181.9,33420.6,0] " 10:34:12 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:34:12 "EpochZ 1.0: Randomly Selected Value : 150" 10:34:12 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:34:12 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_fWalker" 10:34:12 "EpochZ 1.0: Spawning 1 Zombie | Position : [16684.4,33661.9,0] | Class : RyanZombieB_Soldier_02_fWalker " 10:34:12 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:34:12 "EpochZ 1.0: Randomly Selected Value : 176" 10:34:12 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:34:12 "EpochZ 1.0: Selected Zombie Class : RyanZombie25slow" 10:34:12 "EpochZ 1.0: Spawning 1 Zombie | Position : [16228.1,33530.6,0] | Class : RyanZombie25slow " 10:34:14 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16799.4,33741.9,0] " 10:34:15 "EpochZ 1.0: No suitable spawn location found for a Zombie near [15864.4,33625.6,0] " 10:34:17 "EpochZ 1.0: No suitable spawn location found for a Zombie near [16001.9,33460.6,0] " 10:34:17 "EpochZ 1.0: 2 Player in game." 10:34:17 "EpochZ 1.0: Waiting 90 seconds." 10:34:18 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,57,48,50,54,46,53,44,51,51,57,53,57,46,57,44,48,93,40,71,80,83,58,32,49,57,48,51,51,57,41]],""2:3736""]" 10:34:18 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:34:18 "<infiSTAR.de>ADMINLOG| 0h 32min | MegaZ(76561197990778975) | Teleport to [19026.5,33959.9,0](GPS: 190339) [01-07-2018 15-36-18 - v259]" 10:34:35 "EpochZ 1.0: Removing 1 Zombie | Position : [16716.1,33690.1,0.00140715] | Class : RyanZombieB_Soldier_03_f_1slow" 10:34:35 "EpochZ 1.0: Removing 1 Zombie | Position : [16347.4,33594.7,0.00143909] | Class : RyanZombieB_Soldier_lite_Fslow" 10:34:39 "EpochZ 1.0: Removing 1 Zombie | Position : [16596.2,33828.5,0.00143909] | Class : RyanZombie15walker" 10:34:44 "EpochZ 1.0: Removing 1 Zombie | Position : [16284.3,33629.4,0.00143862] | Class : RyanZombieB_Soldier_03_f_1walker" 10:34:46 "DEBUG: server event MoneyDrop" 10:34:46 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 10:34:47 "EpochZ 1.0: Removing 1 Zombie | Position : [16681.8,33657.1,0.00143909] | Class : RyanZombieB_Soldier_02_fwalker" 10:34:47 "EpochZ 1.0: Removing 1 Zombie | Position : [16234.4,33548.7,0.00143909] | Class : RyanZombie25slow" 10:34:48 "DEBUG: server event PlantSpawner" 10:34:48 "EpochZ 1.0: Deactivating Trigger | Position : [16903.8,33750.8,0] | GroupSize : 25 | Near : Darwin " 10:34:48 "EpochZ 1.0: Deactivating Trigger | Position : [16068.2,33516.4,0] | GroupSize : 25 | Near : " 10:35:14 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""hoverboard_epoch_a3"",200,0.5,""cfgvehicles"",""Hoverboard A3 Skin"","""",""\x\addons\a3_epoch_community\textures\Hoverboard\hoverboard_icon_ca.paa"","""","""",96421600# 2300782: hoverboard.p3d REMOTE]]" 10:35:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,48,52,48,46,52,44,50,54,52,55,55,46,52,44,48,93,40,71,80,83,58,32,51,48,48,50,54,52,41]],""2:3736""]" 10:35:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:35:39 "<infiSTAR.de>ADMINLOG| 0h 34min | MegaZ(76561197990778975) | Teleport to [30040.4,26477.4,0](GPS: 300264) [01-07-2018 15-36-18 - v259]" 10:35:46 "STORAGE: saved to hive Safe_EPOCH Pos [[[12905,17484,0],[0.148438,0.236328,0.528564]],[-0.897217,-0.44159,6.10352e-005],[6.66638e-005,2.77025e-006,1]] Owners [""76561198084209108""] Locked 1" 10:35:47 "EpochZ 1.0: 2 Player in game." 10:35:47 "EpochZ 1.0: Waiting 90 seconds." 10:36:18 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,56,56,48,46,56,44,51,49,55,57,55,46,49,44,45,48,46,48,48,56,53,54,48,49,56,93,40,71,80,83,58,32,50,55,56,51,49,55,41]],""2:3736""]" 10:36:18 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:36:18 "<infiSTAR.de>ADMINLOG| 0h 34min | MegaZ(76561197990778975) | Teleport to [27880.8,31797.1,-0.00856018](GPS: 278317) [01-07-2018 15-36-18 - v259]" 10:36:36 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,56,53,50,46,54,44,51,49,56,50,48,46,49,44,45,48,46,48,49,49,50,52,55,54,93,40,71,80,83,58,32,50,55,56,51,49,56,41]],""2:3736""]" 10:36:36 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:36:36 "<infiSTAR.de>ADMINLOG| 0h 35min | MegaZ(76561197990778975) | Teleport to [27852.6,31820.1,-0.0112476](GPS: 278318) [01-07-2018 15-36-18 - v259]" 10:37:07 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""CUP_C_C47_CIV"",2000,0.7,""cfgvehicles"",""C-47 Skytrain"","""",""\cup\airvehicles\cup_airvehicles_DC3\Data\ui\DC3_CA.paa"","""","""",9b98b040# 2301195: cup_c47.p3d REMOTE]]" 10:37:17 "EpochZ 1.0: 2 Player in game." 10:37:17 "EpochZ 1.0: Waiting 90 seconds." 10:37:28 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,54,54,53,53,46,54,44,50,52,54,51,48,46,53,44,48,93,40,71,80,83,58,32,49,54,54,50,52,54,41]],""2:3736""]" 10:37:28 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:37:28 "<infiSTAR.de>ADMINLOG| 0h 36min | MegaZ(76561197990778975) | Teleport to [16655.6,24630.5,0](GPS: 166246) [01-07-2018 15-36-18 - v259]" 10:37:29 "[blckeagls] Timstamp 2239.43 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 37 Min | Missions Run 0" 10:37:39 "[A3EAI Monitor] [Uptime:00:37:29][FPS:44][Groups:6/6][Respawn:0][HC:false]" 10:37:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 10:38:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,57,49,44,49,57,55,53,57,46,49,44,48,46,48,57,54,49,57,57,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 10:38:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:38:05 "<infiSTAR.de>ADMINLOG| 0h 36min | MegaZ(76561197990778975) | Teleport to [23191,19759.1,0.096199](GPS: 231197) [01-07-2018 15-36-18 - v259]" 10:38:26 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9acd10c0# 2301068: heli_transport_04_bench_f.p3d REMOTE]]" 10:38:47 "EpochZ 1.0: 2 Player in game." 10:38:47 "EpochZ 1.0: Waiting 90 seconds." 10:38:51 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,50,48,53,52,46,57,44,49,57,51,53,50,46,51,44,48,93,40,71,80,83,58,32,50,50,48,49,57,51,41]],""2:3736""]" 10:38:51 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:38:51 "<infiSTAR.de>ADMINLOG| 0h 37min | MegaZ(76561197990778975) | Teleport to [22054.9,19352.3,0](GPS: 220193) [01-07-2018 15-36-18 - v259]" 10:38:56 "EpochZ 1.0: Activating Trigger | Position : [22275,19260.4,0] | GroupSize : 15 | Near : Coober Pedy " 10:38:56 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:38:56 "EpochZ 1.0: Randomly Selected Value : 1" 10:38:56 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:38:56 "EpochZ 1.0: Selected Zombie Class : RyanZombie29walker" 10:38:56 "EpochZ 1.0: Spawning 1 Zombie | Position : [22241.9,19535.6,0] | Class : RyanZombie29walker " 10:39:00 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:00 "EpochZ 1.0: Randomly Selected Value : 5" 10:39:00 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:00 "EpochZ 1.0: Selected Zombie Class : RyanZombie27slow" 10:39:00 "EpochZ 1.0: Spawning 1 Zombie | Position : [22338.1,19253.1,0] | Class : RyanZombie27slow " 10:39:04 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:04 "EpochZ 1.0: Randomly Selected Value : 2" 10:39:04 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:39:04 "EpochZ 1.0: Selected Zombie Class : RyanZombie22walker" 10:39:04 "EpochZ 1.0: Spawning 1 Zombie | Position : [22100.6,19210.6,0] | Class : RyanZombie22walker " 10:39:08 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:08 "EpochZ 1.0: Randomly Selected Value : 1" 10:39:08 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:39:08 "EpochZ 1.0: Selected Zombie Class : RyanZombie30walker" 10:39:08 "EpochZ 1.0: Spawning 1 Zombie | Position : [22148.1,19204.4,0] | Class : RyanZombie30walker " 10:39:12 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:12 "EpochZ 1.0: Randomly Selected Value : 1" 10:39:12 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:39:12 "EpochZ 1.0: Selected Zombie Class : RyanZombie22walker" 10:39:12 "EpochZ 1.0: Spawning 1 Zombie | Position : [22271.9,19208.1,0] | Class : RyanZombie22walker " 10:39:13 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""SLOG"",[68,101,108,101,116,101,100,32,100,114,97,119,105,110,103,32,111,110,32,97,32,103,108,111,98,97,108,32,99,104,97,110,110,101,108,33]],""2:3736""]" 10:39:13 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:39:13 "<infiSTAR.de>SURVEILLANCELOG| 0h 37min | MegaZ(76561197990778975) | Deleted drawing on a global channel! [01-07-2018 15-36-18 - v259]" 10:39:16 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:16 "EpochZ 1.0: Randomly Selected Value : 1" 10:39:16 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:39:16 "EpochZ 1.0: Selected Zombie Class : RyanZombie15walker" 10:39:16 "EpochZ 1.0: Spawning 1 Zombie | Position : [22290.6,19241.9,0] | Class : RyanZombie15walker " 10:39:20 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:20 "EpochZ 1.0: Randomly Selected Value : 2" 10:39:20 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:39:20 "EpochZ 1.0: Selected Zombie Class : RyanZombie21walker" 10:39:20 "EpochZ 1.0: Spawning 1 Zombie | Position : [22235.6,19268.1,0] | Class : RyanZombie21walker " 10:39:24 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:24 "EpochZ 1.0: Randomly Selected Value : 3" 10:39:24 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:24 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_scientist_Fslow" 10:39:24 "EpochZ 1.0: Spawning 1 Zombie | Position : [22075.6,19130.6,0] | Class : RyanZombieC_scientist_Fslow " 10:39:28 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:28 "EpochZ 1.0: Randomly Selected Value : 5" 10:39:28 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:28 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_4_Fslow" 10:39:28 "EpochZ 1.0: Spawning 1 Zombie | Position : [22253.1,19325.6,0] | Class : RyanZombieC_man_polo_4_Fslow " 10:39:32 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:32 "EpochZ 1.0: Randomly Selected Value : 1" 10:39:32 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:39:32 "EpochZ 1.0: Selected Zombie Class : RyanZombie21walker" 10:39:32 "EpochZ 1.0: Spawning 1 Zombie | Position : [22343.1,19400.6,0] | Class : RyanZombie21walker " 10:39:36 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:36 "EpochZ 1.0: Randomly Selected Value : 3" 10:39:36 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:36 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_w_worker_Fslow" 10:39:36 "EpochZ 1.0: Spawning 1 Zombie | Position : [22245.6,19443.1,0] | Class : RyanZombieC_man_w_worker_Fslow " 10:39:40 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:40 "EpochZ 1.0: Randomly Selected Value : 2" 10:39:40 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 2" 10:39:40 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_5_FWalker" 10:39:40 "EpochZ 1.0: Spawning 1 Zombie | Position : [22059.4,19461.9,0] | Class : RyanZombieC_man_polo_5_FWalker " 10:39:44 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:44 "EpochZ 1.0: Randomly Selected Value : 6" 10:39:44 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:44 "EpochZ 1.0: Selected Zombie Class : RyanZombie25slow" 10:39:44 "EpochZ 1.0: Spawning 1 Zombie | Position : [22029.4,19106.9,0] | Class : RyanZombie25slow " 10:39:48 "DEBUG: server event PlantSpawner" 10:39:49 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:49 "EpochZ 1.0: Randomly Selected Value : 4" 10:39:49 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:49 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_journalist_Fslow" 10:39:49 "EpochZ 1.0: Spawning 1 Zombie | Position : [22086.9,19114.4,0] | Class : RyanZombieC_journalist_Fslow " 10:39:52 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,50,50,54,56,46,55,44,49,57,48,52,49,46,51,44,48,93,40,71,80,83,58,32,50,50,50,49,57,48,41]],""2:3736""]" 10:39:52 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:39:52 "<infiSTAR.de>ADMINLOG| 0h 38min | MegaZ(76561197990778975) | Teleport to [22268.7,19041.3,0](GPS: 222190) [01-07-2018 15-36-18 - v259]" 10:39:52 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:52 "EpochZ 1.0: Randomly Selected Value : 6" 10:39:52 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:52 "EpochZ 1.0: Selected Zombie Class : RyanZombie17slow" 10:39:52 "EpochZ 1.0: Spawning 1 Zombie | Position : [22071.9,19143.1,0] | Class : RyanZombie17slow " 10:39:56 "EpochZ 1.0: Zombie Group Highest Compound Weight : 6" 10:39:56 "EpochZ 1.0: Randomly Selected Value : 5" 10:39:56 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 6" 10:39:56 "EpochZ 1.0: Selected Zombie Class : RyanZombie24slow" 10:39:56 "EpochZ 1.0: Spawning 1 Zombie | Position : [22371.9,19063.1,0] | Class : RyanZombie24slow " 10:40:11 Ragdoll - loading of ragdoll source "Soldier" started. 10:40:11 Ragdoll - loading of ragdoll source "Soldier" finished successfully. 10:40:14 a3\data_f\particleeffects\universal\ammobelt_links.p3d: No geometry and no visual shape 10:40:17 "EpochZ 1.0: 2 Player in game." 10:40:17 "EpochZ 1.0: Waiting 90 seconds." 10:40:21 unable to find sentence radioprotocolgre/SentKeepDistanceInsideGroup 10:40:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[85,110,108,105,109,65,109,109,111,32,45,32,49]],""2:3736""]" 10:40:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:40:39 "<infiSTAR.de>ADMINLOG| 0h 39min | MegaZ(76561197990778975) | UnlimAmmo - 1 [01-07-2018 15-36-18 - v259]" 10:41:45 "Epoch: ADMIN: 76561197990778975 picked up 45 Crypto from object [6c2fe400# 2315294: mobilephone_smart_f.p3d,""Land_MPS_EPOCH""] with puid at [22222.1,19028,8.58307e-006]" 10:41:47 "EpochZ 1.0: 2 Player in game." 10:41:47 "EpochZ 1.0: Waiting 90 seconds." 10:42:18 No such side 10:42:30 "[blckeagls] Timstamp 2540.05 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.2308 | Server Uptime 42 Min | Missions Run 0" 10:42:32 "EpochZ 1.0: Removing 1 Zombie | Position : [22260.4,19509.6,0.00142479] | Class : RyanZombie29walker" 10:42:39 "[A3EAI Monitor] [Uptime:00:42:29][FPS:34][Groups:5/7][Respawn:2][HC:false]" 10:42:39 "[A3EAI Monitor] [Static:2][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 10:42:49 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,50,50,50,51,46,53,44,49,56,54,48,49,46,51,44,48,93,40,71,80,83,58,32,50,50,50,49,56,54,41]],""2:3736""]" 10:42:49 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:42:49 "<infiSTAR.de>ADMINLOG| 0h 41min | MegaZ(76561197990778975) | Teleport to [22223.5,18601.3,0](GPS: 222186) [01-07-2018 15-36-18 - v259]" 10:42:56 "EpochZ 1.0: Removing 1 Zombie | Position : [22291.9,19229.5,0.00143909] | Class : RyanZombie21walker" 10:42:58 "EpochZ 1.0: Removing 1 Zombie | Position : [22117.1,19212.1,0.00143909] | Class : RyanZombie17slow" 10:43:00 "EpochZ 1.0: Removing 1 Zombie | Position : [22256.3,19182.6,0.00143909] | Class : RyanZombieC_scientist_Fslow" 10:43:01 Subgroup R Alpha 4-5:1 (0xa598fe20) - network ID 2:4553 10:43:01 Unit C Alpha 1-6:1 (0x715d65c0) - network ID 2:4561 10:43:01 - leader from another subgroup 10:43:04 "EpochZ 1.0: Removing 1 Zombie | Position : [22237.4,19242,0.00143909] | Class : RyanZombieC_man_polo_4_Fslow" 10:43:06 "EpochZ 1.0: Removing 1 Zombie | Position : [22326.9,19397.8,0.00143909] | Class : RyanZombie27slow" 10:43:08 "EpochZ 1.0: Removing 1 Zombie | Position : [22351.1,19386.1,0.00143909] | Class : RyanZombie21walker" 10:43:10 "EpochZ 1.0: Removing 1 Zombie | Position : [22134.3,19294.6,0.00143909] | Class : RyanZombie22walker" 10:43:12 "EpochZ 1.0: Removing 1 Zombie | Position : [22262.9,19395.3,0.00143909] | Class : RyanZombieC_man_w_worker_Fslow" 10:43:14 "EpochZ 1.0: Removing 1 Zombie | Position : [22147,19245.7,0.001441] | Class : RyanZombie30walker" 10:43:15 Subgroup R Alpha 4-5:1 (0xa598fe20) - network ID 2:4553 10:43:15 Unit C Alpha 2-6:1 (0xd135e5c0) - network ID 2:4576 10:43:15 - leader from another subgroup 10:43:16 "EpochZ 1.0: Removing 1 Zombie | Position : [22104.4,19449.6,0.00143337] | Class : RyanZombieC_man_polo_5_Fwalker" 10:43:17 "Epoch: ADMIN: 76561197990778975 picked up 44 Crypto from object [6c2f8100# 2315633: mobilephone_smart_f.p3d,""Land_MPS_EPOCH""] with puid at [22154.3,18603.4,2.09808e-005]" 10:43:18 "EpochZ 1.0: 2 Player in game." 10:43:18 "EpochZ 1.0: Waiting 90 seconds." 10:43:18 "EpochZ 1.0: Removing 1 Zombie | Position : [22221.9,19207.3,0.00143909] | Class : RyanZombie22walker" 10:43:20 "EpochZ 1.0: Removing 1 Zombie | Position : [22153.1,19253.4,0.00143909] | Class : RyanZombie25slow" 10:43:22 "EpochZ 1.0: Removing 1 Zombie | Position : [22230,19207.5,0.00143909] | Class : RyanZombie15walker" 10:43:24 "EpochZ 1.0: Removing 1 Zombie | Position : [22143.5,19259.1,0.00143909] | Class : RyanZombieC_journalist_Fslow" 10:43:50 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,56,51,46,53,44,49,57,55,53,48,46,56,44,48,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 10:43:50 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:43:50 "<infiSTAR.de>ADMINLOG| 0h 42min | MegaZ(76561197990778975) | Teleport to [23183.5,19750.8,0](GPS: 231197) [01-07-2018 15-36-18 - v259]" 10:44:02 "EpochZ 1.0: Removing 1 Zombie | Position : [22226.4,19038.6,0.00143909] | Class : RyanZombie24slow" 10:44:25 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",931e8100# 2313742: truck_01_transport_f.p3d REMOTE]]" 10:44:45 "DEBUG: server event EarthQuake" 10:44:46 "DEBUG: server event ContainerSpawner" 10:44:48 "EpochZ 1.0: 2 Player in game." 10:44:48 "EpochZ 1.0: Waiting 90 seconds." 10:44:48 "DEBUG: server event PlantSpawner" 10:44:57 "EpochZ 1.0: Deactivating Trigger | Position : [22275,19260.4,0] | GroupSize : 15 | Near : Coober Pedy " 10:44:59 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,66,95,84,114,117,99,107,95,48,49,95,116,114,97,110,115,112,111,114,116,95,69,80,79,67,72,32,64,50,51,49,49,57,55,46,46]],""2:3736""]" 10:44:59 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:44:59 "<infiSTAR.de>ADMINLOG| 0h 43min | MegaZ(76561197990778975) | Deleting B_Truck_01_transport_EPOCH @231197.. [01-07-2018 15-36-18 - v259]" 10:45:14 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,50,49,53,57,46,52,44,50,49,53,55,54,46,52,44,48,93,40,71,80,83,58,32,50,50,49,50,49,53,41]],""2:3736""]" 10:45:14 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:45:14 "<infiSTAR.de>ADMINLOG| 0h 43min | MegaZ(76561197990778975) | Teleport to [22159.4,21576.4,0](GPS: 221215) [01-07-2018 15-36-18 - v259]" 10:45:26 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,50,49,51,51,46,49,44,50,49,53,56,57,46,53,44,48,93,40,71,80,83,58,32,50,50,49,50,49,53,41]],""2:3736""]" 10:45:26 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:45:26 "<infiSTAR.de>ADMINLOG| 0h 44min | MegaZ(76561197990778975) | Teleport to [22133.1,21589.5,0](GPS: 221215) [01-07-2018 15-36-18 - v259]" 10:45:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,50,49,51,49,46,52,44,50,49,53,56,57,46,53,44,48,93,40,71,80,83,58,32,50,50,49,50,49,53,41]],""2:3736""]" 10:45:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:45:39 "<infiSTAR.de>ADMINLOG| 0h 44min | MegaZ(76561197990778975) | Teleport to [22131.4,21589.5,0](GPS: 221215) [01-07-2018 15-36-18 - v259]" 10:46:04 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,49,57,49,51,46,49,44,50,51,52,49,57,46,54,44,48,93,40,71,80,83,58,32,50,49,57,50,51,52,41]],""2:3736""]" 10:46:04 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:46:04 "<infiSTAR.de>ADMINLOG| 0h 44min | MegaZ(76561197990778975) | Teleport to [21913.1,23419.6,0](GPS: 219234) [01-07-2018 15-36-18 - v259]" 10:46:18 "EpochZ 1.0: 2 Player in game." 10:46:18 "EpochZ 1.0: Waiting 90 seconds." 10:46:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,55,51,50,54,46,52,44,50,48,57,54,55,46,49,44,48,93,40,71,80,83,58,32,49,55,51,50,48,57,41]],""2:3736""]" 10:46:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:46:39 "<infiSTAR.de>ADMINLOG| 0h 45min | MegaZ(76561197990778975) | Teleport to [17326.4,20967.1,0](GPS: 173209) [01-07-2018 15-36-18 - v259]" 10:47:10 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,55,49,46,53,44,57,54,53,56,46,53,51,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:47:10 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:47:10 "<infiSTAR.de>ADMINLOG| 0h 45min | MegaZ(76561197990778975) | Teleport to [30871.5,9658.53,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:47:16 "EpochZ 1.0: Activating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 10:47:16 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:16 "EpochZ 1.0: Randomly Selected Value : 100" 10:47:16 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:47:16 "EpochZ 1.0: Selected Zombie Class : RyanZombie24walker" 10:47:16 "EpochZ 1.0: Spawning 1 Zombie | Position : [31111.9,9643.13,0] | Class : RyanZombie24walker " 10:47:18 No such side 10:47:18 Server: Object 3:65 not found (message Type_93) 10:47:18 Server: Object 3:66 not found (message Type_175) 10:47:19 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:19 "EpochZ 1.0: Randomly Selected Value : 106" 10:47:19 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:47:19 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1Walker" 10:47:19 "EpochZ 1.0: Spawning 1 Zombie | Position : [31141.9,9690.63,0] | Class : RyanZombieB_Soldier_02_f_1Walker " 10:47:21 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:21 "EpochZ 1.0: Randomly Selected Value : 195" 10:47:21 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:47:21 "EpochZ 1.0: Selected Zombie Class : RyanZombie29slow" 10:47:21 "EpochZ 1.0: Spawning 1 Zombie | Position : [30978.1,9863.13,0] | Class : RyanZombie29slow " 10:47:23 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:23 "EpochZ 1.0: Randomly Selected Value : 74" 10:47:23 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:47:23 "EpochZ 1.0: Selected Zombie Class : RyanZombie27walker" 10:47:23 "EpochZ 1.0: Spawning 1 Zombie | Position : [30996.9,9770.63,0] | Class : RyanZombie27walker " 10:47:25 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:25 "EpochZ 1.0: Randomly Selected Value : 129" 10:47:25 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:47:25 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_fWalker" 10:47:25 "EpochZ 1.0: Spawning 1 Zombie | Position : [31110.6,9681.88,0] | Class : RyanZombieB_Soldier_04_fWalker " 10:47:25 Server: Object 2:4949 not found (message Type_26) 10:47:25 Server: Object 2:4949 not found (message Type_26) 10:47:27 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31284.4,9988.13,0] " 10:47:29 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31151.9,9841.88,0] " 10:47:30 "[blckeagls] Timstamp 2840.73 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 47 Min | Missions Run 0" 10:47:31 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31283.1,9719.38,0] " 10:47:33 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:33 "EpochZ 1.0: Randomly Selected Value : 136" 10:47:33 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:47:33 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1Walker" 10:47:33 "EpochZ 1.0: Spawning 1 Zombie | Position : [31084.4,9748.13,0] | Class : RyanZombieB_Soldier_03_f_1Walker " 10:47:35 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31203.1,9615.63,0] " 10:47:37 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:37 "EpochZ 1.0: Randomly Selected Value : 129" 10:47:37 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:47:37 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1_1Walker" 10:47:37 "EpochZ 1.0: Spawning 1 Zombie | Position : [31133.1,9723.13,0] | Class : RyanZombieB_Soldier_03_f_1_1Walker " 10:47:39 "[A3EAI Monitor] [Uptime:00:47:29][FPS:50][Groups:5/6][Respawn:2][HC:false]" 10:47:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 10:47:39 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:39 "EpochZ 1.0: Randomly Selected Value : 32" 10:47:39 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:47:39 "EpochZ 1.0: Selected Zombie Class : RyanZombie27walker" 10:47:39 "EpochZ 1.0: Spawning 1 Zombie | Position : [30884.4,9799.38,0] | Class : RyanZombie27walker " 10:47:41 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31173.1,9671.88,0] " 10:47:43 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31429.4,9919.38,0] " 10:47:45 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31245.6,9789.38,0] " 10:47:46 Client: Object 3:69 (type Type_93) not found. 10:47:46 Client: Object 3:69 (type Type_93) not found. 10:47:46 Client: Object 3:69 (type Type_93) not found. 10:47:47 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31143.1,9851.88,0] " 10:47:48 "EpochZ 1.0: 2 Player in game." 10:47:48 "EpochZ 1.0: Waiting 90 seconds." 10:47:49 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:49 "EpochZ 1.0: Randomly Selected Value : 202" 10:47:49 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:47:49 "EpochZ 1.0: Selected Zombie Class : RyanZombie29slow" 10:47:49 "EpochZ 1.0: Spawning 1 Zombie | Position : [31028.1,9773.13,0] | Class : RyanZombie29slow " 10:47:51 Client: Object 3:69 (type Type_93) not found. 10:47:51 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31080.6,9994.38,0] " 10:47:53 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31284.4,9855.63,0] " 10:47:55 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:55 "EpochZ 1.0: Randomly Selected Value : 48" 10:47:55 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:47:55 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_1Walker" 10:47:55 "EpochZ 1.0: Spawning 1 Zombie | Position : [31008.1,9834.38,0] | Class : RyanZombieC_man_1Walker " 10:47:56 Client: Object 3:69 (type Type_93) not found. 10:47:57 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:57 "EpochZ 1.0: Randomly Selected Value : 2" 10:47:57 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:47:57 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_NikosWalker" 10:47:57 "EpochZ 1.0: Spawning 1 Zombie | Position : [31088.1,9800.63,0] | Class : RyanZombieC_NikosWalker " 10:47:59 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:47:59 "EpochZ 1.0: Randomly Selected Value : 138" 10:47:59 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:47:59 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_f_1_1Walker" 10:47:59 "EpochZ 1.0: Spawning 1 Zombie | Position : [31138.1,9716.88,0] | Class : RyanZombieB_Soldier_04_f_1_1Walker " 10:48:01 Client: Object 3:69 (type Type_93) not found. 10:48:01 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:48:01 "EpochZ 1.0: Randomly Selected Value : 96" 10:48:01 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:48:01 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_w_worker_FWalker" 10:48:01 "EpochZ 1.0: Spawning 1 Zombie | Position : [30910.6,9823.13,0] | Class : RyanZombieC_man_w_worker_FWalker " 10:48:03 Client: Object 3:69 (type Type_433) not found. 10:48:03 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31046.9,9914.38,0] " 10:48:03 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,53,55,53,46,57,44,50,51,55,53,48,46,52,44,48,93,40,71,80,83,58,32,51,48,53,50,51,55,41]],""2:3736""]" 10:48:03 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:48:03 "<infiSTAR.de>ADMINLOG| 0h 46min | MegaZ(76561197990778975) | Teleport to [30575.9,23750.4,0](GPS: 305237) [01-07-2018 15-36-18 - v259]" 10:48:06 Client: Object 3:69 (type Type_93) not found. 10:48:07 "EpochZ 1.0: Deactivating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 10:48:11 Client: Object 3:69 (type Type_93) not found. 10:48:12 "EpochZ 1.0: Removing 1 Zombie | Position : [31130.4,9722.27,0.00144053] | Class : RyanZombieB_Soldier_03_f_1_1walker" 10:48:14 "EpochZ 1.0: Removing 1 Zombie | Position : [30891.3,9818.49,0.00143909] | Class : RyanZombie27walker" 10:48:16 Client: Object 3:69 (type Type_93) not found. 10:48:18 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,57,54,50,49,46,49,44,50,51,48,57,53,46,56,44,48,93,40,71,80,83,58,32,50,57,54,50,51,48,41]],""2:3736""]" 10:48:18 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:48:18 "<infiSTAR.de>ADMINLOG| 0h 46min | MegaZ(76561197990778975) | Teleport to [29621.1,23095.8,0](GPS: 296230) [01-07-2018 15-36-18 - v259]" 10:48:19 Subgroup R Alpha 4-4:1 (0xd906f7e0) - network ID 2:4934 10:48:19 Unit C Alpha 1-3:1 (0xd8340440) - network ID 2:4939 10:48:19 - leader from another subgroup 10:48:21 Client: Object 3:69 (type Type_93) not found. 10:48:21 Client: Object 3:69 (type Type_433) not found. 10:48:24 "EpochZ 1.0: Removing 1 Zombie | Position : [31138.2,9706.44,0.00143909] | Class : RyanZombieB_Soldier_02_f_1walker" 10:48:24 "EpochZ 1.0: Removing 1 Zombie | Position : [31012.4,9783.24,0.00143909] | Class : RyanZombie29slow" 10:48:26 Client: Object 3:69 (type Type_93) not found. 10:48:26 "EpochZ 1.0: Removing 1 Zombie | Position : [30976.7,9865.48,0.00143909] | Class : RyanZombie29slow" 10:48:28 "EpochZ 1.0: Removing 1 Zombie | Position : [30978.2,9770.23,0.00143909] | Class : RyanZombie27walker" 10:48:30 "EpochZ 1.0: Removing 1 Zombie | Position : [31012.4,9833.8,0.00143909] | Class : RyanZombieC_man_1walker" 10:48:31 Client: Object 3:69 (type Type_93) not found. 10:48:32 "EpochZ 1.0: Removing 1 Zombie | Position : [31089.3,9819.03,0.00143909] | Class : RyanZombieC_Nikoswalker" 10:48:34 "EpochZ 1.0: Removing 1 Zombie | Position : [31131.4,9717.4,0.00141525] | Class : RyanZombieB_Soldier_04_f_1_1walker" 10:48:36 Client: Object 3:69 (type Type_93) not found. 10:48:36 "EpochZ 1.0: Removing 1 Zombie | Position : [30908.2,9823.32,0.00143909] | Class : RyanZombieC_man_w_worker_Fwalker" 10:48:40 Client: Object 3:69 (type Type_433) not found. 10:48:41 Client: Object 3:69 (type Type_93) not found. 10:49:18 "EpochZ 1.0: 2 Player in game." 10:49:18 "EpochZ 1.0: Waiting 90 seconds." 10:49:33 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,53,57,46,55,44,57,54,54,55,46,54,51,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:49:33 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:49:33 "<infiSTAR.de>ADMINLOG| 0h 48min | MegaZ(76561197990778975) | Teleport to [30859.7,9667.63,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:49:39 "EpochZ 1.0: Activating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 10:49:39 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:39 "EpochZ 1.0: Randomly Selected Value : 35" 10:49:39 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:49:39 "EpochZ 1.0: Selected Zombie Class : RyanZombie30walker" 10:49:39 "EpochZ 1.0: Spawning 1 Zombie | Position : [31086.9,9696.88,0] | Class : RyanZombie30walker " 10:49:39 Server: Object 2:5043 not found (message Type_26) 10:49:42 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:42 "EpochZ 1.0: Randomly Selected Value : 135" 10:49:42 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:49:42 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_f_1Walker" 10:49:42 "EpochZ 1.0: Spawning 1 Zombie | Position : [30939.4,9758.13,0] | Class : RyanZombieB_Soldier_04_f_1Walker " 10:49:44 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:44 "EpochZ 1.0: Randomly Selected Value : 26" 10:49:44 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:49:44 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_1Walker" 10:49:44 "EpochZ 1.0: Spawning 1 Zombie | Position : [30915.6,9769.38,0] | Class : RyanZombieC_man_1Walker " 10:49:45 "DEBUG: server event AirDrop" 10:49:45 "DEBUG: server event Satellite" 10:49:45 "Epoch: Air Drop Triggered on B Alpha 1-2:1 (Solster) REMOTE" 10:49:46 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:46 "EpochZ 1.0: Randomly Selected Value : 118" 10:49:46 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:49:46 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1Walker" 10:49:46 "EpochZ 1.0: Spawning 1 Zombie | Position : [31070.6,9844.38,0] | Class : RyanZombieB_Soldier_02_f_1Walker " 10:49:46 "DEBUG: server event MoneyDrop" 10:49:46 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 10:49:48 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31381.9,9833.13,0] " 10:49:49 "DEBUG: server event PlantSpawner" 10:49:50 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31299.4,9970.63,0] " 10:49:52 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:52 "EpochZ 1.0: Randomly Selected Value : 222" 10:49:52 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 10:49:52 "EpochZ 1.0: Selected Zombie Class : RyanZombie22slow" 10:49:52 "EpochZ 1.0: Spawning 1 Zombie | Position : [31075.6,9728.13,0] | Class : RyanZombie22slow " 10:49:54 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:54 "EpochZ 1.0: Randomly Selected Value : 53" 10:49:54 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:49:54 "EpochZ 1.0: Selected Zombie Class : RyanZombie23walker" 10:49:54 "EpochZ 1.0: Spawning 1 Zombie | Position : [31066.9,9839.38,0] | Class : RyanZombie23walker " 10:49:56 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:56 "EpochZ 1.0: Randomly Selected Value : 133" 10:49:56 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:49:56 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1_1Walker" 10:49:56 "EpochZ 1.0: Spawning 1 Zombie | Position : [31106.9,9820.63,0] | Class : RyanZombieB_Soldier_02_f_1_1Walker " 10:49:58 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:49:58 "EpochZ 1.0: Randomly Selected Value : 104" 10:49:58 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:49:58 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_f_1Walker" 10:49:58 "EpochZ 1.0: Spawning 1 Zombie | Position : [30956.9,9885.63,0] | Class : RyanZombieB_Soldier_04_f_1Walker " 10:50:00 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:50:00 "EpochZ 1.0: Randomly Selected Value : 57" 10:50:00 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:50:00 "EpochZ 1.0: Selected Zombie Class : RyanZombie24walker" 10:50:00 "EpochZ 1.0: Spawning 1 Zombie | Position : [31058.1,9711.88,0] | Class : RyanZombie24walker " 10:50:02 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:50:02 "EpochZ 1.0: Randomly Selected Value : 114" 10:50:02 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:50:02 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_lite_FWalker" 10:50:02 "EpochZ 1.0: Spawning 1 Zombie | Position : [30916.9,9845.63,0] | Class : RyanZombieB_Soldier_lite_FWalker " 10:50:04 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:50:04 "EpochZ 1.0: Randomly Selected Value : 33" 10:50:04 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 10:50:04 "EpochZ 1.0: Selected Zombie Class : RyanZombie18walker" 10:50:04 "EpochZ 1.0: Spawning 1 Zombie | Position : [31113.1,9679.38,0] | Class : RyanZombie18walker " 10:50:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,51,54,56,46,53,44,49,52,54,55,49,46,55,44,48,93,40,71,80,83,58,32,50,55,51,49,52,54,41]],""2:3736""]" 10:50:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:50:05 "<infiSTAR.de>ADMINLOG| 0h 48min | MegaZ(76561197990778975) | Teleport to [27368.5,14671.7,0](GPS: 273146) [01-07-2018 15-36-18 - v259]" 10:50:17 "EpochZ 1.0: Removing 1 Zombie | Position : [30946.3,9763.16,0.00143909] | Class : RyanZombieB_Soldier_04_f_1walker" 10:50:19 "EpochZ 1.0: Removing 1 Zombie | Position : [30923.4,9766.89,0.00143909] | Class : RyanZombieC_man_1walker" 10:50:21 "EpochZ 1.0: Removing 1 Zombie | Position : [31076.6,9853.42,0.00143909] | Class : RyanZombieB_Soldier_02_f_1walker" 10:50:29 "EpochZ 1.0: Removing 1 Zombie | Position : [31063.6,9847.31,0.00143909] | Class : RyanZombie23walker" 10:50:29 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,53,54,46,55,44,57,54,54,50,46,48,52,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:50:29 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:50:29 "<infiSTAR.de>ADMINLOG| 0h 49min | MegaZ(76561197990778975) | Teleport to [30856.7,9662.04,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:50:30 "EpochZ 1.0: Deactivating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 10:50:30 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:50:30 "Epoch: STORAGE: 76561198084209108 created storage WorkBench_EPOCH at [12902.5,17470.1,15.0839] with slot 12" 10:50:31 "EpochZ 1.0: Removing 1 Zombie | Position : [31101.7,9807.9,0.00143909] | Class : RyanZombieB_Soldier_02_f_1_1walker" 10:50:33 "EpochZ 1.0: Removing 1 Zombie | Position : [30962.6,9877.5,0.00143909] | Class : RyanZombieB_Soldier_04_f_1walker" 10:50:35 "EpochZ 1.0: Activating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 10:50:35 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 10:50:35 "EpochZ 1.0: Randomly Selected Value : 139" 10:50:35 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 10:50:35 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_fWalker" 10:50:35 "EpochZ 1.0: Spawning 1 Zombie | Position : [30954.4,9756.88,0] | Class : RyanZombieB_Soldier_03_fWalker " 10:50:48 "EpochZ 1.0: 2 Player in game." 10:50:48 "EpochZ 1.0: Waiting 90 seconds." 10:50:55 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:50:58 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:51:01 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,53,49,52,50,46,51,44,50,52,52,50,57,46,53,44,48,93,40,71,80,83,58,32,50,53,49,50,52,52,41]],""2:3736""]" 10:51:01 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:51:01 "<infiSTAR.de>ADMINLOG| 0h 49min | MegaZ(76561197990778975) | Teleport to [25142.3,24429.5,0](GPS: 251244) [01-07-2018 15-36-18 - v259]" 10:51:07 "EpochZ 1.0: Removing 1 Zombie | Position : [30919.3,9820.37,0.00143909] | Class : RyanZombieB_Soldier_lite_Fwalker" 10:51:10 "EpochZ 1.0: Removing 1 Zombie | Position : [30949.4,9757.27,0.00143909] | Class : RyanZombieB_Soldier_03_fwalker" 10:51:26 "EpochZ 1.0: Next Horde in 23 minutes." 10:51:29 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,53,50,44,57,54,55,54,46,50,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:51:29 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:51:29 "<infiSTAR.de>ADMINLOG| 0h 50min | MegaZ(76561197990778975) | Teleport to [30852,9676.2,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:52:09 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,55,56,50,51,46,56,44,51,49,55,55,50,44,48,93,40,71,80,83,58,32,49,55,56,51,49,55,41]],""2:3736""]" 10:52:09 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:52:09 "<infiSTAR.de>ADMINLOG| 0h 50min | MegaZ(76561197990778975) | Teleport to [17823.8,31772,0](GPS: 178317) [01-07-2018 15-36-18 - v259]" 10:52:18 No such side 10:52:18 "EpochZ 1.0: 2 Player in game." 10:52:18 "EpochZ 1.0: Waiting 90 seconds." 10:52:20 Loading movesType CfgMovesCock_F 10:52:20 Creating action map cache 10:52:20 MovesType CfgMovesCock_F load time 14 ms 10:52:31 "[blckeagls] Timstamp 3141.39 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.6894 | Server Uptime 52 Min | Missions Run 0" 10:52:39 "[A3EAI Monitor] [Uptime:00:52:29][FPS:50][Groups:5/5][Respawn:1][HC:false]" 10:52:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:5][Air:2][Land:3][UAV:0][UGV:0]" 10:52:46 "DEBUG: server event GardenManager" 10:52:46 "DEBUG: server event SolarChargerManager" 10:52:46 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie24walker" 10:52:46 "STORAGE: saved to hive Garden_EPOCH Pos [[[12893,17479,1],[0.123047,0.119141,0.897888]],[0.292358,0.956309,0.00012207],[7.59493e-005,-0.000150866,1]] Owners [] Locked 1" 10:52:47 "STORAGE: saved to hive Garden_EPOCH Pos [[[12900,17479,6],[0.998047,0.904297,0.198486]],[-0.952026,0.306016,0],[0,0,1]] Owners [] Locked 1" 10:52:48 "STORAGE: saved to hive Garden_EPOCH Pos [[[12890,17469,3],[0.297852,0.453125,0.0649109]],[0.317322,0.948318,0],[0,0,1]] Owners [] Locked 1" 10:52:49 "STORAGE: saved to hive Garden_EPOCH Pos [[[12907,17477,5],[0.178711,0.90625,0.921753]],[0.950928,-0.309413,0],[0,0,1]] Owners [] Locked 1" 10:52:50 "STORAGE: saved to hive Garden_EPOCH Pos [[[12913,17472,0],[0.208984,0.744141,0.904449]],[0.307434,0.951569,0],[0,0,1]] Owners [] Locked 1" 10:52:51 "STORAGE: saved to hive Garden_EPOCH Pos [[[12899,17465,2],[0.915039,0.882813,0.457489]],[-0.299744,-0.95402,0],[0,0,1]] Owners [] Locked 1" 10:52:52 "STORAGE: saved to hive Garden_EPOCH Pos [[[12915,17482,0],[0.811523,0.416016,0]],[0.30542,0.952218,0],[0,0,1]] Owners [] Locked 1" 10:52:53 "STORAGE: saved to hive Garden_EPOCH Pos [[[12909,17463,2],[0.510742,0.0527344,0.106659]],[-0.307617,-0.95151,0],[0,0,1]] Owners [] Locked 1" 10:52:54 "STORAGE: saved to hive Garden_EPOCH Pos [[[12903,17475,6],[0.137695,0.753906,0.313171]],[-0.327026,-0.945015,0],[0,0,1]] Owners [] Locked 1" 10:52:55 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieB_Soldier_04_fwalker" 10:52:55 "STORAGE: saved to hive Garden_EPOCH Pos [[[12903,17478,6],[0.947266,0.292969,0.0324707]],[0.318848,0.947806,0],[0,0,1]] Owners [] Locked 1" 10:52:56 "STORAGE: saved to hive Garden_EPOCH Pos [[[12909,17463,5],[0.442383,0.408203,0.331879]],[-0.307373,-0.951585,-0.00274658],[0.000869107,-0.00316704,0.999995]] Owners [] Locked 1" 10:52:57 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,49,51,54,52,46,53,44,49,50,56,57,57,44,48,93,40,71,80,83,58,32,51,49,51,49,50,56,41]],""2:3736""]" 10:52:57 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:52:57 "<infiSTAR.de>ADMINLOG| 0h 51min | MegaZ(76561197990778975) | Teleport to [31364.5,12899,0](GPS: 313128) [01-07-2018 15-36-18 - v259]" 10:52:57 "STORAGE: saved to hive Garden_EPOCH Pos [[[12915,17482,3],[0.519531,0.234375,0.220337]],[0.311523,0.950234,-0.00292969],[0.00421936,0.00169983,0.99999]] Owners [] Locked 1" 10:52:58 "STORAGE: saved to hive Garden_EPOCH Pos [[[12890,17469,6],[0.62207,0.542969,0.280487]],[0.308228,0.951312,-0.000488281],[0.000702867,0.00028554,1]] Owners [] Locked 1" 10:52:59 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:53:03 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieB_Soldier_03_f_1walker" 10:53:06 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:53:12 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,49,53,51,51,46,54,44,49,51,54,55,54,46,56,44,48,93,40,71,80,83,58,32,51,49,53,49,51,54,41]],""2:3736""]" 10:53:12 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:53:12 "<infiSTAR.de>ADMINLOG| 0h 51min | MegaZ(76561197990778975) | Teleport to [31533.6,13676.8,0](GPS: 315136) [01-07-2018 15-36-18 - v259]" 10:53:15 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:53:32 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,52,52,48,48,46,54,44,49,51,56,57,54,46,51,44,48,46,48,51,53,55,50,48,56,93,40,71,80,83,58,32,50,52,52,49,51,56,41]],""2:3736""]" 10:53:32 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:53:32 "<infiSTAR.de>ADMINLOG| 0h 52min | MegaZ(76561197990778975) | Teleport to [24400.6,13896.3,0.0357208](GPS: 244138) [01-07-2018 15-36-18 - v259]" 10:53:48 "EpochZ 1.0: 2 Player in game." 10:53:48 "EpochZ 1.0: Waiting 90 seconds." 10:53:58 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",96f57040# 2300756: heli_transport_03_f.p3d REMOTE]]" 10:54:46 "STORAGE: saved to hive Safe_EPOCH Pos [[[12905,17483,0],[0.787109,0.566406,0.547516]],[-0.305969,-0.952041,-6.10352e-005],[-1.86749e-005,-5.81081e-005,1]] Owners [""76561198084209108""] Locked 1" 10:54:50 "DEBUG: server event PlantSpawner" 10:54:56 "STORAGE: saved to hive Safe_EPOCH Pos [[[12905,17483,0],[0.787109,0.566406,0.547516]],[-0.305969,-0.952041,-6.10352e-005],[-1.86749e-005,-5.81081e-005,1]] Owners [""76561198084209108""] Locked 1" 10:54:57 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,48,49,53,46,52,44,51,51,53,56,52,46,54,44,48,93,40,71,80,83,58,32,51,48,48,51,51,53,41]],""2:3736""]" 10:54:57 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:54:57 "<infiSTAR.de>ADMINLOG| 0h 53min | MegaZ(76561197990778975) | Teleport to [30015.4,33584.6,0](GPS: 300335) [01-07-2018 15-36-18 - v259]" 10:55:09 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie30walker" 10:55:17 "STORAGE: saved to hive Safe_EPOCH Pos [[[12905,17483,0],[0.787109,0.566406,0.547516]],[-0.305969,-0.952041,-6.10352e-005],[-1.86749e-005,-5.81081e-005,1]] Owners [""76561198084209108""] Locked 1" 10:55:18 "EpochZ 1.0: 2 Player in game." 10:55:18 "EpochZ 1.0: Waiting 90 seconds." 10:55:19 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,52,56,46,52,44,57,54,54,54,46,52,53,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:55:19 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:55:19 "<infiSTAR.de>ADMINLOG| 0h 53min | MegaZ(76561197990778975) | Teleport to [30848.4,9666.45,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:55:22 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie22slow" 10:55:27 "STORAGE: saved to hive Safe_EPOCH Pos [[[12905,17483,0],[0.787109,0.566406,0.547516]],[-0.305969,-0.952041,-6.10352e-005],[-1.86749e-005,-5.81081e-005,1]] Owners [""76561198084209108""] Locked 1" 10:55:30 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie24walker" 10:55:34 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie18walker" 10:55:51 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9e1c9600# 2301311: van_01_transport_f.p3d REMOTE],[""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"","""","""",9987ab00# 2301173: van_01_transport_f.p3d REMOTE],[""C_Van_01_transport_EPOCH"",1000,1,""cfgvehicles"",""Truck"",""The civ 10:56:26 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a33a0100# 2302552: van_01_transport_f.p3d REMOTE]]" 10:56:28 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:56:38 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:56:42 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:56:46 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:56:48 "EpochZ 1.0: 2 Player in game." 10:56:48 "EpochZ 1.0: Waiting 90 seconds." 10:57:16 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,48,57,57,46,49,44,50,53,56,48,55,46,54,44,48,93,40,71,80,83,58,32,50,55,48,50,53,56,41]],""2:3736""]" 10:57:16 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:57:16 "<infiSTAR.de>ADMINLOG| 0h 55min | MegaZ(76561197990778975) | Teleport to [27099.1,25807.6,0](GPS: 270258) [01-07-2018 15-36-18 - v259]" 10:57:18 No such side 10:57:30 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,50,53,56,46,52,44,50,52,55,55,52,46,51,44,48,93,40,71,80,83,58,32,50,55,50,50,52,55,41]],""2:3736""]" 10:57:30 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:57:30 "<infiSTAR.de>ADMINLOG| 0h 56min | MegaZ(76561197990778975) | Teleport to [27258.4,24774.3,0](GPS: 272247) [01-07-2018 15-36-18 - v259]" 10:57:31 "[blckeagls] Timstamp 3441.56 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 57 Min | Missions Run 0" 10:57:39 "[A3EAI Monitor] [Uptime:00:57:29][FPS:50][Groups:5/5][Respawn:1][HC:false]" 10:57:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:5][Air:2][Land:3][UAV:0][UGV:0]" 10:58:18 "EpochZ 1.0: 2 Player in game." 10:58:18 "EpochZ 1.0: Waiting 90 seconds." 10:58:27 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,54,50,46,50,44,57,54,52,55,46,49,49,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:58:27 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:58:27 "<infiSTAR.de>ADMINLOG| 0h 57min | MegaZ(76561197990778975) | Teleport to [30862.2,9647.11,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:58:28 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 10:58:37 Error: Object(5 : 61) not found 10:58:47 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,55,56,50,50,46,51,44,51,49,55,55,53,46,52,44,48,93,40,71,80,83,58,32,49,55,56,51,49,55,41]],""2:3736""]" 10:58:47 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:58:47 "<infiSTAR.de>ADMINLOG| 0h 57min | MegaZ(76561197990778975) | Teleport to [17822.3,31775.4,0](GPS: 178317) [01-07-2018 15-36-18 - v259]" 10:59:10 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,52,56,46,55,44,57,54,52,57,46,51,56,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 10:59:10 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 10:59:10 "<infiSTAR.de>ADMINLOG| 0h 57min | MegaZ(76561197990778975) | Teleport to [30848.7,9649.38,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 10:59:38 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9c9dc100# 2301283: van_01_transport_f.p3d REMOTE]]" 10:59:49 "EpochZ 1.0: 2 Player in game." 10:59:49 "EpochZ 1.0: Waiting 90 seconds." 10:59:50 "DEBUG: server event PlantSpawner" 10:59:54 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9fd21600# 2301446: van_01_transport_f.p3d REMOTE]]" 11:00:25 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,48,52,54,54,46,54,44,49,50,55,51,55,46,52,44,48,93,40,71,80,83,58,32,50,48,52,49,50,55,41]],""2:3736""]" 11:00:25 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:00:25 "<infiSTAR.de>ADMINLOG| 0h 59min | MegaZ(76561197990778975) | Teleport to [20466.6,12737.4,0](GPS: 204127) [01-07-2018 15-36-18 - v259]" 11:00:35 "EpochZ 1.0: Deactivating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 11:00:44 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,52,57,46,49,44,57,54,52,51,46,56,52,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 11:00:44 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:00:44 "<infiSTAR.de>ADMINLOG| 0h 59min | MegaZ(76561197990778975) | Teleport to [30849.1,9643.84,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 11:00:50 "EpochZ 1.0: Activating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 11:00:50 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:00:50 "EpochZ 1.0: Randomly Selected Value : 263" 11:00:50 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 11:00:50 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1slow" 11:00:50 "EpochZ 1.0: Spawning 1 Zombie | Position : [31081.9,9735.63,0] | Class : RyanZombieB_Soldier_02_f_1slow " 11:00:50 Server: Object 2:5210 not found (message Type_26) 11:00:53 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:00:53 "EpochZ 1.0: Randomly Selected Value : 163" 11:00:53 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:00:53 "EpochZ 1.0: Selected Zombie Class : RyanZombie29slow" 11:00:53 "EpochZ 1.0: Spawning 1 Zombie | Position : [30990.6,9773.13,0] | Class : RyanZombie29slow " 11:00:55 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31076.9,9665.63,0] " 11:00:57 "EpochZ 1.0: No suitable spawn location found for a Zombie near [30926.9,9735.63,0] " 11:00:59 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:00:59 "EpochZ 1.0: Randomly Selected Value : 103" 11:00:59 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:00:59 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_lite_FWalker" 11:00:59 "EpochZ 1.0: Spawning 1 Zombie | Position : [30968.1,9896.88,0] | Class : RyanZombieB_Soldier_lite_FWalker " 11:01:00 "A3EAI Error: An A3EAI-managed group was deleted unexpectedly!" 11:01:01 "A3EAI Error: An A3EAI-managed group was deleted unexpectedly!" 11:01:01 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:01 "EpochZ 1.0: Randomly Selected Value : 49" 11:01:01 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:01:01 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_OrestesWalker" 11:01:01 "EpochZ 1.0: Spawning 1 Zombie | Position : [30931.9,9844.38,0] | Class : RyanZombieC_OrestesWalker " 11:01:03 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:03 "EpochZ 1.0: Randomly Selected Value : 302" 11:01:03 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 11:01:03 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_fslow" 11:01:03 "EpochZ 1.0: Spawning 1 Zombie | Position : [31080.6,9798.13,0] | Class : RyanZombieB_Soldier_03_fslow " 11:01:05 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:05 "EpochZ 1.0: Randomly Selected Value : 225" 11:01:05 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:01:05 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_pilot_Fslow" 11:01:05 "EpochZ 1.0: Spawning 1 Zombie | Position : [31093.1,9799.38,0] | Class : RyanZombieC_man_pilot_Fslow " 11:01:07 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:07 "EpochZ 1.0: Randomly Selected Value : 104" 11:01:07 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:01:07 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_f_1_1Walker" 11:01:07 "EpochZ 1.0: Spawning 1 Zombie | Position : [31056.9,9854.38,0] | Class : RyanZombieB_Soldier_04_f_1_1Walker " 11:01:07 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a33a0100# 2302552: van_01_transport_f.p3d REMOTE],[""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"","""","""",9fd21600# 2301446: van_01_transport_f.p3d REMOTE]]" 11:01:09 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:09 "EpochZ 1.0: Randomly Selected Value : 218" 11:01:09 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:01:09 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_2_Fslow" 11:01:09 "EpochZ 1.0: Spawning 1 Zombie | Position : [31139.4,9685.63,0] | Class : RyanZombieC_man_polo_2_Fslow " 11:01:11 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31159.4,9829.38,0] " 11:01:13 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31294.4,9748.13,0] " 11:01:15 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:15 "EpochZ 1.0: Randomly Selected Value : 191" 11:01:15 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:01:15 "EpochZ 1.0: Selected Zombie Class : RyanZombie17slow" 11:01:15 "EpochZ 1.0: Spawning 1 Zombie | Position : [31079.4,9781.88,0] | Class : RyanZombie17slow " 11:01:17 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31289.4,9860.63,0] " 11:01:19 "EpochZ 1.0: 2 Player in game." 11:01:19 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:19 "EpochZ 1.0: Randomly Selected Value : 53" 11:01:19 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:01:19 "EpochZ 1.0: Selected Zombie Class : RyanZombie20walker" 11:01:19 "EpochZ 1.0: Spawning 1 Zombie | Position : [31108.1,9661.88,0] | Class : RyanZombie20walker " 11:01:19 "EpochZ 1.0: Waiting 90 seconds." 11:01:19 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[65,100,109,105,110,67,111,110,115,111,108,101]],""2:3736""]" 11:01:19 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:01:19 "<infiSTAR.de>ADMINLOG| 0h 59min | MegaZ(76561197990778975) | AdminConsole [01-07-2018 15-36-18 - v259]" 11:01:21 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31110.6,9859.38,0] " 11:01:23 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31208.1,10098.1,0] " 11:01:25 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31135.6,9839.38,0] " 11:01:27 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31204.4,9883.13,0] " 11:01:29 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31173.1,9574.38,0] " 11:01:31 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31203.1,9791.88,0] " 11:01:33 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:33 "EpochZ 1.0: Randomly Selected Value : 118" 11:01:33 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:01:33 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_fWalker" 11:01:33 "EpochZ 1.0: Spawning 1 Zombie | Position : [31118.1,9658.13,0] | Class : RyanZombieB_Soldier_03_fWalker " 11:01:35 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31054.4,9915.63,0] " 11:01:37 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:37 "EpochZ 1.0: Randomly Selected Value : 46" 11:01:37 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:01:37 "EpochZ 1.0: Selected Zombie Class : RyanZombie21walker" 11:01:37 "EpochZ 1.0: Spawning 1 Zombie | Position : [31143.1,9610.63,0] | Class : RyanZombie21walker " 11:01:39 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31175.6,9751.88,0] " 11:01:41 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:01:41 "EpochZ 1.0: Randomly Selected Value : 178" 11:01:41 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:01:41 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_2_Fslow" 11:01:41 "EpochZ 1.0: Spawning 1 Zombie | Position : [31104.4,9810.63,0] | Class : RyanZombieC_man_polo_2_Fslow " 11:01:56 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,67,95,86,97,110,95,48,49,95,116,114,97,110,115,112,111,114,116,95,69,80,79,67,72,32,64,51,48,56,48,57,54,46,46]],""2:3736""]" 11:01:56 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:01:56 "<infiSTAR.de>ADMINLOG| 1h 0min | MegaZ(76561197990778975) | Deleting C_Van_01_transport_EPOCH @308096.. [01-07-2018 15-36-18 - v259]" 11:02:08 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a33a0100# 2302552: van_01_transport_f.p3d REMOTE]]" 11:02:18 No such side 11:02:18 Server: Object 3:105 not found (message Type_454) 11:02:18 Server: Object 3:104 not found (message Type_433) 11:02:25 Client: Object 3:106 (type Type_93) not found. 11:02:25 Client: Object 3:106 (type Type_93) not found. 11:02:25 Client: Object 3:106 (type Type_93) not found. 11:02:26 Client: Object 3:106 (type Type_93) not found. 11:02:31 Client: Object 3:106 (type Type_93) not found. 11:02:31 "[blckeagls] Timstamp 3741.95 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.6894 | Server Uptime 62 Min | Missions Run 0" 11:02:39 "[A3EAI Monitor] [Uptime:01:02:29][FPS:50][Groups:4/4][Respawn:1][HC:false]" 11:02:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 11:02:41 Client: Object 3:106 (type Type_93) not found. 11:02:43 Client: Object 3:106 (type Type_433) not found. 11:02:45 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,55,56,53,51,46,55,44,51,49,55,53,49,46,50,44,48,93,40,71,80,83,58,32,49,55,56,51,49,55,41]],""2:3736""]" 11:02:45 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:02:45 "<infiSTAR.de>ADMINLOG| 1h 1min | MegaZ(76561197990778975) | Teleport to [17853.7,31751.2,0](GPS: 178317) [01-07-2018 15-36-18 - v259]" 11:02:46 Client: Object 3:106 (type Type_93) not found. 11:02:49 "EpochZ 1.0: 2 Player in game." 11:02:49 "EpochZ 1.0: Waiting 90 seconds." 11:02:53 "WAI: [Mission: Drone Pilot]: Ended at [20480,20480,550]" 11:02:53 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,49,55,56,50,51,44,51,49,55,57,51,46,53,44,48,93,40,71,80,83,58,32,49,55,56,51,49,55,41]],""2:3736""]" 11:02:53 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:02:53 "<infiSTAR.de>ADMINLOG| 1h 1min | MegaZ(76561197990778975) | Teleport to [17823,31793.5,0](GPS: 178317) [01-07-2018 15-36-18 - v259]" 11:02:56 Client: Object 3:106 (type Type_93) not found. 11:03:01 Client: Object 3:106 (type Type_93) not found. 11:03:01 Client: Object 3:106 (type Type_433) not found. 11:03:03 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[86,101,104,105,99,108,101,32,77,97,114,107,101,114,32,45,32,48]],""2:3736""]" 11:03:03 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:03:03 "<infiSTAR.de>ADMINLOG| 1h 1min | MegaZ(76561197990778975) | Vehicle Marker - 0 [01-07-2018 15-36-18 - v259]" 11:03:04 "EpochZ 1.0: Removing 1 Zombie | Position : [30926,9889.85,0.00143909] | Class : RyanZombieB_Soldier_lite_Fwalker" 11:03:06 Client: Object 3:106 (type Type_93) not found. 11:03:06 "EpochZ 1.0: Removing 1 Zombie | Position : [30926.1,9837.25,0.00143909] | Class : RyanZombieC_Oresteswalker" 11:03:08 "EpochZ 1.0: Removing 1 Zombie | Position : [31129.2,9662.45,0.00143862] | Class : RyanZombieB_Soldier_03_fwalker" 11:03:08 "EpochZ 1.0: Removing 1 Zombie | Position : [31086.9,9815.99,0.00143909] | Class : RyanZombieB_Soldier_03_fslow" 11:03:08 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[86,101,104,105,99,108,101,32,77,97,114,107,101,114,32,45,32,49]],""2:3736""]" 11:03:08 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:03:08 "<infiSTAR.de>ADMINLOG| 1h 1min | MegaZ(76561197990778975) | Vehicle Marker - 1 [01-07-2018 15-36-18 - v259]" 11:03:11 Client: Object 3:106 (type Type_93) not found. 11:03:12 "EpochZ 1.0: Removing 1 Zombie | Position : [31144.1,9623,0.00143862] | Class : RyanZombie21walker" 11:03:12 "EpochZ 1.0: Removing 1 Zombie | Position : [31058.8,9874.43,0.00143909] | Class : RyanZombieB_Soldier_04_f_1_1walker" 11:03:16 "EpochZ 1.0: Removing 1 Zombie | Position : [31127.2,9839.65,0.00143909] | Class : RyanZombieC_man_polo_2_Fslow" 11:03:20 "EpochZ 1.0: Removing 1 Zombie | Position : [31076.7,9773.75,0.00143909] | Class : RyanZombie17slow" 11:03:20 Client: Object 3:106 (type Type_433) not found. 11:03:21 Client: Object 3:106 (type Type_93) not found. 11:04:19 "EpochZ 1.0: 2 Player in game." 11:04:19 "EpochZ 1.0: Waiting 90 seconds." 11:04:45 "DEBUG: server event CarnivalSpawner" 11:04:46 "DEBUG: server event ContainerSpawner" 11:04:46 "DEBUG: server event MoneyDrop" 11:04:46 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 11:04:50 "DEBUG: server event PlantSpawner" 11:05:33 "_fnc_missionSpawner (187): mission timed out" 11:05:45 "_fnc_dynamicUMSSpawner (187): mission timed out" 11:05:49 "EpochZ 1.0: 2 Player in game." 11:05:49 "EpochZ 1.0: Waiting 90 seconds." 11:06:02 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,50,49,53,57,46,51,44,50,50,53,53,56,44,48,93,40,71,80,83,58,32,51,50,49,50,50,53,41]],""2:3736""]" 11:06:02 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:06:02 "<infiSTAR.de>ADMINLOG| 1h 4min | MegaZ(76561197990778975) | Teleport to [32159.3,22558,0](GPS: 321225) [01-07-2018 15-36-18 - v259]" 11:06:10 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:06:20 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieB_Soldier_02_f_1slow" 11:06:33 "_fnc_missionSpawner (187): mission timed out" 11:06:34 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,50,54,53,48,46,57,44,50,54,52,49,52,46,57,44,48,93,40,71,80,83,58,32,51,50,54,50,54,52,41]],""2:3736""]" 11:06:34 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:06:34 "<infiSTAR.de>ADMINLOG| 1h 5min | MegaZ(76561197990778975) | Teleport to [32650.9,26414.9,0](GPS: 326264) [01-07-2018 15-36-18 - v259]" 11:06:48 "_fnc_dynamicUMSSpawner (187): mission timed out" 11:06:49 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie20walker" 11:06:53 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie29slow" 11:06:57 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[82,101,115,116,111,114,101,32,45,32,66,32,65,108,112,104,97,32,49,45,49,58,49,32,40,77,101,103,97,90,41,40,55,54,53,54,49,49,57,55,57,57,48,55,55,56,57,55,53,41]],""2:3736""]" 11:06:57 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:06:57 "<infiSTAR.de>ADMINLOG| 1h 5min | MegaZ(76561197990778975) | Restore - B Alpha 1-1:1 (MegaZ)(76561197990778975) [01-07-2018 15-36-18 - v259]" 11:07:18 No such side 11:07:19 "EpochZ 1.0: 2 Player in game." 11:07:19 "EpochZ 1.0: Waiting 90 seconds." 11:07:24 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,56,56,46,52,44,49,57,55,53,48,44,48,46,48,51,48,55,51,49,50,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 11:07:24 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:07:24 "<infiSTAR.de>ADMINLOG| 1h 6min | MegaZ(76561197990778975) | Teleport to [23188.4,19750,0.0307312](GPS: 231197) [01-07-2018 15-36-18 - v259]" 11:07:32 "[blckeagls] Timstamp 4042.91 |Dynamic Missions Running 6 | UMS Running 2 | Vehicles 0 | Groups 0 | Server FPS 50.6329 | Server Uptime 67 Min | Missions Run 0" 11:07:33 "_fnc_missionSpawner (187): mission timed out" 11:07:39 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieC_man_polo_2_Fslow" 11:07:39 "[A3EAI Monitor] [Uptime:01:07:29][FPS:50][Groups:4/4][Respawn:1][HC:false]" 11:07:39 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 11:07:48 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",961b0100# 2300712: heli_transport_04_f.p3d REMOTE]]" 11:07:53 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:07:54 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:07:55 "_fnc_dynamicUMSSpawner (187): mission timed out" 11:08:05 "EpochZ 1.0: Removing 1 Zombie | Position : [31069,9801.49,0.00143909] | Class : RyanZombieC_man_pilot_Fslow" 11:08:06 "WAI: position City" 11:08:06 "WAI: Good position At [2497.6,16134.2]" 11:08:06 "WAI: [Mission: Mi-8 Crash]: Starting... [2497.6,16134.2]" 11:08:06 "WAI: Spawned a group of 6 AI at [2502.33,16119.4,0]" 11:08:07 "WAI: Spawned a group of 6 AI at [2501.18,16118.4,0]" 11:08:27 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,56,49,54,48,46,52,44,49,57,57,52,49,46,51,44,48,93,40,71,80,83,58,32,51,56,49,49,57,57,41]],""2:3736""]" 11:08:27 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:08:27 "<infiSTAR.de>ADMINLOG| 1h 7min | MegaZ(76561197990778975) | Teleport to [38160.4,19941.3,0](GPS: 381199) [01-07-2018 15-36-18 - v259]" 11:08:32 "EpochZ 1.0: Activating Trigger | Position : [37889.3,19925.4,0] | GroupSize : 25 | Near : Brisbane " 11:08:32 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:32 "EpochZ 1.0: Randomly Selected Value : 243" 11:08:32 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:32 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_scientist_Fslow" 11:08:32 "EpochZ 1.0: Spawning 1 Zombie | Position : [37926.9,19958.1,0] | Class : RyanZombieC_scientist_Fslow " 11:08:32 "EpochZ 1.0: Activating Trigger | Position : [38419.8,20181.8,0] | GroupSize : 25 | Near : " 11:08:32 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:32 "EpochZ 1.0: Randomly Selected Value : 19" 11:08:32 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:32 "EpochZ 1.0: Selected Zombie Class : RyanZombie29walker" 11:08:32 "EpochZ 1.0: Spawning 1 Zombie | Position : [38375.6,20134.4,0] | Class : RyanZombie29walker " 11:08:34 "_fnc_missionSpawner (187): mission timed out" 11:08:34 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:34 "EpochZ 1.0: Randomly Selected Value : 163" 11:08:34 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:34 "EpochZ 1.0: Selected Zombie Class : RyanZombie15slow" 11:08:34 "EpochZ 1.0: Spawning 1 Zombie | Position : [37951.9,19775.6,0] | Class : RyanZombie15slow " 11:08:34 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:34 "EpochZ 1.0: Randomly Selected Value : 172" 11:08:34 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:34 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_scientist_Fslow" 11:08:34 "EpochZ 1.0: Spawning 1 Zombie | Position : [38266.9,20200.6,0] | Class : RyanZombieC_scientist_Fslow " 11:08:36 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:36 "EpochZ 1.0: Randomly Selected Value : 97" 11:08:36 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:36 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_4_FWalker" 11:08:36 "EpochZ 1.0: Spawning 1 Zombie | Position : [37880.6,19951.9,0] | Class : RyanZombieC_man_polo_4_FWalker " 11:08:36 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:36 "EpochZ 1.0: Randomly Selected Value : 92" 11:08:36 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:36 "EpochZ 1.0: Selected Zombie Class : RyanZombie15walker" 11:08:36 "EpochZ 1.0: Spawning 1 Zombie | Position : [38286.9,20193.1,0] | Class : RyanZombie15walker " 11:08:38 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:38 "EpochZ 1.0: Randomly Selected Value : 200" 11:08:38 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:38 "EpochZ 1.0: Selected Zombie Class : RyanZombie30slow" 11:08:38 "EpochZ 1.0: Spawning 1 Zombie | Position : [38000.6,20133.1,0] | Class : RyanZombie30slow " 11:08:38 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:38 "EpochZ 1.0: Randomly Selected Value : 203" 11:08:38 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:38 "EpochZ 1.0: Selected Zombie Class : RyanZombie19slow" 11:08:38 "EpochZ 1.0: Spawning 1 Zombie | Position : [38273.1,20218.1,0] | Class : RyanZombie19slow " 11:08:40 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:40 "EpochZ 1.0: Randomly Selected Value : 183" 11:08:40 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:40 "EpochZ 1.0: Selected Zombie Class : RyanZombie28slow" 11:08:40 "EpochZ 1.0: Spawning 1 Zombie | Position : [37999.4,19911.9,0] | Class : RyanZombie28slow " 11:08:40 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:40 "EpochZ 1.0: Randomly Selected Value : 102" 11:08:40 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:08:40 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_fWalker" 11:08:40 "EpochZ 1.0: Spawning 1 Zombie | Position : [38363.1,20119.4,0] | Class : RyanZombieB_Soldier_02_fWalker " 11:08:42 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,79,95,84,114,117,99,107,95,48,50,95,99,111,118,101,114,101,100,95,69,80,79,67,72,32,64,51,56,49,49,57,57,46,46]],""2:3736""]" 11:08:42 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:08:42 "<infiSTAR.de>ADMINLOG| 1h 7min | MegaZ(76561197990778975) | Deleting O_Truck_02_covered_EPOCH @381199.. [01-07-2018 15-36-18 - v259]" 11:08:42 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:42 "EpochZ 1.0: Randomly Selected Value : 84" 11:08:42 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:42 "EpochZ 1.0: Randomly Selected Value : 127" 11:08:42 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:08:42 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1Walker" 11:08:42 "EpochZ 1.0: Spawning 1 Zombie | Position : [38229.4,20116.9,0] | Class : RyanZombieB_Soldier_02_f_1Walker " 11:08:42 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:42 "EpochZ 1.0: Selected Zombie Class : RyanZombie29walker" 11:08:42 "EpochZ 1.0: Spawning 1 Zombie | Position : [38030.6,19885.6,0] | Class : RyanZombie29walker " 11:08:44 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:44 "EpochZ 1.0: Randomly Selected Value : 230" 11:08:44 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:44 "EpochZ 1.0: Selected Zombie Class : RyanZombie32slow" 11:08:44 "EpochZ 1.0: Spawning 1 Zombie | Position : [37950.6,19916.9,0] | Class : RyanZombie32slow " 11:08:44 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:44 "EpochZ 1.0: Randomly Selected Value : 76" 11:08:44 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:44 "EpochZ 1.0: Selected Zombie Class : RyanZombie26walker" 11:08:44 "EpochZ 1.0: Spawning 1 Zombie | Position : [38265.6,20125.6,0] | Class : RyanZombie26walker " 11:08:46 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:46 "EpochZ 1.0: Randomly Selected Value : 58" 11:08:46 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:46 "EpochZ 1.0: Selected Zombie Class : RyanZombie22walker" 11:08:46 "EpochZ 1.0: Spawning 1 Zombie | Position : [37985.6,19970.6,0] | Class : RyanZombie22walker " 11:08:46 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:46 "EpochZ 1.0: Randomly Selected Value : 256" 11:08:46 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 11:08:46 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1slow" 11:08:46 "EpochZ 1.0: Spawning 1 Zombie | Position : [38310.6,20063.1,0] | Class : RyanZombieB_Soldier_02_f_1slow " 11:08:48 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:48 "EpochZ 1.0: Randomly Selected Value : 130" 11:08:48 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:08:48 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_04_fWalker" 11:08:48 "EpochZ 1.0: Spawning 1 Zombie | Position : [37896.9,19959.4,0] | Class : RyanZombieB_Soldier_04_fWalker " 11:08:48 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,67,85,80,95,67,95,71,111,108,102,52,95,99,97,109,111,100,97,114,107,95,67,105,118,32,64,51,56,49,49,57,57,46,46]],""2:3736""]" 11:08:48 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:08:48 "<infiSTAR.de>ADMINLOG| 1h 7min | MegaZ(76561197990778975) | Deleting CUP_C_Golf4_camodark_Civ @381199.. [01-07-2018 15-36-18 - v259]" 11:08:48 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:48 "EpochZ 1.0: Randomly Selected Value : 33" 11:08:48 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:48 "EpochZ 1.0: Selected Zombie Class : RyanZombie22walker" 11:08:48 "EpochZ 1.0: Spawning 1 Zombie | Position : [38363.1,20040.6,0] | Class : RyanZombie22walker " 11:08:49 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [7895.69,19388.4,0] : _markerClass BlueMarker2 : _aiDifficultyLevel blue _markerMissionName Bandit Patrol" 11:08:49 "EpochZ 1.0: 2 Player in game." 11:08:49 "EpochZ 1.0: Waiting 90 seconds." 11:08:50 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:50 "EpochZ 1.0: Randomly Selected Value : 91" 11:08:50 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:50 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_1Walker" 11:08:50 "EpochZ 1.0: Spawning 1 Zombie | Position : [37969.4,20005.6,0] | Class : RyanZombieC_man_1Walker " 11:08:50 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:50 "EpochZ 1.0: Randomly Selected Value : 130" 11:08:50 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:08:50 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1Walker" 11:08:50 "EpochZ 1.0: Spawning 1 Zombie | Position : [38329.4,20046.9,0] | Class : RyanZombieB_Soldier_02_f_1Walker " 11:08:52 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:52 "EpochZ 1.0: Randomly Selected Value : 163" 11:08:52 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:52 "EpochZ 1.0: Selected Zombie Class : RyanZombie15slow" 11:08:52 "EpochZ 1.0: Spawning 1 Zombie | Position : [38088.1,20130.6,0] | Class : RyanZombie15slow " 11:08:52 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:52 "EpochZ 1.0: Randomly Selected Value : 189" 11:08:52 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:52 "EpochZ 1.0: Selected Zombie Class : RyanZombie27slow" 11:08:52 "EpochZ 1.0: Spawning 1 Zombie | Position : [38231.9,20135.6,0] | Class : RyanZombie27slow " 11:08:54 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:54 "EpochZ 1.0: Randomly Selected Value : 1" 11:08:54 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:54 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_hunter_1_FWalker" 11:08:54 "EpochZ 1.0: Spawning 1 Zombie | Position : [38124.4,19945.6,0] | Class : RyanZombieC_man_hunter_1_FWalker " 11:08:54 "EpochZ 1.0: No suitable spawn location found for a Zombie near [38405.6,20220.6,0] " 11:08:56 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:56 "EpochZ 1.0: Randomly Selected Value : 71" 11:08:56 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:56 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_NikosWalker" 11:08:56 "EpochZ 1.0: Spawning 1 Zombie | Position : [38080.6,19955.6,0] | Class : RyanZombieC_NikosWalker " 11:08:56 "EpochZ 1.0: No suitable spawn location found for a Zombie near [] " 11:08:58 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:58 "EpochZ 1.0: Randomly Selected Value : 171" 11:08:58 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:08:58 "EpochZ 1.0: Selected Zombie Class : RyanZombie25slow" 11:08:58 "EpochZ 1.0: Spawning 1 Zombie | Position : [37989.4,19863.1,0] | Class : RyanZombie25slow " 11:08:58 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:08:58 "EpochZ 1.0: Randomly Selected Value : 13" 11:08:58 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:08:58 "EpochZ 1.0: Selected Zombie Class : RyanZombie22walker" 11:08:58 "EpochZ 1.0: Spawning 1 Zombie | Position : [38236.9,20085.6,0] | Class : RyanZombie22walker " 11:09:00 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:09:00 "EpochZ 1.0: Randomly Selected Value : 194" 11:09:00 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:09:00 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_scientist_Fslow" 11:09:00 "EpochZ 1.0: Spawning 1 Zombie | Position : [37928.1,19910.6,0] | Class : RyanZombieC_scientist_Fslow " 11:09:00 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:09:00 "EpochZ 1.0: Randomly Selected Value : 263" 11:09:00 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 11:09:00 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1_1slow" 11:09:00 "EpochZ 1.0: Spawning 1 Zombie | Position : [38321.9,20088.1,0] | Class : RyanZombieB_Soldier_03_f_1_1slow " 11:09:02 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [7703.71,10114.2] : _markerClass Mafia Pirates32723 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 11:09:02 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:09:02 "EpochZ 1.0: Randomly Selected Value : 248" 11:09:02 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:09:02 "EpochZ 1.0: Selected Zombie Class : RyanZombie28slow" 11:09:02 "EpochZ 1.0: Spawning 1 Zombie | Position : [37948.1,20149.4,0] | Class : RyanZombie28slow " 11:09:02 "EpochZ 1.0: No suitable spawn location found for a Zombie near [38444.4,20160.6,0] " 11:09:04 "EpochZ 1.0: No suitable spawn location found for a Zombie near [37851.9,19941.9,0] " 11:09:04 "EpochZ 1.0: No suitable spawn location found for a Zombie near [38618.1,20160.6,0] " 11:09:06 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:09:06 "EpochZ 1.0: Randomly Selected Value : 123" 11:09:06 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:09:06 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_fWalker" 11:09:06 "EpochZ 1.0: Spawning 1 Zombie | Position : [37981.9,19810.6,0] | Class : RyanZombieB_Soldier_03_fWalker " 11:09:06 "EpochZ 1.0: No suitable spawn location found for a Zombie near [38514.4,20250.6,0] " 11:09:08 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:09:08 "EpochZ 1.0: Randomly Selected Value : 235" 11:09:08 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:09:08 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_1slow" 11:09:08 "EpochZ 1.0: Spawning 1 Zombie | Position : [37900.6,19903.1,0] | Class : RyanZombieC_man_1slow " 11:09:08 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:09:08 "EpochZ 1.0: Randomly Selected Value : 281" 11:09:08 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 11:09:08 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1_1slow" 11:09:08 "EpochZ 1.0: Spawning 1 Zombie | Position : [38279.4,20055.6,0] | Class : RyanZombieB_Soldier_02_f_1_1slow " 11:09:10 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:09:10 "EpochZ 1.0: Randomly Selected Value : 252" 11:09:10 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:09:10 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_2_Fslow" 11:09:10 "EpochZ 1.0: Spawning 1 Zombie | Position : [37999.4,19904.4,0] | Class : RyanZombieC_man_polo_2_Fslow " 11:09:10 "EpochZ 1.0: No suitable spawn location found for a Zombie near [38504.4,20153.1,0] " 11:09:11 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,48,53,52,51,46,50,44,50,50,55,49,53,46,51,44,48,93,40,71,80,83,58,32,50,48,53,50,50,55,41]],""2:3736""]" 11:09:11 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:09:11 "<infiSTAR.de>ADMINLOG| 1h 7min | MegaZ(76561197990778975) | Teleport to [20543.2,22715.3,0](GPS: 205227) [01-07-2018 15-36-18 - v259]" 11:09:17 "EpochZ 1.0: Removing 1 Zombie | Position : [38220.3,20129.1,0.00143909] | Class : RyanZombieB_Soldier_02_f_1walker" 11:09:17 "EpochZ 1.0: Removing 1 Zombie | Position : [38032.5,19884.9,0.00143909] | Class : RyanZombie29walker" 11:09:18 Client: Object 3:113 (type Type_93) not found. 11:09:19 "EpochZ 1.0: Removing 1 Zombie | Position : [37950.3,19927.7,0.00143909] | Class : RyanZombie32slow" 11:09:19 "EpochZ 1.0: Removing 1 Zombie | Position : [38272.1,20127.5,0.00143909] | Class : RyanZombie26walker" 11:09:21 "EpochZ 1.0: Removing 1 Zombie | Position : [37991.6,19956.8,0.00143909] | Class : RyanZombie22walker" 11:09:21 "EpochZ 1.0: Removing 1 Zombie | Position : [38325.6,20057.7,0.00143909] | Class : RyanZombieB_Soldier_02_f_1slow" 11:09:22 "EpochZ 1.0: Deactivating Trigger | Position : [37889.3,19925.4,0] | GroupSize : 25 | Near : Brisbane " 11:09:22 "EpochZ 1.0: Deactivating Trigger | Position : [38419.8,20181.8,0] | GroupSize : 25 | Near : " 11:09:23 "EpochZ 1.0: Removing 1 Zombie | Position : [37889.5,19954.5,0.00143909] | Class : RyanZombieB_Soldier_04_fwalker" 11:09:23 "EpochZ 1.0: Removing 1 Zombie | Position : [38363.3,20037.1,0.00143862] | Class : RyanZombie22walker" 11:09:25 "EpochZ 1.0: Removing 1 Zombie | Position : [37975.1,19990.4,0.00143909] | Class : RyanZombieC_man_1walker" 11:09:25 "EpochZ 1.0: Removing 1 Zombie | Position : [38316.3,20054.6,0.00143909] | Class : RyanZombieB_Soldier_02_f_1walker" 11:09:27 "EpochZ 1.0: Removing 1 Zombie | Position : [38112,20131.6,0.00143814] | Class : RyanZombie15slow" 11:09:27 "EpochZ 1.0: Removing 1 Zombie | Position : [38238.7,20139.5,0.00143909] | Class : RyanZombie27slow" 11:09:29 "EpochZ 1.0: Removing 1 Zombie | Position : [38132.8,19941.8,0.00143909] | Class : RyanZombieC_man_hunter_1_Fwalker" 11:09:31 "EpochZ 1.0: Removing 1 Zombie | Position : [38088.8,19950.6,0.00143909] | Class : RyanZombieC_Nikoswalker" 11:09:33 "EpochZ 1.0: Removing 1 Zombie | Position : [37981,19868.4,0.00143909] | Class : RyanZombie25slow" 11:09:33 "EpochZ 1.0: Removing 1 Zombie | Position : [38219.8,20083.8,0.00143909] | Class : RyanZombie22walker" 11:09:34 "_fnc_missionSpawner (187): mission timed out" 11:09:35 "EpochZ 1.0: Removing 1 Zombie | Position : [37912.4,19921.6,0.00143909] | Class : RyanZombieC_scientist_Fslow" 11:09:35 "EpochZ 1.0: Removing 1 Zombie | Position : [38315.3,20072.6,0.00143909] | Class : RyanZombieB_Soldier_03_f_1_1slow" 11:09:37 "EpochZ 1.0: Removing 1 Zombie | Position : [37948.6,20149,0.00147295] | Class : RyanZombie28slow" 11:09:37 "EpochZ 1.0: Removing 1 Zombie | Position : [37922.6,19992.7,0.00143909] | Class : RyanZombieC_scientist_Fslow" 11:09:37 "EpochZ 1.0: Removing 1 Zombie | Position : [38383.7,20141.6,0.00143909] | Class : RyanZombie29walker" 11:09:39 "EpochZ 1.0: Removing 1 Zombie | Position : [37969.7,19816.2,0.00143862] | Class : RyanZombie15slow" 11:09:39 "EpochZ 1.0: Removing 1 Zombie | Position : [38264.6,20163.4,0.00143862] | Class : RyanZombieC_scientist_Fslow" 11:09:41 "EpochZ 1.0: Removing 1 Zombie | Position : [37996.8,19806.1,0.00143862] | Class : RyanZombieB_Soldier_03_fwalker" 11:09:41 "EpochZ 1.0: Removing 1 Zombie | Position : [37877.4,19927.1,0.00143909] | Class : RyanZombieC_man_polo_4_Fwalker" 11:09:41 "EpochZ 1.0: Removing 1 Zombie | Position : [38279.4,20178.2,0.00143909] | Class : RyanZombie15walker" 11:09:43 "EpochZ 1.0: Removing 1 Zombie | Position : [38005.5,20100,0.00143909] | Class : RyanZombie30slow" 11:09:43 "EpochZ 1.0: Removing 1 Zombie | Position : [37892.9,19904.4,0.00143909] | Class : RyanZombieC_man_1slow" 11:09:43 "EpochZ 1.0: Removing 1 Zombie | Position : [38278.2,20180.2,0.00143909] | Class : RyanZombie19slow" 11:09:43 "EpochZ 1.0: Removing 1 Zombie | Position : [38274.6,20071.5,0.00143909] | Class : RyanZombieB_Soldier_02_f_1_1slow" 11:09:45 "EpochZ 1.0: Removing 1 Zombie | Position : [38010.2,19923.2,0.00143909] | Class : RyanZombie28slow" 11:09:45 "EpochZ 1.0: Removing 1 Zombie | Position : [37997.3,19901.5,0.00143909] | Class : RyanZombieC_man_polo_2_Fslow" 11:09:45 "EpochZ 1.0: Removing 1 Zombie | Position : [38366.1,20119.5,0.00143862] | Class : RyanZombieB_Soldier_02_fwalker" 11:09:49 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [16661.4,24150.8,0] : _markerClass RedMarker1 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 11:09:51 "DEBUG: server event PlantSpawner" 11:09:59 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,53,56,53,49,46,57,50,44,49,53,55,50,56,46,56,44,48,93,40,71,80,83,58,32,48,53,56,49,53,55,41]],""2:3736""]" 11:09:59 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:09:59 "<infiSTAR.de>ADMINLOG| 1h 8min | MegaZ(76561197990778975) | Teleport to [5851.92,15728.8,0](GPS: 058157) [01-07-2018 15-36-18 - v259]" 11:10:17 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[83,80,69,67,84,65,84,69,32,45,32,115,119,105,116,99,104,101,100,67,97,109,101,114,97,32,111,110,32,77,101,103,97,90,40,55,54,53,54,49,49,57,55,57,57,48,55,55,56,57,55,53,41,32,45,32,67,95,86,97,110,95,48,49,95,98,111,120,95,69,80,79,67,72]],""2:3736""]" 11:10:17 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:10:17 "<infiSTAR.de>ADMINLOG| 1h 8min | MegaZ(76561197990778975) | SPECTATE - switchedCamera on MegaZ(76561197990778975) - C_Van_01_box_EPOCH [01-07-2018 15-36-18 - v259]" 11:10:19 "EpochZ 1.0: 2 Player in game." 11:10:19 "EpochZ 1.0: Waiting 90 seconds." 11:10:22 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[82,101,115,116,111,114,101,32,45,32,66,32,65,108,112,104,97,32,49,45,49,58,49,32,40,77,101,103,97,90,41,40,55,54,53,54,49,49,57,55,57,57,48,55,55,56,57,55,53,41]],""2:3736""]" 11:10:22 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:10:22 "<infiSTAR.de>ADMINLOG| 1h 8min | MegaZ(76561197990778975) | Restore - B Alpha 1-1:1 (MegaZ)(76561197990778975) [01-07-2018 15-36-18 - v259]" 11:10:30 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,52,48,54,57,44,49,57,52,52,56,46,54,44,48,93,40,71,80,83,58,32,48,52,48,49,57,52,41]],""2:3736""]" 11:10:30 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:10:30 "<infiSTAR.de>ADMINLOG| 1h 9min | MegaZ(76561197990778975) | Teleport to [4069,19448.6,0](GPS: 040194) [01-07-2018 15-36-18 - v259]" 11:10:34 "_fnc_missionSpawner (187): mission timed out" 11:10:50 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [38159.4,18366.8,0] : _markerClass BlueMarker1 : _aiDifficultyLevel blue _markerMissionName Capture Don" 11:10:52 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,57,50,52,51,46,57,56,44,49,56,49,49,51,46,57,44,48,93,40,71,80,83,58,32,48,57,50,49,56,49,41]],""2:3736""]" 11:10:52 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:10:52 "<infiSTAR.de>ADMINLOG| 1h 9min | MegaZ(76561197990778975) | Teleport to [9243.98,18113.9,0](GPS: 092181) [01-07-2018 15-36-18 - v259]" 11:10:55 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [1775.17,15305.3] : _markerClass Mafia Pirates339286 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 11:11:14 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,52,48,57,55,46,48,54,44,49,57,52,52,56,46,50,44,48,93,40,71,80,83,58,32,48,52,48,49,57,52,41]],""2:3736""]" 11:11:14 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:11:14 "<infiSTAR.de>ADMINLOG| 1h 9min | MegaZ(76561197990778975) | Teleport to [4097.06,19448.2,0](GPS: 040194) [01-07-2018 15-36-18 - v259]" 11:11:31 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[83,80,69,67,84,65,84,69,32,45,32,115,119,105,116,99,104,101,100,67,97,109,101,114,97,32,111,110,32,77,101,103,97,90,40,55,54,53,54,49,49,57,55,57,57,48,55,55,56,57,55,53,41,32,45,32,67,95,86,97,110,95,48,49,95,98,111,120,95,69,80,79,67,72]],""2:3736""]" 11:11:31 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:11:31 "<infiSTAR.de>ADMINLOG| 1h 10min | MegaZ(76561197990778975) | SPECTATE - switchedCamera on MegaZ(76561197990778975) - C_Van_01_box_EPOCH [01-07-2018 15-36-18 - v259]" 11:11:32 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[82,101,115,116,111,114,101,32,45,32,66,32,65,108,112,104,97,32,49,45,49,58,49,32,40,77,101,103,97,90,41,40,55,54,53,54,49,49,57,55,57,57,48,55,55,56,57,55,53,41]],""2:3736""]" 11:11:32 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:11:32 "<infiSTAR.de>ADMINLOG| 1h 10min | MegaZ(76561197990778975) | Restore - B Alpha 1-1:1 (MegaZ)(76561197990778975) [01-07-2018 15-36-18 - v259]" 11:11:41 "EpochZ 1.0: Deactivating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 11:11:49 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[83,80,69,67,84,65,84,69,32,45,32,115,119,105,116,99,104,101,100,67,97,109,101,114,97,32,111,110,32,77,101,103,97,90,40,55,54,53,54,49,49,57,55,57,57,48,55,55,56,57,55,53,41,32,45,32,69,112,111,99,104,95,77,97,108,101,95,70]],""2:3736""]" 11:11:49 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:11:49 "<infiSTAR.de>ADMINLOG| 1h 10min | MegaZ(76561197990778975) | SPECTATE - switchedCamera on MegaZ(76561197990778975) - Epoch_Male_F [01-07-2018 15-36-18 - v259]" 11:11:49 "EpochZ 1.0: 2 Player in game." 11:11:49 "EpochZ 1.0: Waiting 90 seconds." 11:11:50 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [8970.91,20541.5,0] : _markerClass RedMarker2 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 11:11:51 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""gyilkr7vr452wu"",[""Solster"",""76561198084209108"",""LVC"",B Alpha 1-2:1 (Solster) REMOTE,""CUP_B_CH53E_USMC"",""129175""],""2:4327""]" 11:11:51 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> Solster(76561198084209108) Token gyilkr7vr452wu - objByNetID B Alpha 1-2:1 (Solster) REMOTE" 11:11:54 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [18755.4,13955] : _markerClass Mafia Pirates520690 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 11:12:28 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9c729600# 2301225: van_01_box_f.p3d REMOTE]]" 11:12:33 "[blckeagls] Timstamp 4343.34 |Dynamic Missions Running 7 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.3145 | Server Uptime 72 Min | Missions Run 0" 11:12:39 "[A3EAI Monitor] [Uptime:01:12:29][FPS:50][Groups:4/5][Respawn:3][HC:false]" 11:12:39 "[A3EAI Monitor] [Static:1][Dynamic:0][Random:6][Air:2][Land:2][UAV:0][UGV:0]" 11:12:43 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9dbf0100# 2301357: van_01_box_f.p3d REMOTE]]" 11:13:20 "EpochZ 1.0: 2 Player in game." 11:13:20 "EpochZ 1.0: Waiting 90 seconds." 11:13:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 11:13:50 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [14639.8,17250,0] : _markerClass OrangeMarker1 : _aiDifficultyLevel orange _markerMissionName Resupply Camp" 11:14:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,49,50,52,50,44,57,56,55,55,46,53,55,44,48,93,40,71,80,83,58,32,51,49,50,48,57,56,41]],""2:3736""]" 11:14:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:14:05 "<infiSTAR.de>ADMINLOG| 1h 12min | MegaZ(76561197990778975) | Teleport to [31242,9877.57,0](GPS: 312098) [01-07-2018 15-36-18 - v259]" 11:14:11 "EpochZ 1.0: Activating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 11:14:11 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:11 "EpochZ 1.0: Randomly Selected Value : 233" 11:14:11 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:14:11 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_hunter_1_Fslow" 11:14:11 "EpochZ 1.0: Spawning 1 Zombie | Position : [31270.6,9993.13,0] | Class : RyanZombieC_man_hunter_1_Fslow " 11:14:13 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:13 "EpochZ 1.0: Randomly Selected Value : 226" 11:14:13 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:14:13 "EpochZ 1.0: Selected Zombie Class : RyanZombie25slow" 11:14:13 "EpochZ 1.0: Spawning 1 Zombie | Position : [31215.6,9800.63,0] | Class : RyanZombie25slow " 11:14:15 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:15 "EpochZ 1.0: Randomly Selected Value : 44" 11:14:15 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:15 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_5_FWalker" 11:14:15 "EpochZ 1.0: Spawning 1 Zombie | Position : [31151.9,9806.88,0] | Class : RyanZombieC_man_polo_5_FWalker " 11:14:17 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:17 "EpochZ 1.0: Randomly Selected Value : 76" 11:14:17 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:17 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_OrestesWalker" 11:14:17 "EpochZ 1.0: Spawning 1 Zombie | Position : [31364.4,9654.38,0] | Class : RyanZombieC_OrestesWalker " 11:14:19 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:19 "EpochZ 1.0: Randomly Selected Value : 96" 11:14:19 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:19 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_2_FWalker" 11:14:19 "EpochZ 1.0: Spawning 1 Zombie | Position : [31133.1,9816.88,0] | Class : RyanZombieC_man_polo_2_FWalker " 11:14:21 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,53,52,46,53,44,57,54,52,52,46,56,53,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 11:14:21 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:14:21 "<infiSTAR.de>ADMINLOG| 1h 12min | MegaZ(76561197990778975) | Teleport to [30854.5,9644.85,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 11:14:21 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:21 "EpochZ 1.0: Randomly Selected Value : 262" 11:14:21 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 11:14:21 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1slow" 11:14:21 "EpochZ 1.0: Spawning 1 Zombie | Position : [31150.6,9663.13,0] | Class : RyanZombieB_Soldier_02_f_1slow " 11:14:23 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31405.6,9631.88,0] " 11:14:25 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31168.1,9856.88,0] " 11:14:26 "EpochZ 1.0: Next Horde in 23 minutes." 11:14:27 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:27 "EpochZ 1.0: Randomly Selected Value : 240" 11:14:27 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:14:27 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_journalist_Fslow" 11:14:27 "EpochZ 1.0: Spawning 1 Zombie | Position : [31111.9,9651.88,0] | Class : RyanZombieC_journalist_Fslow " 11:14:29 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31269.4,9659.38,0] " 11:14:31 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31275.6,9613.13,0] " 11:14:33 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31356.9,9775.63,0] " 11:14:35 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31371.9,9678.13,0] " 11:14:35 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",990d0100# 2300912: van_01_box_f.p3d REMOTE],[""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"","""","""",a33a0100# 2302552: van_01_transport_f.p3d REMOTE]]" 11:14:37 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:37 "EpochZ 1.0: Randomly Selected Value : 43" 11:14:37 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:37 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_p_fugitive_FWalker" 11:14:37 "EpochZ 1.0: Spawning 1 Zombie | Position : [30954.4,9853.13,0] | Class : RyanZombieC_man_p_fugitive_FWalker " 11:14:39 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:39 "EpochZ 1.0: Randomly Selected Value : 24" 11:14:39 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:39 "EpochZ 1.0: Selected Zombie Class : RyanZombie23walker" 11:14:39 "EpochZ 1.0: Spawning 1 Zombie | Position : [31116.9,9685.63,0] | Class : RyanZombie23walker " 11:14:41 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:41 "EpochZ 1.0: Randomly Selected Value : 129" 11:14:41 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:14:41 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_fWalker" 11:14:41 "EpochZ 1.0: Spawning 1 Zombie | Position : [31125.6,9560.63,0] | Class : RyanZombieB_Soldier_02_fWalker " 11:14:42 Subgroup R Alpha 3-6:1 (0xa598f920) - network ID 2:5938 11:14:42 Unit C Alpha 1-1:1 (0x60c54100) - network ID 2:5942 11:14:42 - leader from another subgroup 11:14:43 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:43 "EpochZ 1.0: Randomly Selected Value : 29" 11:14:43 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:43 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_pilot_FWalker" 11:14:43 "EpochZ 1.0: Spawning 1 Zombie | Position : [31105.6,9713.13,0] | Class : RyanZombieC_man_pilot_FWalker " 11:14:45 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:45 "EpochZ 1.0: Randomly Selected Value : 81" 11:14:45 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:45 "EpochZ 1.0: Selected Zombie Class : RyanZombie25walker" 11:14:45 "EpochZ 1.0: Spawning 1 Zombie | Position : [31100.6,9763.13,0] | Class : RyanZombie25walker " 11:14:46 "EpochZ 1.0: Removing 1 Zombie | Position : [31271.7,10001.1,0.00276184] | Class : RyanZombieC_man_hunter_1_Fslow" 11:14:47 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31226.9,9754.38,0] " 11:14:49 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31254.4,9831.88,0] " 11:14:50 "EpochZ 1.0: 2 Player in game." 11:14:50 "EpochZ 1.0: Waiting 90 seconds." 11:14:51 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [4156.9,14892.7,0] : _markerClass GreenMarker1 : _aiDifficultyLevel green _markerMissionName Medical Camp" 11:14:51 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:51 "EpochZ 1.0: Randomly Selected Value : 93" 11:14:51 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:14:51 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_2_FWalker" 11:14:51 "EpochZ 1.0: Spawning 1 Zombie | Position : [31148.1,9678.13,0] | Class : RyanZombieC_man_polo_2_FWalker " 11:14:51 "DEBUG: server event PlantSpawner" 11:14:52 "EpochZ 1.0: Removing 1 Zombie | Position : [31363.3,9662.07,0.00143909] | Class : RyanZombieC_Oresteswalker" 11:14:53 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:53 "EpochZ 1.0: Randomly Selected Value : 184" 11:14:53 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:14:53 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_2_Fslow" 11:14:53 "EpochZ 1.0: Spawning 1 Zombie | Position : [31119.4,9700.63,0] | Class : RyanZombieC_man_polo_2_Fslow " 11:14:55 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31266.9,9919.38,0] " 11:14:57 "EpochZ 1.0: No suitable spawn location found for a Zombie near [31135.6,9788.13,0] " 11:14:59 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:14:59 "EpochZ 1.0: Randomly Selected Value : 250" 11:14:59 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:14:59 "EpochZ 1.0: Selected Zombie Class : RyanZombie25slow" 11:14:59 "EpochZ 1.0: Spawning 1 Zombie | Position : [30921.9,9814.38,0] | Class : RyanZombie25slow " 11:15:01 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:15:01 "EpochZ 1.0: Randomly Selected Value : 184" 11:15:01 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:15:01 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_1_Fslow" 11:15:01 "EpochZ 1.0: Spawning 1 Zombie | Position : [31128.1,9524.38,0] | Class : RyanZombieC_man_polo_1_Fslow " 11:15:02 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,56,56,49,50,46,57,44,50,48,54,49,55,46,54,44,48,93,40,71,80,83,58,32,50,56,56,50,48,54,41]],""2:3736""]" 11:15:02 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:15:02 "<infiSTAR.de>ADMINLOG| 1h 13min | MegaZ(76561197990778975) | Teleport to [28812.9,20617.6,0](GPS: 288206) [01-07-2018 15-36-18 - v259]" 11:15:12 "EpochZ 1.0: Removing 1 Zombie | Position : [30935.2,9848.6,0.00143909] | Class : RyanZombieC_man_p_fugitive_Fwalker" 11:15:16 "EpochZ 1.0: Removing 1 Zombie | Position : [31117.5,9564.62,0.00143051] | Class : RyanZombieB_Soldier_02_fwalker" 11:15:18 "EpochZ 1.0: Removing 1 Zombie | Position : [31236.4,9791.23,0.00143862] | Class : RyanZombie25slow" 11:15:20 "EpochZ 1.0: Removing 1 Zombie | Position : [31170.4,9800.88,0.00143862] | Class : RyanZombieC_man_polo_5_Fwalker" 11:15:24 "EpochZ 1.0: Removing 1 Zombie | Position : [31142.2,9814.9,0.00143909] | Class : RyanZombieC_man_polo_2_Fwalker" 11:15:26 "EpochZ 1.0: Removing 1 Zombie | Position : [31129.9,9667.96,0.00143909] | Class : RyanZombieB_Soldier_02_f_1slow" 11:15:26 "EpochZ 1.0: Removing 1 Zombie | Position : [31156.1,9682.23,0.00143909] | Class : RyanZombieC_man_polo_2_Fwalker" 11:15:28 "EpochZ 1.0: Removing 1 Zombie | Position : [31137.3,9706.59,0.00143909] | Class : RyanZombieC_man_polo_2_Fslow" 11:15:34 "EpochZ 1.0: Removing 1 Zombie | Position : [30921.7,9802.31,0.00143909] | Class : RyanZombie25slow" 11:15:36 "EpochZ 1.0: Removing 1 Zombie | Position : [31136.4,9543.42,0.00153017] | Class : RyanZombieC_man_polo_1_Fslow" 11:15:46 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,49,56,54,51,46,54,44,50,48,56,56,51,46,52,44,48,93,40,71,80,83,58,32,50,49,56,50,48,56,41]],""2:3736""]" 11:15:46 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:15:46 "<infiSTAR.de>ADMINLOG| 1h 14min | MegaZ(76561197990778975) | Teleport to [21863.6,20883.4,0](GPS: 218208) [01-07-2018 15-36-18 - v259]" 11:16:20 "EpochZ 1.0: 2 Player in game." 11:16:20 "EpochZ 1.0: Waiting 90 seconds." 11:16:47 "DEBUG: server event GardenManager" 11:16:47 "DEBUG: server event SolarChargerManager" 11:17:18 No such side 11:17:33 "[blckeagls] Timstamp 4643.76 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.5356 | Server Uptime 77 Min | Missions Run 0" 11:17:40 "[A3EAI Monitor] [Uptime:01:17:30][FPS:50][Groups:2/5][Respawn:5][HC:false]" 11:17:40 "[A3EAI Monitor] [Static:1][Dynamic:0][Random:6][Air:2][Land:1][UAV:0][UGV:0]" 11:17:50 "EpochZ 1.0: 2 Player in game." 11:17:50 "EpochZ 1.0: Waiting 90 seconds." 11:18:13 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,56,52,46,49,44,49,57,55,54,49,44,48,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 11:18:13 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:18:13 "<infiSTAR.de>ADMINLOG| 1h 16min | MegaZ(76561197990778975) | Teleport to [23184.1,19761,0](GPS: 231197) [01-07-2018 15-36-18 - v259]" 11:18:26 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 11:18:30 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",9ad11600# 2320568: truck_01_covered_f.p3d REMOTE]]" 11:18:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,66,95,84,114,117,99,107,95,48,49,95,99,111,118,101,114,101,100,95,69,80,79,67,72,32,64,50,51,49,49,57,55,46,46]],""2:3736""]" 11:18:39 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:18:39 "<infiSTAR.de>ADMINLOG| 1h 17min | MegaZ(76561197990778975) | Deleting B_Truck_01_covered_EPOCH @231197.. [01-07-2018 15-36-18 - v259]" 11:18:45 "STORAGE: saved to hive Safe_EPOCH Pos [[[12905,17483,0],[0.787109,0.566406,0.547516]],[-0.305969,-0.952041,-6.10352e-005],[-1.86749e-005,-5.81081e-005,1]] Owners [""76561198084209108""] Locked 1" 11:18:46 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,49,54,56,49,46,49,44,50,49,54,55,54,46,50,44,48,93,40,71,80,83,58,32,50,49,54,50,49,54,41]],""2:3736""]" 11:18:46 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:18:46 "<infiSTAR.de>ADMINLOG| 1h 17min | MegaZ(76561197990778975) | Teleport to [21681.1,21676.2,0](GPS: 216216) [01-07-2018 15-36-18 - v259]" 11:18:56 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,49,54,54,49,46,57,44,50,49,54,56,53,44,48,93,40,71,80,83,58,32,50,49,54,50,49,54,41]],""2:3736""]" 11:18:56 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:18:56 "<infiSTAR.de>ADMINLOG| 1h 17min | MegaZ(76561197990778975) | Teleport to [21661.9,21685,0](GPS: 216216) [01-07-2018 15-36-18 - v259]" 11:19:07 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[86,101,104,105,99,108,101,32,77,97,114,107,101,114,32,45,32,48]],""2:3736""]" 11:19:07 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:19:07 "<infiSTAR.de>ADMINLOG| 1h 17min | MegaZ(76561197990778975) | Vehicle Marker - 0 [01-07-2018 15-36-18 - v259]" 11:19:08 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[86,101,104,105,99,108,101,32,77,97,114,107,101,114,32,45,32,49]],""2:3736""]" 11:19:08 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:19:08 "<infiSTAR.de>ADMINLOG| 1h 17min | MegaZ(76561197990778975) | Vehicle Marker - 1 [01-07-2018 15-36-18 - v259]" 11:19:20 "EpochZ 1.0: 2 Player in game." 11:19:20 "EpochZ 1.0: Waiting 90 seconds." 11:19:47 "DEBUG: server event MoneyDrop" 11:19:47 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 11:19:51 "DEBUG: server event PlantSpawner" 11:19:57 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieC_journalist_Fslow" 11:19:58 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,49,52,51,52,46,49,44,49,49,49,56,54,46,53,44,48,93,40,71,80,83,58,32,51,49,52,49,49,49,41]],""2:3736""]" 11:19:58 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:19:58 "<infiSTAR.de>ADMINLOG| 1h 18min | MegaZ(76561197990778975) | Teleport to [31434.1,11186.5,0](GPS: 314111) [01-07-2018 15-36-18 - v259]" 11:20:03 "EpochZ 1.0: Activating Trigger | Position : [31323.6,11207.8,0] | GroupSize : 25 | Near : " 11:20:03 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:20:03 "EpochZ 1.0: Randomly Selected Value : 101" 11:20:03 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:20:03 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1_1Walker" 11:20:03 "EpochZ 1.0: Spawning 1 Zombie | Position : [31370.6,11185.6,0] | Class : RyanZombieB_Soldier_03_f_1_1Walker " 11:20:05 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:20:05 "EpochZ 1.0: Randomly Selected Value : 192" 11:20:05 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 11:20:05 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_w_worker_Fslow" 11:20:05 "EpochZ 1.0: Spawning 1 Zombie | Position : [31198.1,11375.6,0] | Class : RyanZombieC_man_w_worker_Fslow " 11:20:07 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:20:07 "EpochZ 1.0: Randomly Selected Value : 273" 11:20:07 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fslow""],[""RyanZombieB_Soldier_02_f_1slow""],[""RyanZombieB_Soldier_02_f_1_1slow""],[""RyanZombieB_Soldier_03_fslow""],[""RyanZombieB_Soldier_03_f_1slow""],[""RyanZombieB_Soldier_03_f_1_1slow""],[""RyanZombieB_Soldier_04_fslow""],[""RyanZombieB_Soldier_04_f_1slow""],[""RyanZombieB_Soldier_04_f_1_1slow""],[""RyanZombieB_Soldier_lite_Fslow""],[""RyanZombieB_Soldier_lite_F_1slow""]] Compound Weight : 305" 11:20:07 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_fslow" 11:20:07 "EpochZ 1.0: Spawning 1 Zombie | Position : [31358.1,11101.9,0] | Class : RyanZombieB_Soldier_03_fslow " 11:20:09 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie23walker" 11:20:09 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:20:09 "EpochZ 1.0: Randomly Selected Value : 94" 11:20:09 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:20:09 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_polo_5_FWalker" 11:20:09 "EpochZ 1.0: Spawning 1 Zombie | Position : [31453.1,11135.6,0] | Class : RyanZombieC_man_polo_5_FWalker " 11:20:11 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:20:11 "EpochZ 1.0: Randomly Selected Value : 124" 11:20:11 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 11:20:11 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_03_f_1_1Walker" 11:20:11 "EpochZ 1.0: Spawning 1 Zombie | Position : [31313.1,11180.6,0] | Class : RyanZombieB_Soldier_03_f_1_1Walker " 11:20:13 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombieC_man_pilot_Fwalker" 11:20:13 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 11:20:13 "EpochZ 1.0: Randomly Selected Value : 87" 11:20:13 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 11:20:13 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_NikosWalker" 11:20:13 "EpochZ 1.0: Spawning 1 Zombie | Position : [31429.4,11119.4,0] | Class : RyanZombieC_NikosWalker " 11:20:14 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,48,56,53,56,46,49,44,57,54,52,51,46,55,51,44,48,93,40,71,80,83,58,32,51,48,56,48,57,54,41]],""2:3736""]" 11:20:14 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:20:14 "<infiSTAR.de>ADMINLOG| 1h 18min | MegaZ(76561197990778975) | Teleport to [30858.1,9643.73,0](GPS: 308096) [01-07-2018 15-36-18 - v259]" 11:20:15 "EpochZ 1.0: Removing 1 Zombie | Position : [0,0,0] | Class : RyanZombie25walker" 11:20:27 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",998a6b00# 2301177: van_01_box_f.p3d REMOTE]]" 11:20:35 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,67,95,86,97,110,95,48,49,95,116,114,97,110,115,112,111,114,116,95,69,80,79,67,72,32,64,51,48,56,48,57,54,46,46]],""2:3736""]" 11:20:35 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:20:35 "<infiSTAR.de>ADMINLOG| 1h 19min | MegaZ(76561197990778975) | Deleting C_Van_01_transport_EPOCH @308096.. [01-07-2018 15-36-18 - v259]" 11:20:38 "EpochZ 1.0: Removing 1 Zombie | Position : [31363.9,11177.3,0.00143623] | Class : RyanZombieB_Soldier_03_f_1_1walker" 11:20:40 "EpochZ 1.0: Removing 1 Zombie | Position : [31200.1,11375.2,0.00143909] | Class : RyanZombieC_man_w_worker_Fslow" 11:20:42 "EpochZ 1.0: Removing 1 Zombie | Position : [31366.3,11104.4,0.00144005] | Class : RyanZombieB_Soldier_03_fslow" 11:20:44 "EpochZ 1.0: Removing 1 Zombie | Position : [31445.8,11129.7,0.00143433] | Class : RyanZombieC_man_polo_5_Fwalker" 11:20:46 "EpochZ 1.0: Removing 1 Zombie | Position : [31320.9,11182.4,0.00143909] | Class : RyanZombieB_Soldier_03_f_1_1walker" 11:20:48 "EpochZ 1.0: Removing 1 Zombie | Position : [31438.8,11115,0.00144863] | Class : RyanZombieC_Nikoswalker" 11:20:50 "EpochZ 1.0: 2 Player in game." 11:20:50 "EpochZ 1.0: Waiting 90 seconds." 11:20:53 "EpochZ 1.0: Deactivating Trigger | Position : [31323.6,11207.8,0] | GroupSize : 25 | Near : " 11:21:23 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,52,55,51,44,49,56,48,52,50,46,54,44,48,93,40,71,80,83,58,32,50,51,52,49,56,48,41]],""2:3736""]" 11:21:23 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:21:23 "<infiSTAR.de>ADMINLOG| 1h 19min | MegaZ(76561197990778975) | Teleport to [23473,18042.6,0](GPS: 234180) [01-07-2018 15-36-18 - v259]" 11:21:41 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,56,52,46,54,44,49,57,55,53,52,46,52,44,48,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 11:21:41 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:21:41 "<infiSTAR.de>ADMINLOG| 1h 20min | MegaZ(76561197990778975) | Teleport to [23184.6,19754.4,0](GPS: 231197) [01-07-2018 15-36-18 - v259]" 11:21:59 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",a06e8100# 2301492: truck_01_transport_f.p3d REMOTE]]" 11:22:20 "EpochZ 1.0: 2 Player in game." 11:22:20 "EpochZ 1.0: Waiting 90 seconds." 11:22:34 "[blckeagls] Timstamp 4944.04 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 82 Min | Missions Run 0" 11:22:40 "[A3EAI Monitor] [Uptime:01:22:30][FPS:50][Groups:2/4][Respawn:5][HC:false]" 11:22:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:1][UAV:0][UGV:0]" 11:23:15 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,57,55,51,49,46,54,44,49,51,51,52,56,46,57,44,48,93,40,71,80,83,58,32,50,57,55,49,51,51,41]],""2:3736""]" 11:23:15 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:23:15 "<infiSTAR.de>ADMINLOG| 1h 21min | MegaZ(76561197990778975) | Teleport to [29731.6,13348.9,0](GPS: 297133) [01-07-2018 15-36-18 - v259]" 11:23:42 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,57,49,50,51,46,57,44,49,52,53,53,53,44,48,93,40,71,80,83,58,32,50,57,49,49,52,53,41]],""2:3736""]" 11:23:42 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:23:42 "<infiSTAR.de>ADMINLOG| 1h 22min | MegaZ(76561197990778975) | Teleport to [29123.9,14555,0](GPS: 291145) [01-07-2018 15-36-18 - v259]" 11:23:50 "EpochZ 1.0: 2 Player in game." 11:23:50 "EpochZ 1.0: Waiting 90 seconds." 11:24:10 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,55,48,55,55,46,55,44,49,55,54,57,55,46,53,44,48,93,40,71,80,83,58,32,50,55,48,49,55,54,41]],""2:3736""]" 11:24:10 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:24:10 "<infiSTAR.de>ADMINLOG| 1h 22min | MegaZ(76561197990778975) | Teleport to [27077.7,17697.5,0](GPS: 270176) [01-07-2018 15-36-18 - v259]" 11:24:46 "DEBUG: server event EarthQuake" 11:24:47 "DEBUG: server event ContainerSpawner" 11:24:52 "DEBUG: server event PlantSpawner" 11:25:01 "EpochZ 1.0: Deactivating Trigger | Position : [31177.5,9804.61,0] | GroupSize : 25 | Near : " 11:25:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,50,51,49,56,50,46,57,44,49,57,55,54,49,46,52,44,48,93,40,71,80,83,58,32,50,51,49,49,57,55,41]],""2:3736""]" 11:25:05 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:25:05 "<infiSTAR.de>ADMINLOG| 1h 23min | MegaZ(76561197990778975) | Teleport to [23182.9,19761.4,0](GPS: 231197) [01-07-2018 15-36-18 - v259]" 11:25:09 "WAI: [Mission: Mi-48 Crash]: Ended at [32013.9,27282.1]" 11:25:20 "EpochZ 1.0: 2 Player in game." 11:25:20 "EpochZ 1.0: Waiting 90 seconds." 11:25:23 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",d03c100# 2319731: truck_01_mover_f.p3d REMOTE]]" 11:25:47 "[HSBlackmarket] B Alpha 1-1:1 (MegaZ) REMOTE selling [[""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"","""","""",d03c100# 2319731: truck_01_mover_f.p3d REMOTE]]" 11:25:58 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""ng59o4nnzwd65xx0e"",[""MegaZ"",""76561197990778975"",""ALOG"",[68,101,108,101,116,105,110,103,32,66,95,84,114,117,99,107,95,48,49,95,109,111,118,101,114,95,69,80,79,67,72,32,64,50,51,49,49,57,55,46,46]],""2:3736""]" 11:25:58 "<infiSTAR.de FNC_AH_KICKLOGSPAWN> MegaZ(76561197990778975) Token ng59o4nnzwd65xx0e - objByNetID B Alpha 1-1:1 (MegaZ) REMOTE" 11:25:58 "<infiSTAR.de>ADMINLOG| 1h 24min | MegaZ(76561197990778975) | Deleting B_Truck_01_mover_EPOCH @231197.. [01-07-2018 15-36-18 - v259]" 11:26:17 "<infiSTAR.de>CONNECTLOG| 1h 24min | Disconnected: MegaZ(76561197990778975 - 3) - time: 5014.58 - serverFPS: 50 [01-07-2018 15-36-18 - v259]" 11:26:17 Client: Remote object 3:0 not found 11:26:18 Warning: Cleanup player - person 2:3736 not found 11:26:20 Warning: Cleanup player - person 2:3736 not found 11:26:50 "EpochZ 1.0: 1 Player in game." 11:26:50 "EpochZ 1.0: Waiting 180 seconds." 11:27:34 "[blckeagls] Timstamp 5244.04 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 87 Min | Missions Run 0" 11:27:40 "[A3EAI Monitor] [Uptime:01:27:30][FPS:50][Groups:3/5][Respawn:4][HC:false]" 11:27:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:2][UAV:0][UGV:0]" 11:29:50 "EpochZ 1.0: 1 Player in game." 11:29:50 "EpochZ 1.0: Waiting 180 seconds." 11:29:52 "DEBUG: server event PlantSpawner" 11:32:32 "WAI: position Wildness" 11:32:32 "WAI: Good position At [22652.6,29257]" 11:32:33 "WAI: [Mission: Communication Center]: Starting... [22652.6,29257]" 11:32:33 "WAI: Spawned a group of 5 AI at [22653.8,29251.7,0]" 11:32:33 "WAI: Spawned a group of 5 AI at [22658.3,29254.6,0]" 11:32:33 "WAI: Spawned a group of 5 AI at [22657,29245.5,0]" 11:32:33 Duplicate HitPoint name 'HitGun' in 'O_HMG_01_high_F' 11:32:33 Duplicate HitPoint name 'HitTurret' in 'O_HMG_01_high_F' 11:32:33 Dimensions in class O_HMG_01_high_F should be an array of size 2. 11:32:33 "WAI: Spawned in 4 O_HMG_01_high_F" 11:32:34 "[blckeagls] Timstamp 5544.18 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 47.1976 | Server Uptime 92 Min | Missions Run 0" 11:32:40 "[A3EAI Monitor] [Uptime:01:32:30][FPS:50][Groups:3/4][Respawn:3][HC:false]" 11:32:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:2][UAV:0][UGV:0]" 11:32:50 "EpochZ 1.0: 1 Player in game." 11:32:50 "EpochZ 1.0: Waiting 180 seconds." 11:34:46 "DEBUG: server event AirDrop" 11:34:46 "DEBUG: server event Satellite" 11:34:46 "Epoch: Air Drop Triggered on B Alpha 1-2:1 (Solster) REMOTE" 11:34:48 "DEBUG: server event MoneyDrop" 11:34:48 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 11:34:53 "DEBUG: server event PlantSpawner" 11:35:44 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:35:51 "EpochZ 1.0: 1 Player in game." 11:35:51 "EpochZ 1.0: Waiting 180 seconds." 11:35:54 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:36:05 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:37:27 "EpochZ 1.0: Next Horde in 25 minutes." 11:37:34 "[blckeagls] Timstamp 5844.39 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 97 Min | Missions Run 0" 11:37:40 "[A3EAI Monitor] [Uptime:01:37:30][FPS:50][Groups:5/5][Respawn:0][HC:false]" 11:37:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 11:38:26 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:38:29 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:38:51 "EpochZ 1.0: 1 Player in game." 11:38:51 "EpochZ 1.0: Waiting 180 seconds." 11:39:53 "DEBUG: server event PlantSpawner" 11:40:47 "DEBUG: server event GardenManager" 11:40:47 "DEBUG: server event SolarChargerManager" 11:41:51 "EpochZ 1.0: 1 Player in game." 11:41:51 "EpochZ 1.0: Waiting 180 seconds." 11:42:02 "WAI: [Mission: Mi-48 Crash]: Ended at [2497.6,16134.2]" 11:42:17 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:42:19 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:42:34 "[blckeagls] Timstamp 6144.58 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 102 Min | Missions Run 0" 11:42:40 "[A3EAI Monitor] [Uptime:01:42:30][FPS:50][Groups:5/5][Respawn:0][HC:false]" 11:42:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 11:44:48 "DEBUG: server event ContainerSpawner" 11:44:51 "EpochZ 1.0: 1 Player in game." 11:44:51 "EpochZ 1.0: Waiting 180 seconds." 11:44:54 "DEBUG: server event PlantSpawner" 11:47:34 "[blckeagls] Timstamp 6444.71 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 107 Min | Missions Run 0" 11:47:40 "[A3EAI Monitor] [Uptime:01:47:30][FPS:50][Groups:5/5][Respawn:0][HC:false]" 11:47:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 11:47:51 "EpochZ 1.0: 1 Player in game." 11:47:51 "EpochZ 1.0: Waiting 180 seconds." 11:49:48 "DEBUG: server event MoneyDrop" 11:49:48 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 11:49:51 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:49:54 "DEBUG: server event PlantSpawner" 11:50:29 "-- LOOTSPAWNER deleted 5 objects --" 11:50:31 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:50:51 "EpochZ 1.0: 1 Player in game." 11:50:51 "EpochZ 1.0: Waiting 180 seconds." 11:52:34 "[blckeagls] Timstamp 6744.82 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 112 Min | Missions Run 0" 11:52:40 "[A3EAI Monitor] [Uptime:01:52:30][FPS:50][Groups:5/5][Respawn:0][HC:false]" 11:52:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 11:53:51 "EpochZ 1.0: 1 Player in game." 11:53:51 "EpochZ 1.0: Waiting 180 seconds." 11:54:55 "DEBUG: server event PlantSpawner" 11:56:52 "EpochZ 1.0: 1 Player in game." 11:56:52 "EpochZ 1.0: Waiting 180 seconds." 11:56:53 "WAI: position Wildness" 11:56:53 "WAI: Good position At [12853.3,24168.8]" 11:56:53 "WAI: [Mission: The Farm]: Starting... [12853.3,24168.8]" 11:56:54 Cannot create non-ai vehicle Land_t_quercus3s, 11:56:54 Cannot create non-ai vehicle Land_t_quercus2f, 11:56:54 Cannot create non-ai vehicle Land_t_pinusN2s, 11:56:54 "WAI: Spawned a group of 5 AI at [12861.5,24156.8,0]" 11:56:54 "WAI: Spawned a group of 5 AI at [12862.2,24165.1,0]" 11:56:54 "WAI: Spawned a group of 5 AI at [12863.6,24165.7,0]" 11:56:54 "WAI: Spawned in 4 I_HMG_01_high_F" 11:57:34 "[blckeagls] Timstamp 7044.99 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 40.3023 | Server Uptime 117 Min | Missions Run 0" 11:57:40 "[A3EAI Monitor] [Uptime:01:57:30][FPS:50][Groups:5/5][Respawn:1][HC:false]" 11:57:40 "[A3EAI Monitor] [Static:1][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 11:59:35 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:59:45 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 11:59:52 "EpochZ 1.0: 1 Player in game." 11:59:52 "EpochZ 1.0: Waiting 180 seconds." 11:59:55 "DEBUG: server event PlantSpawner" 12:00:05 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:00:34 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:02:06 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:02:26 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:02:27 "EpochZ 1.0: Next Horde in 26 minutes." 12:02:35 "[blckeagls] Timstamp 7345.16 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 122 Min | Missions Run 0" 12:02:37 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:02:40 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:02:40 "[A3EAI Monitor] [Uptime:02:02:30][FPS:50][Groups:4/4][Respawn:1][HC:false]" 12:02:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 12:02:52 "EpochZ 1.0: 1 Player in game." 12:02:52 "EpochZ 1.0: Waiting 180 seconds." 12:03:17 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:03:24 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:04:07 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:04:09 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:04:46 "DEBUG: server event CarnivalSpawner" 12:04:46 "DEBUG: server event EarthQuake" 12:04:47 "DEBUG: server event GardenManager" 12:04:47 "DEBUG: server event SolarChargerManager" 12:04:48 "DEBUG: server event ContainerSpawner" 12:04:49 "DEBUG: server event MoneyDrop" 12:04:49 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 12:04:55 "DEBUG: server event PlantSpawner" 12:05:52 "EpochZ 1.0: 1 Player in game." 12:05:52 "EpochZ 1.0: Waiting 180 seconds." 12:07:35 "[blckeagls] Timstamp 7645.35 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 127 Min | Missions Run 0" 12:07:40 "[A3EAI Monitor] [Uptime:02:07:30][FPS:50][Groups:4/4][Respawn:1][HC:false]" 12:07:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 12:08:51 "_fnc_missionSpawner (187): mission timed out" 12:08:52 "EpochZ 1.0: 1 Player in game." 12:08:52 "EpochZ 1.0: Waiting 180 seconds." 12:09:04 "_fnc_dynamicUMSSpawner (187): mission timed out" 12:09:52 "_fnc_missionSpawner (187): mission timed out" 12:09:55 "DEBUG: server event PlantSpawner" 12:10:52 "_fnc_missionSpawner (187): mission timed out" 12:10:57 "_fnc_dynamicUMSSpawner (187): mission timed out" 12:11:52 "EpochZ 1.0: 1 Player in game." 12:11:52 "EpochZ 1.0: Waiting 180 seconds." 12:11:52 "_fnc_missionSpawner (187): mission timed out" 12:11:56 "_fnc_dynamicUMSSpawner (187): mission timed out" 12:12:06 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [29453.1,22829.7,0] : _markerClass BlueMarker2 : _aiDifficultyLevel blue _markerMissionName Rescue Hostage" 12:12:17 "WAI: [Mission: bandit Communications Center]: Ended at [22652.6,29257]" 12:12:35 "[blckeagls] Timstamp 7945.91 |Dynamic Missions Running 6 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 132 Min | Missions Run 0" 12:12:40 "[A3EAI Monitor] [Uptime:02:12:30][FPS:50][Groups:4/4][Respawn:1][HC:false]" 12:12:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 12:13:01 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:13:06 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [3764.31,22004.5,0] : _markerClass BlueMarker1 : _aiDifficultyLevel blue _markerMissionName Capture Don" 12:13:10 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [13813.6,20261.2] : _markerClass Mafia Pirates766973 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 12:13:21 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:13:41 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:13:53 "_fnc_missionSpawner (187): mission timed out" 12:14:06 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [15970.1,24295.4,0] : _markerClass RedMarker1 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 12:14:12 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [7934.23,12015.2] : _markerClass Mafia Pirates308739 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 12:14:32 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:14:42 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:14:52 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:14:52 "EpochZ 1.0: 1 Player in game." 12:14:52 "EpochZ 1.0: Waiting 180 seconds." 12:14:53 "_fnc_missionSpawner (187): mission timed out" 12:14:56 "DEBUG: server event PlantSpawner" 12:15:02 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:15:18 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [22533.5,10147.6] : _markerClass Mafia Pirates592069 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 12:16:07 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [30197,27158,0] : _markerClass RedMarker2 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 12:16:12 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:17:03 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:17:11 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:17:36 "[blckeagls] Timstamp 8246.51 |Dynamic Missions Running 7 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.6894 | Server Uptime 137 Min | Missions Run 0" 12:17:40 "[A3EAI Monitor] [Uptime:02:17:30][FPS:50][Groups:5/5][Respawn:0][HC:false]" 12:17:40 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 12:17:52 "EpochZ 1.0: 1 Player in game." 12:17:52 "EpochZ 1.0: Waiting 180 seconds." 12:17:54 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:18:52 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:19:08 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [15156.8,17152.4,0] : _markerClass OrangeMarker1 : _aiDifficultyLevel orange _markerMissionName Resupply Camp" 12:19:47 "DEBUG: server event AirDrop" 12:19:47 "DEBUG: server event Satellite" 12:19:47 "Epoch: Air Drop Triggered on B Alpha 1-2:1 (Solster) REMOTE" 12:19:50 "DEBUG: server event MoneyDrop" 12:19:50 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 12:19:57 "DEBUG: server event PlantSpawner" 12:20:08 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [25262.5,19779.1,0] : _markerClass GreenMarker1 : _aiDifficultyLevel green _markerMissionName Medical Camp" 12:20:52 "EpochZ 1.0: 1 Player in game." 12:20:52 "EpochZ 1.0: Waiting 180 seconds." 12:21:35 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:21:45 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:21:54 "WAI: position City" 12:21:54 "WAI: Good position At [33790.4,15553.9]" 12:21:55 "WAI: [Mission: Slaughter House]: Starting... [33790.4,15553.9]" 12:21:55 "WAI: Spawned a group of 3 AI at [33792.7,15539.6,0]" 12:21:55 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:21:55 "WAI: Spawned a group of 3 AI at [33797.5,15541.2,0]" 12:21:55 "WAI: Spawned a group of 3 AI at [33796.7,15543.6,0]" 12:21:55 "WAI: Spawned a group of 3 AI at [33797.6,15551,0]" 12:21:56 "WAI: Spawned a group of 3 AI at [33796.4,15552.1,0]" 12:21:56 "WAI: Spawned in 2 I_HMG_01_high_F" 12:22:05 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:22:11 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:22:36 "[blckeagls] Timstamp 8546.72 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 142 Min | Missions Run 0" 12:22:41 "[A3EAI Monitor] [Uptime:02:22:31][FPS:50][Groups:4/4][Respawn:1][HC:false]" 12:22:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 12:23:53 "EpochZ 1.0: 1 Player in game." 12:23:53 "EpochZ 1.0: Waiting 180 seconds." 12:24:49 "DEBUG: server event ContainerSpawner" 12:24:57 "DEBUG: server event PlantSpawner" 12:26:53 "EpochZ 1.0: 1 Player in game." 12:26:53 "EpochZ 1.0: Waiting 180 seconds." 12:27:36 "[blckeagls] Timstamp 8847 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 147 Min | Missions Run 0" 12:27:41 "[A3EAI Monitor] [Uptime:02:27:31][FPS:50][Groups:4/4][Respawn:1][HC:false]" 12:27:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 12:28:27 "EpochZ 1.0: Next Horde in 26 minutes." 12:28:47 "DEBUG: server event GardenManager" 12:28:47 "DEBUG: server event SolarChargerManager" 12:29:25 BEServer: registering a new player #349172588 12:29:42 BEServer: registering a new player #365173541 12:29:53 "EpochZ 1.0: 1 Player in game." 12:29:53 "EpochZ 1.0: Waiting 180 seconds." 12:29:57 "DEBUG: server event PlantSpawner" 12:32:20 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:32:37 "[blckeagls] Timstamp 9147.48 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 152 Min | Missions Run 0" 12:32:40 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:32:41 "[A3EAI Monitor] [Uptime:02:32:31][FPS:50][Groups:3/3][Respawn:2][HC:false]" 12:32:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:2][UAV:0][UGV:0]" 12:32:50 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:32:53 "EpochZ 1.0: 1 Player in game." 12:32:53 "EpochZ 1.0: Waiting 180 seconds." 12:33:00 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:34:30 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:34:50 "DEBUG: server event MoneyDrop" 12:34:50 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 12:34:58 "DEBUG: server event PlantSpawner" 12:35:53 "EpochZ 1.0: 1 Player in game." 12:35:53 "EpochZ 1.0: Waiting 180 seconds." 12:37:37 "[blckeagls] Timstamp 9447.51 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 157 Min | Missions Run 0" 12:37:41 "[A3EAI Monitor] [Uptime:02:37:31][FPS:50][Groups:3/3][Respawn:1][HC:false]" 12:37:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:2][UAV:0][UGV:0]" 12:38:53 "EpochZ 1.0: 1 Player in game." 12:38:53 "EpochZ 1.0: Waiting 180 seconds." 12:39:58 "DEBUG: server event PlantSpawner" 12:41:53 "EpochZ 1.0: 1 Player in game." 12:41:53 "EpochZ 1.0: Waiting 180 seconds." 12:41:54 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:42:38 "[blckeagls] Timstamp 9748.12 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 162 Min | Missions Run 0" 12:42:41 "[A3EAI Monitor] [Uptime:02:42:31][FPS:50][Groups:5/5][Respawn:0][HC:false]" 12:42:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 12:44:45 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:44:47 "DEBUG: server event EarthQuake" 12:44:49 "DEBUG: server event ContainerSpawner" 12:44:54 "EpochZ 1.0: 1 Player in game." 12:44:54 "EpochZ 1.0: Waiting 180 seconds." 12:44:59 "DEBUG: server event PlantSpawner" 12:45:05 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:45:26 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:45:36 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:45:46 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:47:38 "[blckeagls] Timstamp 10048.7 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 167 Min | Missions Run 0" 12:47:41 "[A3EAI Monitor] [Uptime:02:47:31][FPS:50][Groups:5/5][Respawn:0][HC:false]" 12:47:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 12:47:54 "EpochZ 1.0: 1 Player in game." 12:47:54 "EpochZ 1.0: Waiting 180 seconds." 12:48:54 "WAI: [Mission: The Farm]: Ended at [12853.3,24168.8]" 12:49:51 "DEBUG: server event MoneyDrop" 12:49:51 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 12:50:00 "DEBUG: server event PlantSpawner" 12:50:54 "EpochZ 1.0: 1 Player in game." 12:50:54 "EpochZ 1.0: Waiting 180 seconds." 12:51:13 BEServer: registering a new player #112096577 12:52:09 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:52:19 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:52:32 Server: Object 0:0 not found (message Type_181) 12:52:32 Server: Object 0:0 not found (message Type_181) 12:52:32 Server: Object 0:0 not found (message Type_181) 12:52:32 Server: Object 0:0 not found (message Type_181) 12:52:32 Server: Object 0:0 not found (message Type_181) 12:52:32 Server: Object 0:0 not found (message Type_181) 12:52:35 Unaccessible 12:52:35 "<infiSTAR.de>TOKENLOG| MartinQ(76561198157773699) CLIENT OWNER ID [8], TOKEN [po465vp8d6jvfeg6xv] [01-07-2018 15-36-18 - v259]" 12:52:35 "<infiSTAR.de>CONNECTLOG| 2h 51min | Connected: MartinQ(76561198157773699 - 8) - time: 10192.8 - serverFPS: 49.8442 [01-07-2018 15-36-18 - v259]" 12:52:37 Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed 12:52:38 "[blckeagls] Timstamp 10349 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.3827 | Server Uptime 172 Min | Missions Run 0" 12:52:39 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:52:41 "[A3EAI Monitor] [Uptime:02:52:31][FPS:50][Groups:5/5][Respawn:0][HC:false]" 12:52:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 12:52:47 "DEBUG: Invaild player data [], defaults used instead." 12:52:47 No speaker given for 'Majeed Amin' 12:52:47 Speaker Male01_F not found in CfgVoiceTypes 12:52:48 "DEBUG: server event GardenManager" 12:52:48 "DEBUG: server event SolarChargerManager" 12:52:49 Server: Object 8:9 not found (message Type_95) 12:52:57 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:53:54 "EpochZ 1.0: 2 Player in game." 12:53:54 "EpochZ 1.0: Waiting 90 seconds." 12:54:11 "WAI: [Mission: Slaughter House]: Ended at [33790.4,15553.9]" 12:54:27 "EpochZ 1.0: Next Horde in 25 minutes." 12:55:00 "DEBUG: server event PlantSpawner" 12:55:24 "EpochZ 1.0: 2 Player in game." 12:55:24 "EpochZ 1.0: Waiting 90 seconds." 12:56:14 "EpochZ 1.0: Activating Trigger | Position : [22086.5,25659.1,0] | GroupSize : 25 | Near : Alice Springs " 12:56:14 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22090.6,25593.1,0] " 12:56:16 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22029.4,25778.1,0] " 12:56:18 "EpochZ 1.0: No suitable spawn location found for a Zombie near [] " 12:56:20 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:20 "EpochZ 1.0: Randomly Selected Value : 140" 12:56:20 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieB_Soldier_02_fWalker""],[""RyanZombieB_Soldier_02_f_1Walker""],[""RyanZombieB_Soldier_02_f_1_1Walker""],[""RyanZombieB_Soldier_03_fWalker""],[""RyanZombieB_Soldier_03_f_1Walker""],[""RyanZombieB_Soldier_03_f_1_1Walker""],[""RyanZombieB_Soldier_04_fWalker""],[""RyanZombieB_Soldier_04_f_1Walker""],[""RyanZombieB_Soldier_04_f_1_1Walker""],[""RyanZombieB_Soldier_lite_FWalker""],[""RyanZombieB_Soldier_lite_F_1Walker""]] Compound Weight : 155" 12:56:20 "EpochZ 1.0: Selected Zombie Class : RyanZombieB_Soldier_02_f_1Walker" 12:56:20 "EpochZ 1.0: Spawning 1 Zombie | Position : [22325.6,25641.9,0] | Class : RyanZombieB_Soldier_02_f_1Walker " 12:56:22 "EpochZ 1.0: No suitable spawn location found for a Zombie near [21905.6,25764.4,0] " 12:56:24 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22075.6,25624.4,0] " 12:56:26 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22090.6,25720.6,0] " 12:56:28 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22181.9,25714.4,0] " 12:56:30 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22015.6,25655.6,0] " 12:56:32 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22165.6,25579.4,0] " 12:56:34 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:34 "EpochZ 1.0: Randomly Selected Value : 211" 12:56:34 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 12:56:34 "EpochZ 1.0: Selected Zombie Class : RyanZombie22slow" 12:56:34 "EpochZ 1.0: Spawning 1 Zombie | Position : [22280.6,25625.6,0] | Class : RyanZombie22slow " 12:56:36 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22045.6,25479.4,0] " 12:56:38 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:38 "EpochZ 1.0: Randomly Selected Value : 94" 12:56:38 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 12:56:38 "EpochZ 1.0: Selected Zombie Class : RyanZombie16walker" 12:56:38 "EpochZ 1.0: Spawning 1 Zombie | Position : [22264.4,25655.6,0] | Class : RyanZombie16walker " 12:56:40 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:40 "EpochZ 1.0: Randomly Selected Value : 239" 12:56:40 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 12:56:40 "EpochZ 1.0: Selected Zombie Class : RyanZombie28slow" 12:56:40 "EpochZ 1.0: Spawning 1 Zombie | Position : [22353.1,25771.9,0] | Class : RyanZombie28slow " 12:56:42 "EpochZ 1.0: No suitable spawn location found for a Zombie near [21976.9,25790.6,0] " 12:56:44 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:44 "EpochZ 1.0: Randomly Selected Value : 17" 12:56:44 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 12:56:44 "EpochZ 1.0: Selected Zombie Class : RyanZombie25walker" 12:56:44 "EpochZ 1.0: Spawning 1 Zombie | Position : [22190.6,25793.1,0] | Class : RyanZombie25walker " 12:56:46 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:46 "EpochZ 1.0: Randomly Selected Value : 193" 12:56:46 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 12:56:46 "EpochZ 1.0: Selected Zombie Class : RyanZombie29slow" 12:56:46 "EpochZ 1.0: Spawning 1 Zombie | Position : [22204.4,25804.4,0] | Class : RyanZombie29slow " 12:56:48 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:48 "EpochZ 1.0: Randomly Selected Value : 242" 12:56:48 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 12:56:48 "EpochZ 1.0: Selected Zombie Class : RyanZombieC_man_w_worker_Fslow" 12:56:48 "EpochZ 1.0: Spawning 1 Zombie | Position : [22305.6,25800.6,0] | Class : RyanZombieC_man_w_worker_Fslow " 12:56:50 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:50 "EpochZ 1.0: Randomly Selected Value : 238" 12:56:50 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1slow""],[""RyanZombieC_man_polo_1_Fslow""],[""RyanZombieC_man_polo_2_Fslow""],[""RyanZombieC_man_polo_4_Fslow""],[""RyanZombieC_man_polo_5_Fslow""],[""RyanZombieC_man_polo_6_Fslow""],[""RyanZombieC_man_p_fugitive_Fslow""],[""RyanZombieC_man_w_worker_Fslow""],[""RyanZombieC_scientist_Fslow""],[""RyanZombieC_man_hunter_1_Fslow""],[""RyanZombieC_man_pilot_Fslow""],[""RyanZombieC_journalist_Fslow""],[""RyanZombieC_Orestesslow""],[""RyanZombieC_Nikosslow""],[""RyanZombie15slow""],[""RyanZombie16slow""],[""RyanZombie17slow""],[""RyanZombie18slow""],[""RyanZombie19slow""],[""RyanZombie20slow""],[""RyanZombie21slow""],[""RyanZombie22slow""],[""RyanZombie23slow""],[""RyanZombie24slow""],[""RyanZombie25slow""],[""RyanZombie26slow""],[""RyanZombie27slow""],[""RyanZombie28slow""],[""RyanZombie29slow""],[""RyanZombie30slow""],[""RyanZombie31slow""],[""RyanZombie32slow""]] Compound Weight : 255" 12:56:50 "EpochZ 1.0: Selected Zombie Class : RyanZombie32slow" 12:56:50 "EpochZ 1.0: Spawning 1 Zombie | Position : [22233.1,25695.6,0] | Class : RyanZombie32slow " 12:56:51 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:56:52 "EpochZ 1.0: Zombie Group Highest Compound Weight : 305" 12:56:52 "EpochZ 1.0: Randomly Selected Value : 23" 12:56:52 "EpochZ 1.0: Selected Zombie Group : [[""RyanZombieC_man_1Walker""],[""RyanZombieC_man_polo_1_FWalker""],[""RyanZombieC_man_polo_2_FWalker""],[""RyanZombieC_man_polo_4_FWalker""],[""RyanZombieC_man_polo_5_FWalker""],[""RyanZombieC_man_polo_6_FWalker""],[""RyanZombieC_man_p_fugitive_FWalker""],[""RyanZombieC_man_w_worker_FWalker""],[""RyanZombieC_scientist_FWalker""],[""RyanZombieC_man_hunter_1_FWalker""],[""RyanZombieC_man_pilot_FWalker""],[""RyanZombieC_journalist_FWalker""],[""RyanZombieC_OrestesWalker""],[""RyanZombieC_NikosWalker""],[""RyanZombie15walker""],[""RyanZombie16walker""],[""RyanZombie17walker""],[""RyanZombie18walker""],[""RyanZombie19walker""],[""RyanZombie20walker""],[""RyanZombie21walker""],[""RyanZombie22walker""],[""RyanZombie23walker""],[""RyanZombie24walker""],[""RyanZombie25walker""],[""RyanZombie26walker""],[""RyanZombie27walker""],[""RyanZombie28walker""],[""RyanZombie29walker""],[""RyanZombie30walker""],[""RyanZombie31walker""],[""RyanZombie32walker""]] Compound Weight : 100" 12:56:52 "EpochZ 1.0: Selected Zombie Class : RyanZombie15walker" 12:56:52 "EpochZ 1.0: Spawning 1 Zombie | Position : [22205.6,25706.9,0] | Class : RyanZombie15walker " 12:56:54 "EpochZ 1.0: 2 Player in game." 12:56:54 "EpochZ 1.0: Waiting 90 seconds." 12:56:54 "EpochZ 1.0: No suitable spawn location found for a Zombie near [22090.6,25760.6,0] " 12:56:55 "<infiSTAR.de>CONNECTLOG| 2h 55min | Disconnected: MartinQ(76561198157773699 - 8) - time: 10452.7 - serverFPS: 50.3145 [01-07-2018 15-36-18 - v259]" 12:56:55 Client: Remote object 8:0 not found 12:56:57 Warning: Cleanup player - person 2:7139 not found 12:56:58 Warning: Cleanup player - person 2:7139 not found 12:57:02 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:57:04 "EpochZ 1.0: Deactivating Trigger | Position : [22086.5,25659.1,0] | GroupSize : 25 | Near : Alice Springs " 12:57:09 "EpochZ 1.0: Removing 1 Zombie | Position : [22301.8,25630.4,0.00143433] | Class : RyanZombie22slow" 12:57:12 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:57:13 "EpochZ 1.0: Removing 1 Zombie | Position : [22272.9,25648.7,0.00143814] | Class : RyanZombie16walker" 12:57:15 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 12:57:15 "EpochZ 1.0: Removing 1 Zombie | Position : [22365.6,25752.8,0.00159264] | Class : RyanZombie28slow" 12:57:19 "EpochZ 1.0: Removing 1 Zombie | Position : [22190.7,25792.7,0.00143623] | Class : RyanZombie25walker" 12:57:21 "EpochZ 1.0: Removing 1 Zombie | Position : [22190,25790.6,0.00143814] | Class : RyanZombie29slow" 12:57:23 "EpochZ 1.0: Removing 1 Zombie | Position : [22314.7,25822.8,0.00143814] | Class : RyanZombieC_man_w_worker_Fslow" 12:57:25 "EpochZ 1.0: Removing 1 Zombie | Position : [22318.8,25664.7,0.00144005] | Class : RyanZombieB_Soldier_02_f_1walker" 12:57:25 "EpochZ 1.0: Removing 1 Zombie | Position : [22232.6,25696.9,0.00143814] | Class : RyanZombie32slow" 12:57:27 "EpochZ 1.0: Removing 1 Zombie | Position : [22195.9,25702.4,0.00143814] | Class : RyanZombie15walker" 12:57:39 "[blckeagls] Timstamp 10649.2 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 177 Min | Missions Run 0" 12:57:41 "[A3EAI Monitor] [Uptime:02:57:31][FPS:50][Groups:5/6][Respawn:1][HC:false]" 12:57:41 "[A3EAI Monitor] [Static:1][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 12:57:42 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 12:57:51 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 12:58:24 "EpochZ 1.0: 1 Player in game." 12:58:24 "EpochZ 1.0: Waiting 180 seconds." 12:58:32 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 12:58:42 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 12:58:52 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 12:59:02 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 12:59:13 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 13:00:00 "DEBUG: server event PlantSpawner" 13:00:27 "WAI: position Wildness" 13:00:27 "WAI: Good position At [36436.2,13330.5]" 13:00:27 "WAI: [Mission: The Farm]: Starting... [36436.2,13330.5]" 13:00:27 Cannot create non-ai vehicle Land_t_quercus3s, 13:00:27 Cannot create non-ai vehicle Land_t_quercus2f, 13:00:27 Cannot create non-ai vehicle Land_t_pinusN2s, 13:00:27 "WAI: Spawned a group of 4 AI at [36440.8,13317.9,0]" 13:00:27 "WAI: Spawned a group of 4 AI at [36444.4,13320.4,0]" 13:00:27 "WAI: Spawned a group of 4 AI at [36442.2,13322.2,0]" 13:00:28 "WAI: Spawned in 4 I_HMG_01_high_F" 13:00:53 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:01:03 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:01:13 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:01:22 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:01:24 "EpochZ 1.0: 1 Player in game." 13:01:24 "EpochZ 1.0: Waiting 180 seconds." 13:01:33 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:02:39 "[blckeagls] Timstamp 10949.5 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 182 Min | Missions Run 0" 13:02:41 "[A3EAI Monitor] [Uptime:03:02:31][FPS:50][Groups:5/6][Respawn:1][HC:false]" 13:02:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 13:02:45 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:02:55 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:03:15 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:04:25 "EpochZ 1.0: 1 Player in game." 13:04:25 "EpochZ 1.0: Waiting 180 seconds." 13:04:25 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:04:35 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:04:39 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:04:47 "DEBUG: server event CarnivalSpawner" 13:04:47 "DEBUG: server event AirDrop" 13:04:47 "DEBUG: server event Satellite" 13:04:47 "Epoch: Air Drop Triggered on B Alpha 1-2:1 (Solster) REMOTE" 13:04:50 "DEBUG: server event ContainerSpawner" 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:50 Bad simulation shipx, type Land_BuoyBig_F (class=vehicle), a3\structures_f\naval\buoys\buoybig_f.p3d 13:04:51 "DEBUG: server event MoneyDrop" 13:04:51 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 13:05:01 "DEBUG: server event PlantSpawner" 13:07:25 "EpochZ 1.0: 1 Player in game." 13:07:25 "EpochZ 1.0: Waiting 180 seconds." 13:07:39 "[blckeagls] Timstamp 11249.8 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 187 Min | Missions Run 0" 13:07:41 "[A3EAI Monitor] [Uptime:03:07:31][FPS:50][Groups:5/6][Respawn:1][HC:false]" 13:07:41 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 13:08:41 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:09:07 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:10:01 "DEBUG: server event PlantSpawner" 13:10:25 "EpochZ 1.0: 1 Player in game." 13:10:25 "EpochZ 1.0: Waiting 180 seconds." 13:12:08 "_fnc_missionSpawner (187): mission timed out" 13:12:40 "[blckeagls] Timstamp 11550.1 |Dynamic Missions Running 8 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 192 Min | Missions Run 0" 13:12:40 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:12:42 "[A3EAI Monitor] [Uptime:03:12:32][FPS:50][Groups:4/4][Respawn:1][HC:false]" 13:12:42 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:12:51 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:13:01 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:13:09 "_fnc_missionSpawner (187): mission timed out" 13:13:11 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:13:13 "_fnc_dynamicUMSSpawner (187): mission timed out" 13:13:21 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:13:25 "EpochZ 1.0: 1 Player in game." 13:13:25 "EpochZ 1.0: Waiting 180 seconds." 13:13:53 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 13:13:53 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 13:13:53 Bad simulation fire, type Land_Campfire_F (class=house), a3\structures_f\civ\camping\campfire_f.p3d 13:13:53 ca\misc2\samsite\powgen_big.p3d: house, config class missing 13:13:53 xcam_pipe\bunker\bunker_01.p3d: house, config class missing 13:13:54 "WAI: position Road" 13:13:54 "WAI: Good position At [28879.8,16423.3]" 13:13:54 "WAI: [Mission: Sniper Team]: Starting... [28879.8,16423.3]" 13:13:54 "WAI: Spawned a group of 6 AI at [28887.4,16393.6,0]" 13:14:10 "_fnc_missionSpawner (187): mission timed out" 13:14:16 "_fnc_dynamicUMSSpawner (187): mission timed out" 13:14:23 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [23107.3,18153.6,0] : _markerClass BlueMarker2 : _aiDifficultyLevel blue _markerMissionName Capture Don" 13:14:41 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:15:02 "DEBUG: server event PlantSpawner" 13:15:12 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:15:21 "_fnc_dynamicUMSSpawner (187): mission timed out" 13:15:35 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:15:55 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:16:11 "_fnc_missionSpawner (187): mission timed out" 13:16:22 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:16:24 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [27094.1,26046.1,0] : _markerClass BlueMarker1 : _aiDifficultyLevel blue _markerMissionName Rescue Hostage" 13:16:26 "EpochZ 1.0: 1 Player in game." 13:16:26 "EpochZ 1.0: Waiting 180 seconds." 13:16:30 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [2252.34,22775.6] : _markerClass Mafia Pirates424883 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 13:16:48 "DEBUG: server event GardenManager" 13:16:48 "DEBUG: server event SolarChargerManager" 13:17:27 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [23753.4,10492.5] : _markerClass Mafia Pirates454838 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 13:17:40 "[blckeagls] Timstamp 11850.1 |Dynamic Missions Running 7 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 47.7612 | Server Uptime 197 Min | Missions Run 0" 13:17:42 "[A3EAI Monitor] [Uptime:03:17:32][FPS:50][Groups:4/4][Respawn:1][HC:false]" 13:17:42 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:18:25 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [19002.1,14591,0] : _markerClass RedMarker1 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 13:18:39 "[blckeagls Dynamic UMS] dynamicUMSspawner (34):: Initializing mission: _cords [2762.51,14038.4] : _markerClass Mafia Pirates364664 : _aiDifficultyLevel red _markerMissionName Mafia Fishermen" 13:19:11 "_fnc_missionSpawner (187): mission timed out" 13:19:25 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [8092.93,16713.2,0] : _markerClass RedMarker2 : _aiDifficultyLevel red _markerMissionName Bandit Camp" 13:19:27 "EpochZ 1.0: 1 Player in game." 13:19:27 "EpochZ 1.0: Waiting 180 seconds." 13:19:29 "EpochZ 1.0: Next Horde in 24 minutes." 13:19:51 "DEBUG: server event MoneyDrop" 13:19:51 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 13:20:02 "DEBUG: server event PlantSpawner" 13:20:12 "_fnc_missionSpawner (187): mission timed out" 13:22:27 "EpochZ 1.0: 1 Player in game." 13:22:27 "EpochZ 1.0: Waiting 180 seconds." 13:22:35 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:22:40 "[blckeagls] Timstamp 12150.6 |Dynamic Missions Running 7 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.4732 | Server Uptime 202 Min | Missions Run 0" 13:22:42 "[A3EAI Monitor] [Uptime:03:22:32][FPS:50][Groups:4/4][Respawn:1][HC:false]" 13:22:42 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:22:46 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:22:56 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:23:06 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:23:16 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:24:07 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:24:14 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:24:26 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [33528.7,9929.42,0] : _markerClass OrangeMarker1 : _aiDifficultyLevel orange _markerMissionName Resupply Camp" 13:24:47 "DEBUG: server event EarthQuake" 13:24:50 "DEBUG: server event ContainerSpawner" 13:25:03 "DEBUG: server event PlantSpawner" 13:25:27 "[blckeagls] missionSpawner (17):: Initializing mission: _cords [19933.4,19201.6,0] : _markerClass GreenMarker1 : _aiDifficultyLevel green _markerMissionName Medical Camp" 13:25:27 "EpochZ 1.0: 1 Player in game." 13:25:27 "EpochZ 1.0: Waiting 180 seconds." 13:26:07 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:26:38 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:26:41 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:27:39 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:27:40 "[blckeagls] Timstamp 12450.7 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.6894 | Server Uptime 207 Min | Missions Run 0" 13:27:42 "[A3EAI Monitor] [Uptime:03:27:32][FPS:50][Groups:4/4][Respawn:1][HC:false]" 13:27:42 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:27:57 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:28:27 "EpochZ 1.0: 1 Player in game." 13:28:27 "EpochZ 1.0: Waiting 180 seconds." 13:29:05 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:29:29 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:29:32 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:30:02 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12902,17470,15],[0.486328,0.0761719,0.0838623]],[-0.996155,-0.087606,-0.000915527],[-0.000921844,3.16505e-005,1]] Owners [""76561198084209108""] Locked 1" 13:30:03 "DEBUG: server event PlantSpawner" 13:31:00 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 13:31:02 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 13:31:27 "EpochZ 1.0: 1 Player in game." 13:31:27 "EpochZ 1.0: Waiting 180 seconds." 13:32:05 "STORAGE: saved to hive Garden_EPOCH Pos [[[12896,17475,11],[0.0546875,0.421875,0.681488]],[0.951294,-0.308285,0],[0,0,1]] Owners [""76561198084209108""] Locked 1" 13:32:05 "Epoch: STORAGE: 76561198084209108 created storage Garden_EPOCH at [12896.1,17475.4,11.6815] with slot 98" 13:32:23 "STORAGE: saved to hive Garden_EPOCH Pos [[[12897,17480,11],[0.65332,0.386719,0.110382]],[-0.951294,0.308285,-0],[0,0,1]] Owners [""76561198084209108""] Locked 1" 13:32:23 "Epoch: STORAGE: 76561198084209108 created storage Garden_EPOCH at [12897.7,17480.4,11.1104] with slot 99" 13:32:40 "[blckeagls] Timstamp 12750.9 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 212 Min | Missions Run 0" 13:32:43 "[A3EAI Monitor] [Uptime:03:32:33][FPS:50][Groups:4/4][Respawn:1][HC:false]" 13:32:43 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:32:47 "STORAGE: saved to hive Safe_EPOCH Pos [[[12908,17482,0],[0.207031,0.96875,0.428986]],[-0.267822,-0.963468,0],[-5.66572e-005,1.57494e-005,1]] Owners [""76561198084209108""] Locked 1" 13:32:50 "STORAGE: saved to hive Garden_EPOCH Pos [[[12911,17476,10],[0.410156,0,0.465515]],[0.95343,-0.301614,0],[0,0,1]] Owners [""76561198084209108""] Locked 1" 13:32:50 "Epoch: STORAGE: 76561198084209108 created storage Garden_EPOCH at [12911.4,17476,10.4655] with slot 100" 13:33:43 "STORAGE: saved to hive Garden_EPOCH Pos [[[12909,17471,11],[0.830078,0.0078125,0.0203552]],[0.95343,-0.301614,0],[0,0,1]] Owners [""76561198084209108""] Locked 1" 13:33:43 "Epoch: STORAGE: 76561198084209108 created storage Garden_EPOCH at [12909.8,17471,11.0204] with slot 101" 13:33:58 "STORAGE: saved to hive Garden_EPOCH Pos [[[12901,17469,11],[0.0585938,0.648438,0.765869]],[0.308289,0.951293,0],[0,-0,1]] Owners [""76561198084209108""] Locked 1" 13:33:58 "Epoch: STORAGE: 76561198084209108 created storage Garden_EPOCH at [12901.1,17469.6,11.7659] with slot 102" 13:34:27 "EpochZ 1.0: 1 Player in game." 13:34:27 "EpochZ 1.0: Waiting 180 seconds." 13:34:51 "DEBUG: server event MoneyDrop" 13:34:51 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 13:35:04 "DEBUG: server event PlantSpawner" 13:37:27 "EpochZ 1.0: 1 Player in game." 13:37:27 "EpochZ 1.0: Waiting 180 seconds." 13:37:41 "[blckeagls] Timstamp 13051.1 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.1567 | Server Uptime 217 Min | Missions Run 0" 13:37:43 "[A3EAI Monitor] [Uptime:03:37:33][FPS:51][Groups:4/4][Respawn:1][HC:false]" 13:37:43 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:39:03 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:40:04 "DEBUG: server event PlantSpawner" 13:40:14 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:40:17 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:40:28 "EpochZ 1.0: 1 Player in game." 13:40:28 "EpochZ 1.0: Waiting 180 seconds." 13:40:48 "DEBUG: server event GardenManager" 13:40:48 "DEBUG: server event SolarChargerManager" 13:42:41 "[blckeagls] Timstamp 13351.4 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50 | Server Uptime 222 Min | Missions Run 0" 13:42:43 "[A3EAI Monitor] [Uptime:03:42:33][FPS:51][Groups:4/4][Respawn:1][HC:false]" 13:42:43 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:42:45 "STORAGE: saved to hive Garden_EPOCH Pos [[[12902,17474,11],[0.740234,0.503906,0.22699]],[-0.311096,-0.950379,7.24746e-006],[-7.89426e-006,1.021e-005,1]] Owners [""76561198084209108""] Locked 1" 13:42:45 "Epoch: STORAGE: 76561198084209108 created storage Garden_EPOCH at [12902.7,17474.5,11.227] with slot 103" 13:43:14 "STORAGE: saved to hive Garden_EPOCH Pos [[[12904,17479,10],[0.208984,0.0878906,0.721039]],[-0.287231,-0.957861,0],[0,0,1]] Owners [""76561198084209108""] Locked 1" 13:43:14 "Epoch: STORAGE: 76561198084209108 created storage Garden_EPOCH at [12904.2,17479.1,10.721] with slot 104" 13:43:28 "EpochZ 1.0: 1 Player in game." 13:43:28 "EpochZ 1.0: Waiting 180 seconds." 13:43:29 "EpochZ 1.0: Next Horde in 30 minutes." 13:44:26 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:44:51 "DEBUG: server event ContainerSpawner" 13:45:04 "DEBUG: server event PlantSpawner" 13:45:06 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:45:57 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:46:07 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:46:08 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:46:28 "EpochZ 1.0: 1 Player in game." 13:46:28 "EpochZ 1.0: Waiting 180 seconds." 13:47:41 "[blckeagls] Timstamp 13651.6 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.8442 | Server Uptime 227 Min | Missions Run 0" 13:47:43 "[A3EAI Monitor] [Uptime:03:47:33][FPS:50][Groups:4/4][Respawn:1][HC:false]" 13:47:43 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:3][UAV:0][UGV:0]" 13:48:18 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:48:24 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:49:28 "EpochZ 1.0: 1 Player in game." 13:49:28 "EpochZ 1.0: Waiting 180 seconds." 13:49:48 "DEBUG: server event AirDrop" 13:49:48 "DEBUG: server event Satellite" 13:49:48 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:49:52 "DEBUG: server event MoneyDrop" 13:49:52 "DEBUG: server event \epoch_server_vip_event\EpochEvents\event1.sqf" 13:49:56 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:50:05 "DEBUG: server event PlantSpawner" 13:52:28 "EpochZ 1.0: 1 Player in game." 13:52:28 "EpochZ 1.0: Waiting 180 seconds." 13:52:41 "[blckeagls] Timstamp 13951.8 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 50.6329 | Server Uptime 232 Min | Missions Run 0" 13:52:43 "[A3EAI Monitor] [Uptime:03:52:33][FPS:50][Groups:5/5][Respawn:0][HC:false]" 13:52:43 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 13:53:51 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:53:59 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:54:32 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:54:41 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:55:05 "DEBUG: server event PlantSpawner" 13:55:26 "WAI: [Mission: The Farm]: Ended at [36436.2,13330.5]" 13:55:28 "EpochZ 1.0: 1 Player in game." 13:55:28 "EpochZ 1.0: Waiting 180 seconds." 13:55:32 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:55:36 "STORAGE: saved to hive WorkBench_EPOCH Pos [[[12905,17486,0],[0.214844,0.617188,0.319733]],[0.376465,0.926431,-0.000488281],[0.00421742,-0.00118674,0.99999]] Owners [] Locked 1" 13:57:42 "[blckeagls] Timstamp 14252 |Dynamic Missions Running 9 | UMS Running 3 | Vehicles 0 | Groups 0 | Server FPS 49.2308 | Server Uptime 237 Min | Missions Run 0" 13:57:43 "[A3EAI Monitor] [Uptime:03:57:33][FPS:50][Groups:5/5][Respawn:0][HC:false]" 13:57:43 "[A3EAI Monitor] [Static:0][Dynamic:0][Random:6][Air:2][Land:4][UAV:0][UGV:0]" 13:58:28 "EpochZ 1.0: 1 Player in game." 13:58:28 "EpochZ 1.0: Waiting 180 seconds." 13:59:01 "<infiSTAR.de>CONNECTLOG| 3h 57min | Disconnected: Solster(76561198084209108 - 5) - time: 14176.8 - serverFPS: 50.4732 [01-07-2018 15-36-18 - v259]" 13:59:01 Client: Remote object 5:0 not found 13:59:03 Warning: Cleanup player - person 2:4327 not found 13:59:05 Warning: Cleanup player - person 2:4327 not found 13:59:15 Server: Object 8:20 not found (message Type_121) 13:59:17 Server: Object 8:19 not found (message Type_121) 13:59:19 Server: Object 8:19 not found (message Type_93) 13:59:19 Server: Object 8:20 not found (message Type_93) 13:59:39 Server: Object 8:19 not found (message Type_93) 13:59:39 Server: Object 8:20 not found (message Type_93) 13:59:52 Server: Object 8:20 not found (message Type_121) 13:59:54 Server: Object 8:19 not found (message Type_121) 13:59:59 Server: Object 8:19 not found (message Type_93) 13:59:59 Server: Object 8:20 not found (message Type_93) Link to comment Share on other sites More sharing options...
C4-timah Posted October 6, 2018 Report Share Posted October 6, 2018 The first line here is followed by an entire list of everything listed twice. Sell/Buy Items? This may be the issue. 10:01:16 Unexpected stringtable format inside <Text ID="STR_CUP_lib_cz805"><Russian> You have another error unrelated (WAI ERROR) that you might want to look into 10:03:56 Error in expression <5 = [ false, Mission, 18, > 10:03:56 Error position: <Mission, 18, > 10:03:56 Error Undefined variable in expression: mission 10:03:56 File epochz\init\fn_init.sqf [epochz_fnc_init], line 995 This is my best guess. Hopefully someone else can respond that has more experience. Link to comment Share on other sites More sharing options...
megaz Posted October 6, 2018 Report Share Posted October 6, 2018 Hi C4, The items listed twice is as far as i know are from Austraila map and are not items for sale in my traders - I have No epoch traders just 6 Blackmarket ones, 5 Static and 1 roaming Link to comment Share on other sites More sharing options...
Tuhjay Posted October 15, 2018 Report Share Posted October 15, 2018 I am having trouble installing this script to my server. I have followed the instructions contained in the readme disregarding the exec edit to befilters, as an earlier post said to do. I have changed my HALV_takegive_crypto to match the post by C4 I am getting kicked for a script restriction #32. scripts.log Reveal hidden contents 14.10.2018 20:42:32: Nate (107.92.120.219:7003) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" 14.10.2018 20:50:32: Nate (107.92.120.219:28555) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" 14.10.2018 21:04:49: Nate (107.92.120.219:28555) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" 15.10.2018 19:01:26: Nate (107.92.120.219:20590) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" scripts.txt befilter Reveal hidden contents //new2 5 "BIS_fnc_dynamictext" !="\"BIS_fnc_dynamictext\"" !="'BIS_fnc_dynamictext'" 5 loadFile 5 forceRespawn !="ForceRespawnDuration" !="reviveHandleForceRespawnAction" !="forcerespawn player;" 5 setFriend 5 setAmmo 5 enableFatigue 5 setUnitRecoilCoefficient 5 setWeaponReloadingTime !="_unit setWeaponReloadingTime [_unit,_weapon,1];" !="_unit setWeaponReloadingTime [_unit,_weapon,1];" !="player fire [_muzzle, _muzzle, _item];\nplayer setWeaponReloadingTime [player, _muzzle, 0];" 5 allMissionObjects !="_alljammer = allmissionobjects 'PlotPole_EPOCH';" !="allMissionObjects \"Timeline_F\"" 5 callExtension 5 showCommandingMenu !="showCommandingMenu '';" !="showCommandingMenu '#USER:" 5 enableCollisionWith 5 setvelocity !="_smokeg setVelocity _Gvel;" !="setVelocityTarget" !="_bolt setPosATL _pos;\n_bolt setVelocity [0, 0, -10];" !="EPOCH_target setvelocitytransformation" !="_currentTarget setVelocity [0,0,-0.01];" !="_head setVelocity [\n(sin _dir * _speed), \n(cos _dir * _speed)" !="_vel = velocity this; _dir = getDir player; this setVelocity[(_vel select 0)+(sin _dir * 2),(_vel select 1)+(cos _dir * 2),(_vel select 2)];" !="_head setVelocity [random 2,random 2,10];" !="_bobber setVelocity [0,-1,-10];" !="_x setvelocity [0,0,0.1];" !="_veh setVelocity [0,0,0];" !="_this select 0 setvelocity (_this select 1)" !="_zombie setVelocityTransformation [_aslPos,_aslPos,_unitV,_unitV,_unitvDir,_vDir,_unitvUp,_unitvUp,2];" !="_smokeg setVelocity _Gvel;" 5 assignAs !"assignAsCargo" !="_unit assignAsGunner _axeCopter;" !="_driver assignAsDriver _axeCopter;" !="axeVIP assignAsDriver vehicle axeVIP;" 5 assignAsCargo !="_x assignAsCargo axeGeneralsBoat;" !="axeVIP assignAsCargo vehicle player;" !="axeVIP assignAsCargo vehicle axeVIP;" 5 allowDamage !="_unit allowDamage false;" !="_unit allowDamage true;" !="player allowDamage true;" !="vehicle player allowDamage true;" !="player allowDamage false;" !="_target allowDamage true;" !="_cargo allowDamage false;" 5 addWeaponCargo !="_acceptHolder addWeaponCargo [_wWeapon, 1] ;" !="CBA_fnc_addWeaponCargo" !="\\fnc_addWeaponCargo" !="\"addWeaponCargo" !="cba_fAddWeaponCargo" 5 onMapSingleClick !="onMapSingleClick '';" !="\"onmapsingleclick\"" 5 addMagazine !="if !(player canAdd (_x select 0)) exitWith {};\nplayer addMagazine[_x select 0, _x select 1];" !"addMagazineCargo" !="player addMagazine [_item,_count];" !="player addMagazine \"sledge_swing\";" !="player addMagazine \"Hatchet_swing\";" !="player addMagazine \"stick_swing\";" !="_wh addMagazineAmmoCargo[_item, 1, _count];" !="CBA_fnc_addMagazine" !="\\fnc_addMagazine" !="\"addMagazine" !="vehicle player addMagazineTurret" !="vehicle player addMagazineTurret" !="EPOCH_fnc_addMagazineOverflow" 5 addMagazineCargo !="_dogHolder addMagazineCargo [\"RabbitCarcass_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"Pelt_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"Venom_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"SnakeCarcass_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"ChickenCarcass_EPOCH\", 1]" !="_acceptHolder addMagazineCargo [_wAmmo, 1] ;" !="CBA_fnc_addMagazineCargo" !="\\fnc_addMagazineCargo" !="\"addMagazineCargo" !="cba_fAddMagazineCargo" 5 addItem !="_this call HS_additemtolb;false" !="{player addItemToVest _x} forEach _vestItems;" !="player addItem _item;" !="_plyr addItemToVest _missionItem;" !="axeVIP addItemToVest _item;" !="_plyr addItemToVest _missionItem;" !="EPOCH_fnc_addItemOverflow" !="CBA_fnc_addItem" !="\\fnc_addItem" !="\"addItem" !="fnc_addItemCargo" !="wH = _nearByHolder select 0;\n};\nif !(isNull _wh) then {\n_wh addItemCargoGlobal [_item,1];\n};\n};\n};\n\n_fnc_findItemInContainers = " !="player addItem 'ItemRope';" 5 addBackPack !="fnc_addBackpackCargo" 5 addMissionEventHandler !="CBA_clientID = [0, 2] select isMultiplayer;\naddMissionEventHandler [\"PlayerConnected\", {\nparams [\"_id\", \"_uid\", \"_name\"" !="addMissionEventHandler [\"EachFrame\", {call cba_common_fnc_onFrame}];" !="addMissionEventHandler [\"HandleDisconnect\"," !="addMissionEventHandler [\"Loaded\"," !="addMissionEventHandler ['Draw3D',_var + \"call Epoch_gui3DCooldownEH;\"];" !="addMissionEventHandler ['Draw3D',_var + \"call epoch_gui3dModelPosEH;\"];" !="addMissionEventHandler ['Draw3D',_var + \"call epoch_gui3dWorldPosEH;\"];" !="addMissionEventHandler [\n\"ended\",\n{\n\nBIS_fnc_missionHandlers_end = _this;" !="private _ehId = addMissionEventHandler [_event select [2], _code];" !="addMissionEventHandler [\"PlayerViewChanged\", {if (cameraView isEqualTo \"GROUP\") then {vehicle player switchCamera \"Internal\";};}];" !="addMissionEventHandler [\"EachFrame\",\n{\n\nmissionNamespace setVariable [\"BIS_" 5 removeMissionEventHandler !="removeMissionEventHandler [\"Draw3D\", _id];" !="removeMissionEventHandler [_event select [2], _x select 1];" 5 removeAllWeapons !="removeAllWeapons axeGeneral;" 5 removeAllItems 5 removeAllActions 5 setViewDistance !="setViewDistance 1600" 5 createGroup !="EPOCH_server_createGroup" !="_grp = createGroup [RESISTANCE, true];" !="if (isserver) then {\n_group = creategroup sidelogic;" !="grpVIPGeneral = createGroup [RESISTANCE, true];" !="_grp = createGroup side _plyr;" !="_grp = createGroup [_side, true];" !="_grp = createGroup [(side _plyr), true];" !="createcenter sidelogic;\n_grpLogic = creategroup sidelogic;\nbis_functions_mainscope" !="_group = createGroup [west, true];" 5 createVehicleCrew !="createvehiclecrew _x;" 5 createVehicleLocal !="\"Sign_Arrow_Direction_Yellow_F\" createVehicleLocal" !="\"#particlesource\" createVehicleLocal" !="\"#lightpoint\" createVehicleLocal" !="\"BloodSplat\" createVehicleLocal" !="[\"lightning1_F\", \"lightning2_F\"] call BIS_fnc_selectRandom;\n_lighting = _class createVehicleLocal" !="SLX_XEH_DUMMY createVehicleLocal [0, 0, 0];" !="CBA_eventHandlers = \"Logic\" createVehicleLocal [0, 0];" 5 createUnit !="_driver = _grp createUnit[\"I_UAV_AI\", position _unit, [], 0, \"CAN_COLLIDE\"];" !="axeGeneral = grpVIPGeneral createUnit [\"I_officer_F\", axeGeneralPos, [], 1, \"CAN_COLLIDE\"];" !="bis_functions_mainscope = _grpLogic createunit [\"Logic\",[9,9,9],[],0,\"none\"];" !="_unit = _grp createUnit[selectRandom _arrUnits, _pos, [], 0, \"FORM\"];" !="_driver = (group player) createUnit[\"I_UAV_AI\", position axeUAV, [], 0, \"CAN_COLLIDE\"];" 5 createAgent !="bis_revive_ratioLethal = createAgent [\"Logic\", [10,10,0], [], 0, \"CAN_COLLIDE\"];" !="_unit = createAgent[_unitClass, _targetPos, [], 256, \"FORM\"];" !="_unit = createAgent [_unitClass, _targetPos, [], 120, \"FORM\"];" !="_animal = createAgent[_randomAIClass, _animalPos, [], 5, \"NONE\"];" !="_unit = createAgent [\"Epoch_Cloak_F\", _pos, [], 0, \"CAN_COLLIDE\"];" !="_unit = createAgent [\"Epoch_Sapper_F\", _targetPos, [], 180, \"FORM\"];" !="_sapper = createAgent [\"Epoch_Sapper_F\", getPos _cage2, [], 0, \"FORM\"];" !="_unit = createAgent[_unitClass, position player, [], _zRange, \"FORM\"];" !="_animal = createAgent[_randomAIClass, _animalPos, [], 0, \"CAN_COLLIDE\"];" !="_axeSapper = createAgent [\"Epoch_Sapper_F\", _pos, [], 12, \"FORM\"];" !="_nestMate = createAgent [\"Epoch_Sapper_F\", _garrPos, [], 0, \"FORM\"];" 5 createTeam 5 createDialog !="createDialog "HS_trader_dialog";" !="createdialog 'Epoch_CamDialog'" !="createDialog \"rmx_dynamenu\";" !="createDialog \"rmx_craftingUI\";" !="createDialog \"QuickUpgrade\";" !="createDialog \"QuickTake\";" !="createDialog \"InteractBank\";" !="createdialog \"SelectGender\";" !="_handled = createdialog _dialog;" !="if !(createdialog \"InteractItem\") exitWith {};" !="createDialog _tapDiag;" !="if !(createdialog \"Trade\") exitWith {};" !="_ok = createdialog \"Interact\";" !="_ok = createdialog \"TradeNPCMenu\";" !="createDialog \"Epoch_myGroup\";" !="createDialog (if ((Epoch_my_GroupUID == \"\") && (Epoch_my_Group isEqualTo [])) then {\"EPOCH_createGrp\"} else {\"Epoch_myGroup\"});" !="createDialog \"GroupRequests\";" !="_ok = createdialog \"MissionSelect\";" !="createDialog 'Skaronator_AdminMenu';" !="createDialog \"Epoch_myTempGroup\";" !="createDialog (if ((Epoch_my_tempGroupUID == \"\") && (Epoch_my_tempGroup isEqualTo [])) then {\"EPOCH_createTempGrp\"} else {\"Epoch_myTempGroup\"});" !="createDialog \"tempGroupRequests\";" 5 createDisplay !="createDisplay \"rmx_dynamenu\";" !="createDisplay \"rmx_moveDynamicHUD\";" !="_parent createdisplay _displayClass;" !="finddisplay 151 createdisplay 'RscDisplayOptionsLayout'" !="_display createdisplay \"RscDisplayDLCPreview\";" 5 deleteMarker !="deleteMarkerLocal _mName;" 5 setMarker !="CBA_fnc_setMarkerPersistent\"" !="\\fnc_setMarkerPersistent" !="\"setMarkerPersistent" !="_mName setMarkerShapeLocal _mShape;" !="_mName setMarkerTypeLocal _mType;" !="(_x select 0) setMarkerPosLocal (position player);" !="_zoomMarker setMarkerSizeLocal" 5 createMarker !="CBA_fnc_createMarker\"" !="\\fnc_createMarker" !="\"createMarker" !="cba_fCreateMarker" !="createMarkerLocal [_mName, _mPos];" 5 assignItem !="axeVIP assignItem _item;" !="unassignItem" 5 forceAddUniform 5 removeAllMPEventHandlers 5 setDammage 5 displaySetEventHandler 5 ctrlSetEventHandler !="_ctrlButtonOK ctrlseteventhandler [\"buttonclick\"," !="ctrlSetEventHandler ['LBDblClick', '_this call" !="_buttonRespawn ctrlseteventhandler [\"buttonclick\",\"with uinamespace do {['buttonRespawn'," !="_ctrl ctrlSetEventHandler [\"mouseEnter\"" !="_ctrlBtn ctrlSetEventHandler [\"MouseButtonDblClick\", _verAct];" !="_button_gen ctrlSetEventHandler [\"ButtonClick\",_btn_code + \"(uiNamespace getVariable [\"" !="t \"#(rgb,8,8,3)color(1,1,1,0.1)\";\n_c ctrlCommit 0;\n_c ctrlSetEventHandler [\"MouseButtonUp\",format[\"['remove',%1,(_this select 1)" 5 addMPEventHandler 5 addEventHandler !"displayAddEventHandler" !"ctrlAddEventHandler" !="player addeventhandler [\"PostReset\",{BIS_EnginePPReset = true;} ];" !="player addEventHandler [_x,([\"CfgEpochClient\", _x, \"\"] call EPOCH_fnc_returnConfigEntryV2)];" !="\"CBA_fnc_addEventHandler\"" !="\\fnc_addEventHandler" !="\"addEventHandler" !="_eventFunc = _eventFunc + \"(_this select 0) addEventHandler ['Respawn', \" + str _eventFunc + \"];\";" !="_unit addEventHandler [\"hitpart\"," !="CBA_fnc_addEventHandler" !="_unit addEventHandler [_x, format ['call cba_xeh_fnc_%1', _x]];" !="_ship addEventHandler [\"AttributesChanged3DEN\"" !="addEventHandler [\"HandleDamage\",bis_fnc_reviveOnPlayerHandleDamage];" !="_unit addEventHandler [\"FiredNear\"" !="_smokeEH = _plyr addEventHandler [\"FiredNear\", \"airDropHandle setFSMVariable" !="_onContactEH = _currentTarget addEventHandler[\"EpeContactStart"" !="_object addeventhandler [\"local\",{[[_this select 0],\"bis_fnc_objectVar\"" 5 displayAddEventHandler !="(findDisplay 46) displayAddEventHandler [\"KeyDown\",\"true\"];" !="displayAddEventHandler [_x,([\"CfgEpochClient\", _x, \"\"] call EPOCH_fnc_returnConfigEntryV2)];" !="displayaddeventhandler [\"mousemoving\"," !="_display displayaddeventhandler [\"unload\",\"uinamespace setvariable ['BIS_fnc_guiMess" !="findDisplay -1337 displayAddEventHandler ['Unload'" !="_display displayaddeventhandler [\"keydown\",\"with uinamespace do {['keyDown'" !="_display displayaddeventhandler [_x,_fnc_animate];" !="Development\") then\n{\n_display displayaddeventhandler [\n\"keydown\"" !="CBA_fnc_addDisplayHandler" !="_display displayAddEventHandler [\"MouseMoving" !="private _handler = _display displayAddEventHandler [_key, _code];" !="_display displayAddEventHandler [\"KeyDown\", \"_this call cba_keybinding_fnc_onKeyDown\"" !="isplay 602};\n\n_display = (findDisplay 602);\n_display displayAddEventHandler [\"MouseButtonUp\",\"[] spawn {rmx_var_fav_selected = f" !="displayaddeventhandler\n[\n\"mousemoving\"" 5 ctrlAddEventHandler !="_control = _display displayctrl 37305; \n_control ctrladdeventhandler" !="_ctrlMap = _display displayctrl 101;\n_ctrlMap ctrladdeventhandler" !="_display displayctrl 21995;\n_assetsButton ctrladdeventhandler [\"buttonclick\"," !="_display displayctrl 2406; \n_control ctrladdeventhandler [\"buttonclick\"," !="_display displayctrl 2400;\n_control ctrladdeventhandler [\"buttonclick\"," !="ctrladdeventhandler [\"lbselchanged\"," !="ctrladdeventhandler [\n\"lbselchanged\"," !="_ButtonGeneral ctrladdeventhandler [\"buttonclick\"," !="_ctrlExecuteLocal ctrladdeventhandler [\"buttonclick\"," !="_bg ctrlAddEventHandler [\"MouseEnter\"," !="_container ctrlAddEventHandler [\"LBDblClick\",\"_this call EPOCH_itemInteractClick\"];" !="(uiNamespace getVariable 'ESP_map') ctrlAddEventHandler['Draw', '_esp_targets = EPOCH_ESPMAP_TARGETS;" !="ctrlAddEventHandler ['MouseButtonDown'" !="_ctrl ctrlSetEventHandler [\"mouseEnter\", (format [\"_c = _this select 0;" !="_ctrl ctrlSetEventHandler [\"mouseExit\", (format [\"_c = _this select 0;" !="_ctrl ctrlSetEventHandler [\"mouseButtonDown\", (format [\"call %1;\",(_buttonSettings select _e select 2)])];" !="_prevButton ctrlAddEventHandler [\"MouseButtonUp\", {_this call cba_diagnostic_fnc_debug" !="BIS_RscRespawnControlsMap_ctrlHeaderRespawnButton ctrlAddEventhandler [\"ButtonDown\"" !="_control = _display displayctrl 105;\n_control ctrladdeventhandler [\"MouseButtonUp\"" !="ctrlHeaderRespawnButton\", controlNull]) ctrlAddEventhandler [\"ButtonDown\"" !="_selected = false;\n{\n_c = _display displayCtrl _x;\n_c ctrlAddEventHandler [\"LBDrag\",\"rmx_var_favBar_Item = (_this call epoch_fav" !="_ctrlMouseArea ctrladdeventhandler [\"setfocus\",{with uinamespace do {[\"dlcClear\",[ctrlpar" !="13484 ctrlAddEventHandler [\"ButtonClick\", {[\"executeButton\"," 5 removeAllEventHandlers !"ctrlRemoveAllEventHandlers" !"displayRemoveAllEventHandlers" !="_vehicle removeAllEventHandlers \"GetOut\";" !="_sapper removeAllEventHandlers \"Hit\";\n_sapper removeAllEventHandlers \"FiredNear\";" !="_unit removeAllEventHandlers \"Hit\";\n_unit removeAllEventHandlers \"FiredNear\";" !="{_ship removeAllEventHandlers _x;} forEach [\"AttributesChanged3DEN\"" !="_zombie removeAllEventHandlers \"Hit\";" !="_zombie removeAllEventHandlers \"FiredNear\";" 5 displayRemoveAllEventHandlers !="_display displayRemoveAllEventHandlers _x;" !="if !(isMultiplayer) then { { (findDisplay 46) displayRemoveAllEventHandlers _x } forEach [\"KeyUp\", \"KeyDown\"] };" 5 removeAllMissionEventHandlers 5 ctrlRemoveAllEventHandlers !="(uiNamespace getVariable 'ESP_map') ctrlRemoveAllEventHandlers 'Draw';" !="ctrlAddEventHandler ['MouseButtonDown'" 5 removeEventHandler !="displayRemoveEventHandler" !="player removeEventHandler ['Fired', 0];" !="_currentTarget removeEventHandler[\"EpeContactStart\", _onContactEH]" !=" [_adminVar,objnull];\npublicvariable _adminVar;\nplayer removeeventhandler [\"respawn\",_respawn];" !="_plyr removeEventHandler [\"FiredNear\", _smokeEH];" !="player removeEventHandler [_ehKey, 0];" !="player removeEventHandler [_x, 0];" !="\"CBA_fnc_removeEventHandler\"" !="\\fnc_removeEventHandler" !="\"removeEventHandler" 5 switchCamera !="vehicle player switchCamera" !="_antagonist switchCamera \"Internal\";" 5 remoteControl !="fn_moduleRemoteControl.sqf" !="\"BIS_fnc_moduleRemoteControl\"" 5 drawIcon3D !="EPOCH_drawIcon3dStability" !="EPOCH_drawIcon3d" !="drawIcon3D[\"\x\addons\a3_epoch_code\Data\Member.paa\",_color,_pos,1,1,0,_text,1,0.025,\"PuristaMedium\"];\n}forEach EPOCH_ESP_TARGETS;" !="drawIcon3D[format[\"\x\addons\a3_epoch_code\Data\UI\loading_bar_%1.paa\",_stability],_color,(getPosATL EPOCH_stabilityTarget),5,5,0,\"\",1,0.05,\"PuristaMedium\"];" !="drawIcon3D[format[\"\x\addons\a3_epoch_code\Data\UI\loading_bar_%1.paa\",_num],_color,_pos,4,4,0,\"\",1,0.05,\"PuristaMedium\"];" !="if (_condition) then {\ndrawIcon3D [_icon, _color, _position, _sizeX, _sizeY, _angle, _text," !="drawIcon3D [\"\A3\UI_F_MP_Mark\Data\Tasks\Misc\background.paa\"" !="drawIcon3D\n[\n(_x getVariable [\"bis_fnc_reviveGet3dIcons_textures" !="drawIcon3D[\"x\addons\a3_epoch_code\Data\UI\snap_ca.paa\"" !="drawIcon3D [\"\a3\ui_f\data\map\diary\icons\unitgroup_ca.paa\"" 5 drawLine3D !="{\nfor [{_i = 1}, {_i < count _x}, {_i = _i + 1}] do {\ndrawLine3D [_x select (_i - 1), _x select _i, ((BIS_tracedShooter getVari" !="drawLine3D [ASLToAGL (getposasl _SnapObj1),ASLToAGL (getposasl _SnapObj2), [1,0,0,1]];" 5 ctrlCreate !="_parent ctrlcreate [\"RscMessageBox\",2351];" !="_c = _dsp ctrlCreate [\"rmx_drag_RscActivePicture\", call epoch_getIDC];" !="_c = _dsp ctrlCreate [\"rmx_t1\", call epoch_getIDC];" !="ctrlCreate [\"RscProgress\",_idc + 1];" !="ctrlCreate [\"rmx_rscControlsGroup\"" !="_ListGroup = _display ctrlCreate [\"RscControlsGroupNoHScrollbars\"" !="ctrlCreate [_x,call _getIDC];" !="_mainGrp = _display ctrlCreate [\"Epoch_main_config_group\",_value];" !="ctrlCreate !="_prevButton = _display ctrlCreate [\"RscButtonMenu\", 90110, _dbg];" [\"RscControlsGroupNoScrollbars\",call epoch_getIDC];" !="ctrlCreate [\"rmx_rscPicture\",(66600 + _e)];" !="ctrlCreate [\"RscStructuredText\",call epoch_getIDC];" !="_bar = _display ctrlCreate [\"RscCustomProgress\"" !="_group = _dsp ctrlCreate [\"rmx_rscControlsGroup\", call Epoch_getIDC]" !="_control = _display ctrlCreate [\"RscControlsGroupNoScrollbars\", 5678910];" 5 ctrlClassName 5 ctrlModel 5 ctrlModelDirection 5 ctrlModelSide 5 ctrlModelUp 5 ctrlSetDirection 5 deleteVehicleCrew !="fn_deleteVehicleCrew.sqf" !="\"BIS_fnc_deleteVehicleCrew\"" 5 selectPlayer !="selectPlayer _playerObject;" 5 setGroupIconsVisible 5 setGroupIconsVisible 5 setGroupIconsSelectable 5 setGroupIconParams 5 addGroupIcon server.rpt Reveal hidden contents ===================================================================== == C:\TCAFiles\Users\nathanielj1\15046\arma3server.exe == C:\TCAFiles\Users\nathanielj1\15046\arma3server.exe -ip=181.214.149.23 -port=2302 -profiles=Arma3Config -name=Arma3Config -config=Arma3Config\config.cfg -cfg=Arma3Config\arma3.cfg -servermod="@EpochHive;" -mod="@Epoch;" -autoInit -loadMissionToMemory Original output filename: Arma3Retail_Server Exe timestamp: 2018/07/24 22:39:33 Current time: 2018/10/15 18:57:13 Type: Public Build: Stable Version: 1.84.144923 Allocator: C:\TCAFiles\Users\nathanielj1\15046\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0] PhysMem: 64 GiB, VirtMem : 4.0 GiB, AvailPhys : 8.9 GiB, AvailVirt : 3.9 GiB, AvailPage : 20 GiB ===================================================================== 18:57:13 SteamAPI initialization failed. Steam features won't be accessible! 18:57:13 Cannot register unknown string STR_3DEN_CAMERA_NAME 18:57:13 Cannot register unknown string STR_DIFF_SCENE_ONLY 18:57:13 Cannot register unknown string STR_DIFF_SCENE_AND_MAP 18:57:13 Initializing stats manager. 18:57:13 Stats config disabled. 18:57:13 sessionID: 7cd8961d088e6ac9e1ff14e997c2f68dd29ffaa3 18:57:19 Unsupported language English in stringtable 18:57:19 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice 18:57:21 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin) 18:57:21 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin) 18:57:21 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin) 18:57:21 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin) 18:57:21 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin) 18:57:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin) 18:57:22 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin) 18:57:22 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin) 18:57:22 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin) 18:57:22 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin) 18:57:22 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin) 18:57:22 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin) 18:57:22 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin) 18:57:22 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin) 18:57:22 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin) 18:57:22 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin) 18:57:22 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably). 18:57:22 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin) 18:57:22 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin) 18:57:22 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin) 18:57:22 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin) 18:57:22 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin) 18:57:22 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin) 18:57:22 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin) 18:57:22 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin) 18:57:22 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin) 18:57:22 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin) 18:57:22 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin) 18:57:22 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin) 18:57:22 Updating base class ScrollBar->ScrollBar, by a3\ui_f_tank\config.bin/RscListNBox/ListScrollBar/ (original a3\ui_f_tank\config.bin) 18:57:23 Initializing Steam Manager 18:57:23 unable to load subscribed content list. list will be updated from steam 18:57:23 unable to load published content list. list will be updated from steam 18:57:23 unable to load cached items meta info. save and update functionality will be broken 18:57:23 Steam Manager initialized. 18:57:23 18:57:23 ==== Loaded addons ==== 18:57:23 18:57:23 dta\bin.pbo - 144923 18:57:23 dta\core.pbo - 129618 18:57:23 dta\languagecore_f.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a2_epoch_weapons.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets_1.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets_2.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets_3.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_code.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_community.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_configs.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_language.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_structures.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_vehicles.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_vehicles_1.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_weapons.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\armor_f_tank.ebo - 132036 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\cargoposes_f_tank.ebo - 128283 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\characters_f_tank.ebo - 129798 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\data_f_tank.ebo - 128203 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\dubbing_f_tank.ebo - 127958 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\editorpreviews_f_tank.ebo - 131632 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\functions_f_tank.ebo - 125996 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\languagemissions_f_tank.ebo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\language_f_tank.ebo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\missions_f_tank.ebo - 130984 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\missions_f_tank_data.ebo - 128937 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\modules_f_tank.ebo - 129574 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\music_f_tank.ebo - 127912 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\props_f_tank.ebo - 131702 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\sounds_f_tank.ebo - 131364 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\structures_f_tank.ebo - 131803 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\ui_f_tank.ebo - 128232 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\weapons_f_tank.pbo - 131482 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\characters_f_tacops.ebo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\data_f_tacops.ebo - 126731 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\dubbing_f_tacops.ebo - 129340 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\functions_f_tacops.ebo - 124382 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\languagemissions_f_tacops.ebo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\language_f_tacops.ebo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\missions_f_tacops.ebo - 131995 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\modules_f_tacops.ebo - 124298 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\music_f_tacops.ebo - 124064 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\sounds_f_tacops.ebo - 123795 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\ui_f_tacops.ebo - 124116 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\air_f_orange.pbo - 132035 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\cargoposes_f_orange.pbo - 126225 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\characters_f_orange.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\data_f_orange.pbo - 121095 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\dubbing_f_orange.pbo - 121689 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\editorpreviews_f_orange.pbo - 123173 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\functions_f_orange.pbo - 128287 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\languagemissions_f_orange.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\language_f_orange.pbo - 132196 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\missions_f_orange.pbo - 126711 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\modules_f_orange.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\music_f_orange.pbo - 120725 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\props_f_orange.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\soft_f_orange.pbo - 132239 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\sounds_f_orange.pbo - 122301 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\structures_f_orange.pbo - 132196 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\supplies_f_orange.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\ui_f_orange.pbo - 123398 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\weapons_f_orange.pbo - 130995 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\armor_f_argo.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\characters_f_patrol.pbo - 129998 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\data_f_argo.pbo - 128209 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\data_f_patrol.pbo - 121287 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\editorpreviews_f_argo.pbo - 121102 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\functions_f_patrol.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\languagemissions_f_patrol.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\language_f_argo.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\language_f_patrol.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden.pbo - 129554 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden_data.pbo - 126137 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden_data_layers.pbo - 123441 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden_scenes_f.pbo - 120026 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\missions_f_patrol.pbo - 126663 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\modules_f_patrol.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\music_f_argo.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\props_f_argo.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\rocks_f_argo.pbo - 123488 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\sounds_f_patrol.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\structures_f_argo.pbo - 128082 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\ui_f_patrol.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\vegetation_f_argo.pbo - 123488 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\weapons_f_patrol.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\air_f_jets.pbo - 132072 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\anims_f_jets.pbo - 123210 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\boat_f_destroyer.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\boat_f_jets.pbo - 129607 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\cargoposes_f_jets.pbo - 126225 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\characters_f_jets.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\data_f_destroyer.pbo - 132156 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\data_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\data_f_sams.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\dubbing_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\editorpreviews_f_destroyer.pbo - 132141 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\editorpreviews_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\editorpreviews_f_sams.pbo - 132141 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\functions_f_destroyer.pbo - 132075 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\functions_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\languagemissions_f_jets.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\language_f_destroyer.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\language_f_jets.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\language_f_sams.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\missions_f_jets.pbo - 130755 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\modules_f_jets.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\music_f_jets.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\props_f_destroyer.pbo - 132141 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\props_f_jets.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\sounds_f_jets.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\static_f_destroyer.pbo - 132329 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\static_f_jets.pbo - 131969 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\static_f_sams.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\ui_f_jets.pbo - 126137 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\weapons_f_destroyer.pbo - 132155 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\weapons_f_jets.pbo - 131383 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\weapons_f_sams.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\air_f_exp.pbo - 132062 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\anims_f_exp.pbo - 126506 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\armor_f_exp.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\boat_f_exp.pbo - 129747 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\cargoposes_f_exp.pbo - 126224 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\characters_f_exp.pbo - 129738 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\data_f_exp.pbo - 128203 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_f_exp.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp.pbo - 119458 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\editorpreviews_f_exp.pbo - 126519 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\functions_f_exp.pbo - 132366 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\languagemissions_f_exp.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\language_f_exp.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_data_exp.pbo - 123499 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka.pbo - 130033 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka_data.pbo - 123523 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka_data_layers.pbo - 121192 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoa_scenes_f.pbo - 123527 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\missions_f_exp.pbo - 132366 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\missions_f_exp_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\missions_f_exp_video.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\modules_f_exp.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\music_f_exp.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\music_f_exp_music.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\props_f_exp.pbo - 130646 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\rocks_f_exp.pbo - 129683 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\soft_f_exp.pbo - 130182 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\sounds_f_exp.pbo - 131659 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\static_f_exp.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp.pbo - 132109 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_civilian.pbo - 131934 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_commercial.pbo - 123430 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_cultural.pbo - 123423 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_data.pbo - 123431 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_industrial.pbo - 123429 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_infrastructure.pbo - 132117 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\supplies_f_exp.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\ui_f_exp.pbo - 123398 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\vegetation_f_exp.pbo - 127271 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\weapons_f_exp.pbo - 131546 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\anims_f_mark.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\characters_f_mark.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\data_f_mark.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\dubbing_f_mark.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\dubbing_f_mp_mark.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\functions_f_mark.pbo - 129645 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\functions_f_mp_mark.pbo - 129434 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\languagemissions_f_mark.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\languagemissions_f_mp_mark.pbo - 132106 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\language_f_mark.pbo - 132105 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\language_f_mp_mark.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mark.pbo - 122301 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mark_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mark_video.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mp_mark.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mp_mark_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\modules_f_mark.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\modules_f_mp_mark.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\music_f_mark.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\music_f_mark_music.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\sounds_f_mark.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\static_f_mark.pbo - 130728 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\structures_f_mark.pbo - 123419 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\supplies_f_mark.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\ui_f_mark.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\ui_f_mp_mark.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\weapons_f_mark.pbo - 131460 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\air_f_heli.pbo - 132035 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\anims_f_heli.pbo - 123210 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\boat_f_heli.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\cargoposes_f_heli.pbo - 126231 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\data_f_heli.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\dubbing_f_heli.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\functions_f_heli.pbo - 123022 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\languagemissions_f_heli.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\language_f_heli.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\missions_f_heli.pbo - 129397 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\missions_f_heli_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\missions_f_heli_video.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\modules_f_heli.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\music_f_heli.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\music_f_heli_music.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\soft_f_heli.pbo - 129742 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\sounds_f_heli.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\structures_f_heli.pbo - 129596 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\supplies_f_heli.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\ui_f_heli.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\anims_f_kart.pbo - 123210 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\characters_f_kart.pbo - 120162 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\data_f_kart.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\languagemissions_f_kart.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\language_f_kart.pbo - 132105 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\missions_f_kart.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\missions_f_kart_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\modules_f_kart.pbo - 128288 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\modules_f_kart_data.pbo - 124178 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\soft_f_kart.pbo - 129741 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\sounds_f_kart.pbo - 125381 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\structures_f_kart.pbo - 123419 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\ui_f_kart.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\weapons_f_kart.pbo - 120217 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\data_f_curator.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\data_f_curator_music.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\functions_f_curator.pbo - 123333 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\language_f_curator.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\missions_f_curator.pbo - 121570 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\modules_f_curator.pbo - 128381 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\ui_f_curator.pbo - 130996 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_core.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_debris_event.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_events.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_settings.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_vip_event.pbo - unknown 18:57:23 addons\3den.pbo - 131733 18:57:23 addons\3den_language.pbo - 132107 18:57:23 addons\a3.pbo - unknown 18:57:23 addons\air_f.pbo - 132032 18:57:23 addons\air_f_beta.pbo - 132118 18:57:23 addons\air_f_epb.pbo - 132034 18:57:23 addons\air_f_epc.pbo - 129848 18:57:23 addons\air_f_gamma.pbo - 130580 18:57:23 addons\animals_f.pbo - 131659 18:57:23 addons\animals_f_beta.pbo - 123208 18:57:23 addons\anims_f.pbo - 127133 18:57:23 addons\anims_f_bootcamp.pbo - 123209 18:57:23 addons\anims_f_data.pbo - 127133 18:57:23 addons\anims_f_epa.pbo - 129908 18:57:23 addons\anims_f_epc.pbo - 121358 18:57:23 addons\anims_f_exp_a.pbo - 123209 18:57:23 addons\armor_f.pbo - 129739 18:57:23 addons\armor_f_beta.pbo - 132035 18:57:23 addons\armor_f_epb.pbo - 129739 18:57:23 addons\armor_f_epc.pbo - 129739 18:57:23 addons\armor_f_gamma.pbo - 132036 18:57:23 addons\baseconfig_f.pbo - 119457 18:57:23 addons\boat_f.pbo - 132036 18:57:23 addons\boat_f_beta.pbo - 132036 18:57:23 addons\boat_f_epc.pbo - 131911 18:57:23 addons\boat_f_gamma.pbo - 127529 18:57:23 addons\cargoposes_f.pbo - 128420 18:57:23 addons\characters_f.pbo - 130081 18:57:23 addons\characters_f_beta.pbo - 129738 18:57:23 addons\characters_f_bootcamp.pbo - 129738 18:57:23 addons\characters_f_epa.pbo - 129738 18:57:23 addons\characters_f_epb.pbo - 129738 18:57:23 addons\characters_f_epc.pbo - 129738 18:57:23 addons\characters_f_gamma.pbo - 129738 18:57:23 addons\data_f.pbo - 132155 18:57:23 addons\data_f_bootcamp.pbo - 129618 18:57:23 addons\data_f_exp_a.pbo - 119457 18:57:23 addons\data_f_exp_b.pbo - 119457 18:57:23 addons\drones_f.pbo - 132036 18:57:23 addons\dubbing_f.pbo - 119457 18:57:23 addons\dubbing_f_beta.pbo - 119457 18:57:23 addons\dubbing_f_bootcamp.pbo - 119457 18:57:23 addons\dubbing_f_epa.pbo - 119457 18:57:23 addons\dubbing_f_epb.pbo - 119457 18:57:23 addons\dubbing_f_epc.pbo - 119457 18:57:23 addons\dubbing_f_gamma.pbo - 122449 18:57:23 addons\dubbing_radio_f.pbo - 119457 18:57:23 addons\dubbing_radio_f_data_eng.pbo - 119457 18:57:23 addons\dubbing_radio_f_data_engb.pbo - 119458 18:57:23 addons\dubbing_radio_f_data_gre.pbo - 119458 18:57:23 addons\dubbing_radio_f_data_per.pbo - 119458 18:57:23 addons\dubbing_radio_f_data_vr.pbo - 119458 18:57:23 addons\editorpreviews_f.pbo - 128120 18:57:23 addons\editor_f.pbo - 121103 18:57:23 addons\functions_f.pbo - 132155 18:57:23 addons\functions_f_bootcamp.pbo - 129770 18:57:23 addons\functions_f_epa.pbo - 119458 18:57:23 addons\functions_f_epc.pbo - 119458 18:57:23 addons\functions_f_exp_a.pbo - 122619 18:57:23 addons\languagemissions_f.pbo - 132104 18:57:23 addons\languagemissions_f_beta.pbo - 132104 18:57:23 addons\languagemissions_f_bootcamp.pbo - 132107 18:57:23 addons\languagemissions_f_epa.pbo - 132104 18:57:23 addons\languagemissions_f_epb.pbo - 132104 18:57:23 addons\languagemissions_f_epc.pbo - 132123 18:57:23 addons\languagemissions_f_exp_a.pbo - 132107 18:57:23 addons\languagemissions_f_gamma.pbo - 132104 18:57:23 addons\language_f.pbo - 132107 18:57:23 addons\language_f_beta.pbo - 132107 18:57:23 addons\language_f_bootcamp.pbo - 132104 18:57:23 addons\language_f_epa.pbo - 132104 18:57:23 addons\language_f_epb.pbo - 132107 18:57:23 addons\language_f_epc.pbo - 132104 18:57:23 addons\language_f_exp_a.pbo - 132104 18:57:23 addons\language_f_exp_b.pbo - 132104 18:57:23 addons\language_f_gamma.pbo - 132107 18:57:23 addons\map_altis.pbo - 127995 18:57:23 addons\map_altis_data.pbo - 123439 18:57:23 addons\map_altis_data_layers.pbo - 123456 18:57:23 addons\map_altis_data_layers_00_00.pbo - 0000 18:57:23 addons\map_altis_data_layers_00_01.pbo - 0000 18:57:23 addons\map_altis_data_layers_01_00.pbo - 0000 18:57:23 addons\map_altis_data_layers_01_01.pbo - 0000 18:57:23 addons\map_altis_scenes_f.pbo - 119459 18:57:23 addons\map_data.pbo - 127098 18:57:23 addons\map_stratis.pbo - 129518 18:57:23 addons\map_stratis_data.pbo - 122905 18:57:23 addons\map_stratis_data_layers.pbo - 122917 18:57:23 addons\map_stratis_scenes_f.pbo - 119459 18:57:23 addons\map_vr.pbo - 131719 18:57:23 addons\map_vr_scenes_f.pbo - 119459 18:57:23 addons\misc_f.pbo - 119459 18:57:23 addons\missions_f.pbo - 129735 18:57:23 addons\missions_f_beta.pbo - 122470 18:57:23 addons\missions_f_beta_data.pbo - 119459 18:57:23 addons\missions_f_beta_video.pbo - 119459 18:57:23 addons\missions_f_bootcamp.pbo - 129645 18:57:23 addons\missions_f_bootcamp_data.pbo - 119459 18:57:23 addons\missions_f_bootcamp_video.pbo - 119459 18:57:23 addons\missions_f_data.pbo - 119459 18:57:23 addons\missions_f_epa.pbo - 132216 18:57:23 addons\missions_f_epa_data.pbo - 119459 18:57:23 addons\missions_f_epa_video.pbo - 119459 18:57:23 addons\missions_f_epb.pbo - 119459 18:57:23 addons\missions_f_epc.pbo - 119459 18:57:23 addons\missions_f_exp_a.pbo - 121496 18:57:23 addons\missions_f_exp_a_data.pbo - 119459 18:57:23 addons\missions_f_gamma.pbo - 131918 18:57:23 addons\missions_f_gamma_data.pbo - 119459 18:57:23 addons\missions_f_gamma_video.pbo - 119459 18:57:23 addons\missions_f_video.pbo - 119459 18:57:23 addons\modules_f.pbo - 124453 18:57:23 addons\modules_f_beta.pbo - 119459 18:57:23 addons\modules_f_beta_data.pbo - 119459 18:57:23 addons\modules_f_bootcamp.pbo - 119459 18:57:23 addons\modules_f_data.pbo - 122470 18:57:23 addons\modules_f_epb.pbo - 119459 18:57:23 addons\modules_f_exp_a.pbo - 119459 18:57:23 addons\music_f.pbo - 119459 18:57:23 addons\music_f_bootcamp.pbo - 119459 18:57:23 addons\music_f_bootcamp_music.pbo - 119459 18:57:23 addons\music_f_epa.pbo - 119459 18:57:23 addons\music_f_epa_music.pbo - 119459 18:57:23 addons\music_f_epb.pbo - 119459 18:57:23 addons\music_f_epb_music.pbo - 119459 18:57:23 addons\music_f_epc.pbo - 119459 18:57:23 addons\music_f_epc_music.pbo - 119477 18:57:23 addons\music_f_music.pbo - 119477 18:57:23 addons\plants_f.pbo - 126807 18:57:23 addons\props_f_exp_a.pbo - 129371 18:57:23 addons\roads_f.pbo - 127271 18:57:23 addons\rocks_f.pbo - 127271 18:57:23 addons\signs_f.pbo - 127272 18:57:23 addons\soft_f.pbo - 132036 18:57:23 addons\soft_f_beta.pbo - 132036 18:57:23 addons\soft_f_bootcamp.pbo - 129739 18:57:23 addons\soft_f_epc.pbo - 129739 18:57:23 addons\soft_f_gamma.pbo - 131376 18:57:23 addons\sounds_f.pbo - 132162 18:57:23 addons\sounds_f_arsenal.pbo - 127887 18:57:23 addons\sounds_f_bootcamp.pbo - 119477 18:57:23 addons\sounds_f_characters.pbo - 121082 18:57:23 addons\sounds_f_environment.pbo - 120046 18:57:23 addons\sounds_f_epb.pbo - 126923 18:57:23 addons\sounds_f_epc.pbo - 125380 18:57:23 addons\sounds_f_exp_a.pbo - 119477 18:57:23 addons\sounds_f_sfx.pbo - 119477 18:57:23 addons\sounds_f_vehicles.pbo - 128448 18:57:23 addons\static_f.pbo - 132036 18:57:23 addons\static_f_beta.pbo - 122642 18:57:23 addons\static_f_gamma.pbo - 122615 18:57:23 addons\structures_f.pbo - 131287 18:57:23 addons\structures_f_bootcamp.pbo - 123488 18:57:23 addons\structures_f_data.pbo - 130046 18:57:23 addons\structures_f_epa.pbo - 123407 18:57:23 addons\structures_f_epb.pbo - 126137 18:57:23 addons\structures_f_epc.pbo - 123407 18:57:23 addons\structures_f_exp_a.pbo - 123423 18:57:23 addons\structures_f_households.pbo - 129369 18:57:23 addons\structures_f_ind.pbo - 130947 18:57:23 addons\structures_f_mil.pbo - 127270 18:57:23 addons\structures_f_wrecks.pbo - 129371 18:57:23 addons\uifonts_f.pbo - 119478 18:57:23 addons\uifonts_f_data.pbo - 128439 18:57:23 addons\ui_f.pbo - 131720 18:57:23 addons\ui_f_bootcamp.pbo - 119478 18:57:23 addons\ui_f_data.pbo - 129859 18:57:23 addons\ui_f_exp_a.pbo - 119478 18:57:23 addons\weapons_f.pbo - 132157 18:57:23 addons\weapons_f_beta.pbo - 130487 18:57:23 addons\weapons_f_bootcamp.pbo - 124358 18:57:23 addons\weapons_f_epa.pbo - 124514 18:57:23 addons\weapons_f_epb.pbo - 124216 18:57:23 addons\weapons_f_epc.pbo - 130416 18:57:23 addons\weapons_f_gamma.pbo - 120217 18:57:23 18:57:23 ======================= 18:57:23 18:57:23 ============================================================================================= List of mods =============================================================================================== 18:57:23 modsReadOnly = true 18:57:23 safeModsActivated = false 18:57:23 customMods = true 18:57:23 hash = 'D11197DD33109AAEF101874F9CD69E78C95749A1' 18:57:23 hashShort = '24b64821' 18:57:23 name | modDir | default | origin | hash | hashShort | fullPath 18:57:23 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 18:57:23 Epoch Mod 1.2.0 | @Epoch | false | GAME DIR | 02ed17fb0b0b859b45ac71ba84bd2285d66b3a71 | 4efd885a | C:\TCAFiles\Users\nathanielj1\15046\@Epoch 18:57:23 Arma 3 DLC Bundle 2 | dlcbundle2 | true | NOT FOUND | | | 18:57:23 Arma 3 DLC Bundle 1 | dlcbundle | true | NOT FOUND | | | 18:57:23 Arma 3 Tanks | tank | true | GAME DIR | 2bb31a61f207ce3731c49bc04f74f83869e9d520 | 3c916866 | C:\TCAFiles\Users\nathanielj1\15046\tank 18:57:23 Arma 3 Tac-Ops | tacops | true | GAME DIR | 2f25d6c15d999303bfeafc6acc5ea03d366f6180 | 80a05d1 | C:\TCAFiles\Users\nathanielj1\15046\tacops 18:57:23 Arma 3 Laws of War | orange | true | GAME DIR | d8184520c36a84101cd0c179f415f720ec3827ac | e6b18e89 | C:\TCAFiles\Users\nathanielj1\15046\orange 18:57:23 Arma 3 Malden | argo | true | GAME DIR | 00f37f3df7324bde5a9c6948c4209dd2bfc523fb | e63cbefc | C:\TCAFiles\Users\nathanielj1\15046\argo 18:57:23 Arma 3 Jets | jets | true | GAME DIR | 304f5089d60d4023701471d276626aa2809f833a | b486847 | C:\TCAFiles\Users\nathanielj1\15046\jets 18:57:23 Arma 3 Apex | expansion | true | GAME DIR | 2cf0f107eb7e4097fecdbb598a99dbac0c8d5f22 | d938f4af | C:\TCAFiles\Users\nathanielj1\15046\expansion 18:57:23 Arma 3 Marksmen | mark | true | GAME DIR | b494f3c091d8febad254479f4e5cfb748423110c | bdcf5b5e | C:\TCAFiles\Users\nathanielj1\15046\mark 18:57:23 Arma 3 Helicopters | heli | true | GAME DIR | b3b5c6ce05bfcb23cda002553f2bdfab7d464980 | e345e686 | C:\TCAFiles\Users\nathanielj1\15046\heli 18:57:23 Arma 3 Karts | kart | true | GAME DIR | b0986e5d7cae802e2fcb334c6344535637b9acf8 | f58753fb | C:\TCAFiles\Users\nathanielj1\15046\kart 18:57:23 Arma 3 Zeus | curator | true | GAME DIR | 08d04c76323ed7cecf16b535abbf3a89e6fa1fba | 36cc0e59 | C:\TCAFiles\Users\nathanielj1\15046\curator 18:57:23 Arma 3 | A3 | true | NOT FOUND | | | 18:57:23 @EpochHive | @EpochHive | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\nathanielj1\15046\@EpochHive 18:57:23 ========================================================================================================================================================================================================== 18:57:23 InitSound ... 18:57:23 InitSound - complete 18:57:23 PhysX3 SDK Init started ... 18:57:23 PhysX3 SDK Init ended. 18:57:25 core\skyobject\skyobject.p3d: No geometry and no visual shape 18:57:25 a3\data_f\krater.p3d: No geometry and no visual shape 18:57:25 a3\data_f\koule.p3d: No geometry and no visual shape 18:57:26 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted. a3_characters_f 18:57:26 Loading movesType CfgGesturesMale 18:57:26 Creating action map cache 18:57:26 MovesType CfgGesturesMale load time 47 ms 18:57:26 Loading movesType CfgMovesMaleSdr 18:57:26 Reading cached action map data 18:57:27 MovesType CfgMovesMaleSdr load time 1358 ms 18:57:27 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape 18:57:27 VoteThreshold must be in 0..1 range. Defaulting to 0.5 18:57:27 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303 18:57:27 Steam AppId from steam_appid.txt: 107410 18:57:28 Starting mission: 18:57:28 Mission file: epoch (__cur_mp) 18:57:28 Mission world: Altis 18:57:28 Mission directory: mpmissions\__cur_mp.Altis\ 18:57:28 a3\data_f\blesk1.p3d: No geometry and no visual shape 18:57:28 a3\data_f\blesk2.p3d: No geometry and no visual shape 18:57:28 a3\data_f\raindrop.p3d: No geometry and no visual shape 18:57:28 a3\map_stratis\data\obloha.p3d: No geometry and no visual shape 18:57:28 a3\data_f\stars.p3d: No geometry and no visual shape 18:57:28 a3\map_stratis\data\horizont.p3d: No geometry and no visual shape 18:57:28 a3\data_f\rainbow.p3d: No geometry and no visual shape 18:57:32 Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 18:57:32 Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 18:57:32 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 18:57:32 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 18:57:32 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire 18:57:34 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:34 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:34 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:34 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:35 "CfgEpochCoreServerFunctions" 18:57:35 "Epoch: Advanced Vehicle Repair Enabled" 18:57:35 "Loading Functions: CfgServerFunctions" 18:57:35 Connected to Steam servers 18:57:35 "Epoch: Starting ArmA3 Epoch Server, Version 1.2.0. Note: If server crashes directly after this point check that Redis is running and the connection info is correct." 18:57:35 CallExtension loaded: epochserver (C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\epochserver.dll) [] [] 18:57:35 "Epoch: Init Variables" 18:57:35 "Loading config..." 18:57:35 c:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing! 18:57:35 Mission id: cc5f3723dbbed9ef61f7e2ee3626a9986edceaf8 18:57:35 Attempt to override final function - bis_fnc_storeparamsvalues_data 18:57:35 Attempt to override final function - epoch_dyn_bankbalance 18:57:35 Attempt to override final function - epoch_dyn_resetgroup 18:57:35 Attempt to override final function - epoch_dyn_groupupdate 18:57:35 Attempt to override final function - epoch_dyn_groupuidupdate 18:57:35 Attempt to override final function - epoch_dyn_healplayer 18:57:35 Attempt to override final function - epoch_dyn_tradecomplete 18:57:35 Attempt to override final function - epoch_dyn_resettempgroup 18:57:35 Attempt to override final function - epoch_dyn_tempgroupupdate 18:57:35 Attempt to override final function - epoch_dyn_tempgroupuidupdate 18:57:35 Attempt to override final function - epoch_emdpgmjm 18:57:35 "Epoch: Set Real Time: [2018,10,15,18,57,35]" 18:57:35 "Epoch: Start Hive, Instance ID: '15046'" 18:57:35 "Epoch: Init Connect/Disconnect handlers" 18:57:35 "Epoch: Setup Side Settings" 18:57:35 "Epoch: Setup World Settings for Altis" 18:57:35 "Epoch: Loading buildings" 18:57:35 Attempt to override final function - oqurxuqme 18:57:35 Attempt to override final function - olsaym 18:57:35 Attempt to override final function - ycochmgf 18:57:35 Attempt to override final function - iqxpcxm 18:57:35 "[HSBlackmarket] Server Loading functions" 18:57:35 "[HSBlackmarket] Server adding PVEvent" 18:57:35 "[HSBlackmarket] Server Building traders ..." 18:57:35 "[HSBlackmarket]: Selected blacklisted areas for world: Altis" 18:57:35 "[HSBlackmarket]: Reverted _mindist '1562.5' to avoid problems" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (081107) [8164.07,10714.5]" 18:57:36 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 18:57:36 No speaker given for 'Panas Strambopoulos' 18:57:36 "[HSBlackmarket] Server: loading 'HALV_takegive_crypto.sqf'" 18:57:36 "[HSBlackmarket] Server: loading 'HALV_takegive' PVEvent" 18:57:36 a3\structures_f\mil\flags\flag_asym_f.p3d: No geometry and no visual shape 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 "Epoch: Loading teleports and static props" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (238159) [23881.8,15991.1]" 18:57:36 No speaker given for 'Vasilis Savalas' 18:57:36 a3\structures_f\mil\flags\flag_f.p3d: No geometry and no visual shape 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (147209) [14754.5,20966.3]" 18:57:36 No speaker given for 'Apostolos Papageorgiou' 18:57:36 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 "Epoch: Loading NPC traders" 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (108138) [10823.2,13889.5]" 18:57:36 No speaker given for 'Argyris Costas' 18:57:36 a3\characters_f_gamma\heads\glasses\g_aviators.p3d: No geometry and no visual shape 18:57:36 No speaker given for 'Pan Chong' 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 No speaker given for 'Hamidi Gowon' 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (210102) [21020.3,10225.6]" 18:57:36 No speaker given for 'Dimitris Cosmos' 18:57:36 a3\weapons_f\acc\reticle_nlaw.p3d: No geometry and no visual shape 18:57:36 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:37 "Epoch: Spawning NPC traders" 18:57:37 "Epoch: Loading vehicles" 18:57:37 a3\air_f\data\plane_flag_medium_f.p3d: No geometry and no visual shape 18:57:37 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape 18:57:37 "[HSBlackmarket]: Found position for a HSBlackmarket ... (115164) [11592.3,16464.3]" 18:57:37 No speaker given for 'Giourkas Savalas' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:37 "[HSBlackmarket]: Found position for a HSBlackmarket ... (103074) [10319,7412.34]" 18:57:37 No speaker given for 'Fotini Athanasiadis' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (184142) [18459.1,14259.2,0]" 18:57:37 No speaker given for 'Argyris Christou' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (133145) [13319,14523.9,0]" 18:57:37 No speaker given for 'Militiadis Melidoni' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (061168) [6193.02,16828.7,0]" 18:57:37 No speaker given for 'Gerasimos Kammenou' 18:57:37 "[HSBlackmarket] Server Done ..." 18:57:37 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Error: Wheel reference not initialized 18:57:37 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Wheel reference not initialized 18:57:37 a3\data_f\proxies\flags\flag_alone.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:38 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\solar_panels\solar_panels.p3d: No geometry and no visual shape 18:57:38 x\addons\a3_epoch_assets\models\rock.p3d: No geometry and no visual shape 18:57:38 x\addons\a3_epoch_weapons\1911_magazine.p3d: No geometry and no visual shape 18:57:38 a3\air_f_beta\heli_transport_02\main_rotor_center_f.p3d: No geometry and no visual shape 18:57:38 a3\air_f\data\plane_flag_big_f.p3d: No geometry and no visual shape 18:57:38 a3\air_f_beta\heli_transport_02\view_pilot_switches_f.p3d: No geometry and no visual shape 18:57:38 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire 18:57:38 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire 18:57:38 x\addons\a3_epoch_community\models\icecream.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_EPOCH' 18:57:38 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_EPOCH' 18:57:38 a3\air_f_heli\heli_transport_04\proxy_heli_transport_04_f.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 x\addons\a3_epoch_assets\models\rope.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 Error: Wheel reference not initialized 18:57:38 Error: Wheel reference not initialized 18:57:38 a3\air_f\data\plane_flag_medium_inv_f.p3d: No geometry and no visual shape 18:57:39 O_Truck_02_covered_EPOCH: rear_hide - unknown animation source rear_hide 18:57:39 Render target memory points PIP5_pos & PIP5_dir not found. 18:57:39 Error: Wheel reference not initialized 18:57:39 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_box_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_box_EPOCH' 18:57:39 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 18:57:39 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape 18:57:39 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_bench_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_bench_EPOCH' 18:57:39 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_proxy_f.p3d: No geometry and no visual shape 18:57:39 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_black_proxy_f.p3d: No geometry and no visual shape 18:57:39 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_covered_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_covered_EPOCH' 18:57:39 a3\air_f_heli\heli_transport_04\heli_transport_04_covered_proxy_f.p3d: No geometry and no visual shape 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "Epoch: Vehicle SPAWN TIMER 2.602, LOADED 165 VEHICLES" 18:57:39 "Epoch: Spawning vehicles" 18:57:39 "DEBUG: All vehicles over limit" 18:57:39 "Epoch: Loading storage" 18:57:39 "Epoch: Storage SPAWN TIMER 0.130001 slots left: 1500" 18:57:39 "Epoch: Loading static loot" 18:57:45 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 18:57:45 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 18:57:45 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 18:57:45 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 18:57:45 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 18:57:45 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 18:57:48 Loading movesType CfgGesturesSapper 18:57:48 Creating action map cache 18:57:49 MovesType CfgGesturesSapper load time 30 ms 18:57:49 Loading movesType CfgMovesSapperSdr 18:57:49 Reading cached action map data 18:57:49 MovesType CfgMovesSapperSdr load time 869 ms 18:57:49 No such side 18:57:49 "Epoch: Server Start Complete: 14.154 seconds" 18:57:49 "DEBUG UNITTEST INIT: _payload count 128" 18:57:49 "DEBUG UNITTEST INIT: _payload_64k count 65536" 18:57:49 "Epoch UnitTest: version Time: 0 : 0.6.0.0 " 18:57:49 "Epoch UnitTest: 000 Time: 0 : [""15046"",0] " 18:57:49 "Epoch UnitTest: 510 Time: 0 : [2018,10,15,18,57,49] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSET Time: 0 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSET 64k Time: 0.00200272 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETBIT Time: 0 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETBIT Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETBIT Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETBIT Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETEX Time: 0 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETEX 64k Time: 0.0019989 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGET Time: 0.000999451 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGET 64k Time: 0.00300217 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETRANGE Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETRANGE 64k Time: 0.0039978 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveEXPIRE Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETTTL Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETTTL 64k Time: 0.00300217 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_DATA Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_DATA_64 Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_EXPIRES_DATA Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_EXPIRES_DATA_64 Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveLog Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveLog 64k Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveMD5 Time: 0.000999451 : [""isOK:"",true] " 18:57:49 "Loaded Server FSM" 18:57:49 "Loading Settings for VIP event..." 18:57:49 "Loading Settings for DynamicDebris event..." 18:57:50 "DEBUG: server event ChangeWeather" 18:57:50 "DEBUG: server event \epoch_server_debris_event\EpochEvents\DynamicDebris.sqf" 18:57:50 "Epoch: Weather Change - fog: [0.0916859,0.106225,8.1531] rain: 0.72242 overcast: 0.912361 wind: [224.166,14.2513] wind-xy: [-9.32695,-9.05915] forced: false" 18:57:51 "DEBUG: server event removed \epoch_server_debris_event\EpochEvents\DynamicDebris.sqf" 19:00:28 BEServer: registering a new player #307205119 19:01:25 Unaccessible 19:01:26 Client: Remote object 3:0 not found 19:02:51 "DEBUG: server event PlantSpawner" 19:02:51 x\addons\a3_epoch_community\models\farming\poppy_plant.p3d: No geometry and no visual shape client.rpt Reveal hidden contents ===================================================================== == D:\SteamLibrary\steamapps\common\Arma 3\Arma3_x64.exe == "D:\SteamLibrary\steamapps\common\Arma 3\Arma3_x64.exe" "-mod=D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch" -beservice Original output filename: Arma3Retail_DX11_x64 Exe timestamp: 2018/07/24 22:21:25 Current time: 2018/10/15 18:59:28 Type: Public Build: Stable Version: 1.84.144923 Allocator: D:\SteamLibrary\steamapps\common\Arma 3\Dll\tbb4malloc_bi_x64.dll [2017.0.0.0] [2017.0.0.0] PhysMem: 16 GiB, VirtMem : 131072 GiB, AvailPhys : 11 GiB, AvailVirt : 131068 GiB, AvailPage : 12 GiB ===================================================================== 18:59:28 Detected number of DLCs: 20 18:59:28 DLC index:3 - unable to get DLC data 18:59:28 ----------------------------------------- Dlcs ----------------------------------------- 18:59:28 name appId owned installed available isDlc 18:59:28 Arma 3 107410 yes yes yes no 18:59:28 Unknown -1 no no no yes 18:59:28 Arma 3 Zeus 275700 yes yes yes yes 18:59:28 Arma 3 Helicopters 304380 yes yes yes yes 18:59:28 Arma 3 Laws of War 571710 yes yes yes yes 18:59:28 Arma 3 DLC Bundle 2 612480 yes yes yes yes 18:59:28 Arma 3 Malden 639600 yes yes yes yes 18:59:28 Arma 3 Tanks 798390 yes yes yes yes 18:59:28 Arma 3 Alpha Lite - expires now 228800 no no no yes 18:59:28 Arma 3 Server 233780 yes yes no yes 18:59:28 Arma 3 Soundtrack 249860 yes yes no yes 18:59:28 Arma 3 DLC Bundle 1 304400 yes yes yes yes 18:59:28 Arma 3 Samples 390500 yes yes no yes 18:59:28 Arma 3 Apex 395180 yes yes yes yes 18:59:28 Arma 3 Jets 601670 yes yes yes yes 18:59:28 Arma 3 Tac-Ops Mission Pack 744950 yes yes yes yes 18:59:28 Arma 3 Maps 249861 yes yes no yes 18:59:28 Arma 3 Tactical Guide 249862 yes yes no yes 18:59:28 Arma 3 Tools 233800 yes yes no yes 18:59:28 Arma 3 Karts 288520 yes yes yes yes 18:59:28 Arma 3 Marksmen 332350 yes yes yes yes 18:59:28 ---------------------------------------------------------------------------------------- 18:59:29 Cannot register unknown string STR_3DEN_CAMERA_NAME 18:59:29 Cannot register unknown string STR_DIFF_SCENE_ONLY 18:59:29 Cannot register unknown string STR_DIFF_SCENE_AND_MAP 18:59:30 Initializing stats manager. 18:59:30 sessionID: d2dd5c09ce50b27f2ffa5e9530ac7a3c35af2620 18:59:39 Unsupported language English in stringtable 18:59:39 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice 18:59:48 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin) 18:59:48 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin) 18:59:48 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin) 18:59:48 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin) 18:59:48 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin) 18:59:48 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin) 18:59:48 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin) 18:59:48 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin) 18:59:48 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin) 18:59:48 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin) 18:59:48 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin) 18:59:48 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin) 18:59:48 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably). 18:59:48 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin) 18:59:48 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin) 18:59:48 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin) 18:59:48 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin) 18:59:48 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin) 18:59:48 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin) 18:59:48 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin) 18:59:48 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin) 18:59:48 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:49 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin) 18:59:49 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin) 18:59:49 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin) 18:59:49 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin) 18:59:49 Updating base class ScrollBar->ScrollBar, by a3\ui_f_tank\config.bin/RscListNBox/ListScrollBar/ (original a3\ui_f_tank\config.bin) 18:59:55 Initializing Steam Manager 18:59:55 Starting initial content check. 18:59:55 Steam Manager initialized. 18:59:55 18:59:55 ==== Loaded addons ==== 18:59:55 18:59:55 dta\bin.pbo - 144923 18:59:55 dta\core.pbo - 129618 18:59:55 dta\languagecore_f.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a2_epoch_weapons.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_1.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_2.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_3.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_code.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_community.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_configs.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_language.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_structures.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_vehicles.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_vehicles_1.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_weapons.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\armor_f_tank.ebo - 132036 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\cargoposes_f_tank.ebo - 128283 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\characters_f_tank.ebo - 129798 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\data_f_tank.ebo - 128203 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\dubbing_f_tank.ebo - 127958 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\editorpreviews_f_tank.ebo - 131632 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\functions_f_tank.ebo - 125996 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\languagemissions_f_tank.ebo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\language_f_tank.ebo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\missions_f_tank.ebo - 130984 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\missions_f_tank_data.ebo - 128937 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\modules_f_tank.ebo - 129574 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\music_f_tank.ebo - 127912 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\props_f_tank.ebo - 131702 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\sounds_f_tank.ebo - 131364 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\structures_f_tank.ebo - 131803 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\ui_f_tank.ebo - 128232 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\weapons_f_tank.pbo - 131482 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\characters_f_tacops.ebo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\data_f_tacops.ebo - 126731 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\dubbing_f_tacops.ebo - 129340 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\functions_f_tacops.ebo - 124382 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\languagemissions_f_tacops.ebo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\language_f_tacops.ebo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\missions_f_tacops.ebo - 131995 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\modules_f_tacops.ebo - 124298 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\music_f_tacops.ebo - 124064 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\sounds_f_tacops.ebo - 123795 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\ui_f_tacops.ebo - 124116 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\air_f_orange.pbo - 132035 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\cargoposes_f_orange.pbo - 126225 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\characters_f_orange.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\data_f_orange.pbo - 121095 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\dubbing_f_orange.pbo - 121689 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\editorpreviews_f_orange.pbo - 123173 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\functions_f_orange.pbo - 128287 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\languagemissions_f_orange.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\language_f_orange.pbo - 132196 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\missions_f_orange.pbo - 126711 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\modules_f_orange.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\music_f_orange.pbo - 120725 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\props_f_orange.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\soft_f_orange.pbo - 132239 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\sounds_f_orange.pbo - 122301 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\structures_f_orange.pbo - 132196 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\supplies_f_orange.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\ui_f_orange.pbo - 123398 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\weapons_f_orange.pbo - 130995 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\armor_f_argo.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\characters_f_patrol.pbo - 129998 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\data_f_argo.pbo - 128209 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\data_f_patrol.pbo - 121287 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\editorpreviews_f_argo.pbo - 121102 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\functions_f_patrol.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\languagemissions_f_patrol.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\language_f_argo.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\language_f_patrol.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden.pbo - 129554 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden_data.pbo - 126137 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden_data_layers.pbo - 123441 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden_scenes_f.pbo - 120026 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\missions_f_patrol.pbo - 126663 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\modules_f_patrol.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\music_f_argo.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\props_f_argo.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\rocks_f_argo.pbo - 123488 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\sounds_f_patrol.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\structures_f_argo.pbo - 128082 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\ui_f_patrol.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\vegetation_f_argo.pbo - 123488 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\weapons_f_patrol.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\air_f_jets.pbo - 132072 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\anims_f_jets.pbo - 123210 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\boat_f_destroyer.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\boat_f_jets.pbo - 129607 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\cargoposes_f_jets.pbo - 126225 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\characters_f_jets.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\data_f_destroyer.pbo - 132156 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\data_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\data_f_sams.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\dubbing_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\editorpreviews_f_destroyer.pbo - 132141 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\editorpreviews_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\editorpreviews_f_sams.pbo - 132141 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\functions_f_destroyer.pbo - 132075 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\functions_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\languagemissions_f_jets.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\language_f_destroyer.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\language_f_jets.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\language_f_sams.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\missions_f_jets.pbo - 130755 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\modules_f_jets.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\music_f_jets.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\props_f_destroyer.pbo - 132141 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\props_f_jets.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\sounds_f_jets.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\static_f_destroyer.pbo - 132329 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\static_f_jets.pbo - 131969 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\static_f_sams.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\ui_f_jets.pbo - 126137 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\weapons_f_destroyer.pbo - 132155 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\weapons_f_jets.pbo - 131383 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\weapons_f_sams.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\air_f_exp.pbo - 132062 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\anims_f_exp.pbo - 126506 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\armor_f_exp.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\boat_f_exp.pbo - 129747 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\cargoposes_f_exp.pbo - 126224 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\characters_f_exp.pbo - 129738 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\data_f_exp.pbo - 128203 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_f_exp.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp.pbo - 119458 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\editorpreviews_f_exp.pbo - 126519 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\functions_f_exp.pbo - 132366 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\languagemissions_f_exp.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\language_f_exp.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_data_exp.pbo - 123499 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka.pbo - 130033 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data.pbo - 123523 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data_layers.pbo - 121192 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoa_scenes_f.pbo - 123527 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\missions_f_exp.pbo - 132366 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\missions_f_exp_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\missions_f_exp_video.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\modules_f_exp.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\music_f_exp.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\music_f_exp_music.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\props_f_exp.pbo - 130646 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\rocks_f_exp.pbo - 129683 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\soft_f_exp.pbo - 130182 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\sounds_f_exp.pbo - 131659 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\static_f_exp.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp.pbo - 132109 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_civilian.pbo - 131934 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_commercial.pbo - 123430 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_cultural.pbo - 123423 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_data.pbo - 123431 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_industrial.pbo - 123429 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_infrastructure.pbo - 132117 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\supplies_f_exp.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\ui_f_exp.pbo - 123398 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\vegetation_f_exp.pbo - 127271 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\weapons_f_exp.pbo - 131546 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\anims_f_mark.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\characters_f_mark.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\data_f_mark.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\dubbing_f_mark.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\dubbing_f_mp_mark.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\functions_f_mark.pbo - 129645 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\functions_f_mp_mark.pbo - 129434 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\languagemissions_f_mark.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\languagemissions_f_mp_mark.pbo - 132106 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\language_f_mark.pbo - 132105 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\language_f_mp_mark.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mark.pbo - 122301 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mark_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mark_video.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mp_mark.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mp_mark_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\modules_f_mark.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\modules_f_mp_mark.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\music_f_mark.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\music_f_mark_music.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\sounds_f_mark.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\static_f_mark.pbo - 130728 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\structures_f_mark.pbo - 123419 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\supplies_f_mark.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\ui_f_mark.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\ui_f_mp_mark.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\weapons_f_mark.pbo - 131460 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\air_f_heli.pbo - 132035 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\anims_f_heli.pbo - 123210 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\boat_f_heli.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\cargoposes_f_heli.pbo - 126231 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\data_f_heli.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\dubbing_f_heli.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\functions_f_heli.pbo - 123022 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\languagemissions_f_heli.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\language_f_heli.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\missions_f_heli.pbo - 129397 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\missions_f_heli_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\missions_f_heli_video.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\modules_f_heli.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\music_f_heli.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\music_f_heli_music.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\soft_f_heli.pbo - 129742 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\sounds_f_heli.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\structures_f_heli.pbo - 129596 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\supplies_f_heli.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\ui_f_heli.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\anims_f_kart.pbo - 123210 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\characters_f_kart.pbo - 120162 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\data_f_kart.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\languagemissions_f_kart.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\language_f_kart.pbo - 132105 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\missions_f_kart.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\missions_f_kart_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\modules_f_kart.pbo - 128288 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\modules_f_kart_data.pbo - 124178 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\soft_f_kart.pbo - 129741 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\sounds_f_kart.pbo - 125381 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\structures_f_kart.pbo - 123419 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\ui_f_kart.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\weapons_f_kart.pbo - 120217 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\data_f_curator.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\data_f_curator_music.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\functions_f_curator.pbo - 123333 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\language_f_curator.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\missions_f_curator.pbo - 121570 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\modules_f_curator.pbo - 128381 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\ui_f_curator.pbo - 130996 18:59:55 addons\3den.pbo - 131733 18:59:55 addons\3den_language.pbo - 132107 18:59:55 addons\a3.pbo - unknown 18:59:55 addons\air_f.pbo - 132032 18:59:55 addons\air_f_beta.pbo - 132118 18:59:55 addons\air_f_epb.pbo - 132034 18:59:55 addons\air_f_epc.pbo - 129848 18:59:55 addons\air_f_gamma.pbo - 130580 18:59:55 addons\animals_f.pbo - 131659 18:59:55 addons\animals_f_beta.pbo - 123208 18:59:55 addons\anims_f.pbo - 127133 18:59:55 addons\anims_f_bootcamp.pbo - 123209 18:59:55 addons\anims_f_data.pbo - 127133 18:59:55 addons\anims_f_epa.pbo - 129908 18:59:55 addons\anims_f_epc.pbo - 121358 18:59:55 addons\anims_f_exp_a.pbo - 123209 18:59:55 addons\armor_f.pbo - 129739 18:59:55 addons\armor_f_beta.pbo - 132035 18:59:55 addons\armor_f_epb.pbo - 129739 18:59:55 addons\armor_f_epc.pbo - 129739 18:59:55 addons\armor_f_gamma.pbo - 132036 18:59:55 addons\baseconfig_f.pbo - 119457 18:59:55 addons\boat_f.pbo - 132036 18:59:55 addons\boat_f_beta.pbo - 132036 18:59:55 addons\boat_f_epc.pbo - 131911 18:59:55 addons\boat_f_gamma.pbo - 127529 18:59:55 addons\cargoposes_f.pbo - 128420 18:59:55 addons\characters_f.pbo - 130081 18:59:55 addons\characters_f_beta.pbo - 129738 18:59:55 addons\characters_f_bootcamp.pbo - 129738 18:59:55 addons\characters_f_epa.pbo - 129738 18:59:55 addons\characters_f_epb.pbo - 129738 18:59:55 addons\characters_f_epc.pbo - 129738 18:59:55 addons\characters_f_gamma.pbo - 129738 18:59:55 addons\data_f.pbo - 132155 18:59:55 addons\data_f_bootcamp.pbo - 129618 18:59:55 addons\data_f_exp_a.pbo - 119457 18:59:55 addons\data_f_exp_b.pbo - 119457 18:59:55 addons\drones_f.pbo - 132036 18:59:55 addons\dubbing_f.pbo - 119457 18:59:55 addons\dubbing_f_beta.pbo - 119457 18:59:55 addons\dubbing_f_bootcamp.pbo - 119457 18:59:55 addons\dubbing_f_epa.pbo - 119457 18:59:55 addons\dubbing_f_epb.pbo - 119457 18:59:55 addons\dubbing_f_epc.pbo - 119457 18:59:55 addons\dubbing_f_gamma.pbo - 122449 18:59:55 addons\dubbing_radio_f.pbo - 119457 18:59:55 addons\dubbing_radio_f_data_eng.pbo - 119457 18:59:55 addons\dubbing_radio_f_data_engb.pbo - 119458 18:59:55 addons\dubbing_radio_f_data_gre.pbo - 119458 18:59:55 addons\dubbing_radio_f_data_per.pbo - 119458 18:59:55 addons\dubbing_radio_f_data_vr.pbo - 119458 18:59:55 addons\editorpreviews_f.pbo - 128120 18:59:55 addons\editor_f.pbo - 121103 18:59:55 addons\functions_f.pbo - 132155 18:59:55 addons\functions_f_bootcamp.pbo - 129770 18:59:55 addons\functions_f_epa.pbo - 119458 18:59:55 addons\functions_f_epc.pbo - 119458 18:59:55 addons\functions_f_exp_a.pbo - 122619 18:59:55 addons\languagemissions_f.pbo - 132104 18:59:55 addons\languagemissions_f_beta.pbo - 132104 18:59:55 addons\languagemissions_f_bootcamp.pbo - 132107 18:59:55 addons\languagemissions_f_epa.pbo - 132104 18:59:55 addons\languagemissions_f_epb.pbo - 132104 18:59:55 addons\languagemissions_f_epc.pbo - 132123 18:59:55 addons\languagemissions_f_exp_a.pbo - 132107 18:59:55 addons\languagemissions_f_gamma.pbo - 132104 18:59:55 addons\language_f.pbo - 132107 18:59:55 addons\language_f_beta.pbo - 132107 18:59:55 addons\language_f_bootcamp.pbo - 132104 18:59:55 addons\language_f_epa.pbo - 132104 18:59:55 addons\language_f_epb.pbo - 132107 18:59:55 addons\language_f_epc.pbo - 132104 18:59:55 addons\language_f_exp_a.pbo - 132104 18:59:55 addons\language_f_exp_b.pbo - 132104 18:59:55 addons\language_f_gamma.pbo - 132107 18:59:55 addons\map_altis.pbo - 127995 18:59:55 addons\map_altis_data.pbo - 123439 18:59:55 addons\map_altis_data_layers.pbo - 123456 18:59:55 addons\map_altis_data_layers_00_00.pbo - 0000 18:59:55 addons\map_altis_data_layers_00_01.pbo - 0000 18:59:55 addons\map_altis_data_layers_01_00.pbo - 0000 18:59:55 addons\map_altis_data_layers_01_01.pbo - 0000 18:59:55 addons\map_altis_scenes_f.pbo - 119459 18:59:55 addons\map_data.pbo - 127098 18:59:55 addons\map_stratis.pbo - 129518 18:59:55 addons\map_stratis_data.pbo - 122905 18:59:55 addons\map_stratis_data_layers.pbo - 122917 18:59:55 addons\map_stratis_scenes_f.pbo - 119459 18:59:55 addons\map_vr.pbo - 131719 18:59:55 addons\map_vr_scenes_f.pbo - 119459 18:59:55 addons\misc_f.pbo - 119459 18:59:55 addons\missions_f.pbo - 129735 18:59:55 addons\missions_f_beta.pbo - 122470 18:59:55 addons\missions_f_beta_data.pbo - 119459 18:59:55 addons\missions_f_beta_video.pbo - 119459 18:59:55 addons\missions_f_bootcamp.pbo - 129645 18:59:55 addons\missions_f_bootcamp_data.pbo - 119459 18:59:55 addons\missions_f_bootcamp_video.pbo - 119459 18:59:55 addons\missions_f_data.pbo - 119459 18:59:55 addons\missions_f_epa.pbo - 132216 18:59:55 addons\missions_f_epa_data.pbo - 119459 18:59:55 addons\missions_f_epa_video.pbo - 119459 18:59:55 addons\missions_f_epb.pbo - 119459 18:59:55 addons\missions_f_epc.pbo - 119459 18:59:55 addons\missions_f_exp_a.pbo - 121496 18:59:55 addons\missions_f_exp_a_data.pbo - 119459 18:59:55 addons\missions_f_gamma.pbo - 131918 18:59:55 addons\missions_f_gamma_data.pbo - 119459 18:59:55 addons\missions_f_gamma_video.pbo - 119459 18:59:55 addons\missions_f_video.pbo - 119459 18:59:55 addons\modules_f.pbo - 124453 18:59:55 addons\modules_f_beta.pbo - 119459 18:59:55 addons\modules_f_beta_data.pbo - 119459 18:59:55 addons\modules_f_bootcamp.pbo - 119459 18:59:55 addons\modules_f_data.pbo - 122470 18:59:55 addons\modules_f_epb.pbo - 119459 18:59:55 addons\modules_f_exp_a.pbo - 119459 18:59:55 addons\music_f.pbo - 119459 18:59:55 addons\music_f_bootcamp.pbo - 119459 18:59:55 addons\music_f_bootcamp_music.pbo - 119459 18:59:55 addons\music_f_epa.pbo - 119459 18:59:55 addons\music_f_epa_music.pbo - 119459 18:59:55 addons\music_f_epb.pbo - 119459 18:59:55 addons\music_f_epb_music.pbo - 119459 18:59:55 addons\music_f_epc.pbo - 119459 18:59:55 addons\music_f_epc_music.pbo - 119477 18:59:55 addons\music_f_music.pbo - 119477 18:59:55 addons\plants_f.pbo - 126807 18:59:55 addons\props_f_exp_a.pbo - 129371 18:59:55 addons\roads_f.pbo - 127271 18:59:55 addons\rocks_f.pbo - 127271 18:59:55 addons\signs_f.pbo - 127272 18:59:55 addons\soft_f.pbo - 132036 18:59:55 addons\soft_f_beta.pbo - 132036 18:59:55 addons\soft_f_bootcamp.pbo - 129739 18:59:55 addons\soft_f_epc.pbo - 129739 18:59:55 addons\soft_f_gamma.pbo - 131376 18:59:55 addons\sounds_f.pbo - 132162 18:59:55 addons\sounds_f_arsenal.pbo - 127887 18:59:55 addons\sounds_f_bootcamp.pbo - 119477 18:59:55 addons\sounds_f_characters.pbo - 121082 18:59:55 addons\sounds_f_environment.pbo - 120046 18:59:55 addons\sounds_f_epb.pbo - 126923 18:59:55 addons\sounds_f_epc.pbo - 125380 18:59:55 addons\sounds_f_exp_a.pbo - 119477 18:59:55 addons\sounds_f_sfx.pbo - 119477 18:59:55 addons\sounds_f_vehicles.pbo - 128448 18:59:55 addons\static_f.pbo - 132036 18:59:55 addons\static_f_beta.pbo - 122642 18:59:55 addons\static_f_gamma.pbo - 122615 18:59:55 addons\structures_f.pbo - 131287 18:59:55 addons\structures_f_bootcamp.pbo - 123488 18:59:55 addons\structures_f_data.pbo - 130046 18:59:55 addons\structures_f_epa.pbo - 123407 18:59:55 addons\structures_f_epb.pbo - 126137 18:59:55 addons\structures_f_epc.pbo - 123407 18:59:55 addons\structures_f_exp_a.pbo - 123423 18:59:55 addons\structures_f_households.pbo - 129369 18:59:55 addons\structures_f_ind.pbo - 130947 18:59:55 addons\structures_f_mil.pbo - 127270 18:59:55 addons\structures_f_wrecks.pbo - 129371 18:59:55 addons\uifonts_f.pbo - 119478 18:59:55 addons\uifonts_f_data.pbo - 128439 18:59:55 addons\ui_f.pbo - 131720 18:59:55 addons\ui_f_bootcamp.pbo - 119478 18:59:55 addons\ui_f_data.pbo - 129859 18:59:55 addons\ui_f_exp_a.pbo - 119478 18:59:55 addons\weapons_f.pbo - 132157 18:59:55 addons\weapons_f_beta.pbo - 130487 18:59:55 addons\weapons_f_bootcamp.pbo - 124358 18:59:55 addons\weapons_f_epa.pbo - 124514 18:59:55 addons\weapons_f_epb.pbo - 124216 18:59:55 addons\weapons_f_epc.pbo - 130416 18:59:55 addons\weapons_f_gamma.pbo - 120217 18:59:55 18:59:55 ======================= 18:59:55 18:59:55 ============================================================================================= List of mods =============================================================================================== 18:59:55 modsReadOnly = true 18:59:55 safeModsActivated = false 18:59:55 customMods = true 18:59:55 hash = 'C17C9CD2187F26B3A4597857271E53A996177F9F' 18:59:55 hashShort = '16c87a0d' 18:59:55 name | modDir | default | origin | hash | hashShort | fullPath 18:59:55 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 18:59:55 Epoch Mod 1.2.0 | @Epoch | false | GAME DIR | 02ed17fb0b0b859b45ac71ba84bd2285d66b3a71 | 4efd885a | D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch 18:59:55 Arma 3 DLC Bundle 2 | dlcbundle2 | true | NOT FOUND | | | 18:59:55 Arma 3 DLC Bundle 1 | dlcbundle | true | NOT FOUND | | | 18:59:55 Arma 3 Tanks | tank | true | GAME DIR | 75d1931c6e085ad813e64fbf1fef40caca2c713d | 4bc9a8b9 | D:\SteamLibrary\steamapps\common\Arma 3\tank 18:59:55 Arma 3 Tac-Ops | tacops | true | GAME DIR | ab84282131e586c550d8a4ce69da3c161dd8f2af | 7dfaba09 | D:\SteamLibrary\steamapps\common\Arma 3\tacops 18:59:55 Arma 3 Laws of War | orange | true | GAME DIR | 7e5911bd5879f49100e609e4ad8bf39b7ee901ea | 2400822 | D:\SteamLibrary\steamapps\common\Arma 3\orange 18:59:55 Arma 3 Malden | argo | true | GAME DIR | b6d03c920b87ce124d8e842a54e932b62af46c11 | fc1038bd | D:\SteamLibrary\steamapps\common\Arma 3\argo 18:59:55 Arma 3 Jets | jets | true | GAME DIR | 173b2bbce99ca3fc110062a95a5ddea669bec203 | 4023f678 | D:\SteamLibrary\steamapps\common\Arma 3\jets 18:59:55 Arma 3 Apex | expansion | true | GAME DIR | c53a98b9063cb497ddbe574f40324250816e9259 | 1206d2fc | D:\SteamLibrary\steamapps\common\Arma 3\expansion 18:59:55 Arma 3 Marksmen | mark | true | GAME DIR | 3b97feb03938b1f72e603c17d1617700e960c610 | 2142a468 | D:\SteamLibrary\steamapps\common\Arma 3\mark 18:59:55 Arma 3 Helicopters | heli | true | GAME DIR | 9bfe0ce0d33f994f71d60692ffc43f6cd00a11c6 | e15edbbe | D:\SteamLibrary\steamapps\common\Arma 3\heli 18:59:55 Arma 3 Karts | kart | true | GAME DIR | 8e3f58c522827787481a2d624a5641f16e09d992 | 64c9a23c | D:\SteamLibrary\steamapps\common\Arma 3\kart 18:59:55 Arma 3 Zeus | curator | true | GAME DIR | 9b813dca715fbe051de68330683b6e46ecfcb7ea | 3d5746c6 | D:\SteamLibrary\steamapps\common\Arma 3\curator 18:59:55 Arma 3 | A3 | true | NOT FOUND | | | 18:59:55 ========================================================================================================================================================================================================== 18:59:55 DX11 - Initializing DX11 engine. 18:59:55 DX11 - Using DXGI adapter 0 (detected in config). 18:59:55 DX11 - Using DXGI adapter 0. 18:59:55 - adapter description : NVIDIA GeForce GTX 780 18:59:55 - adapter vendor ID : 4318 18:59:55 - adapter device ID : 4100 18:59:55 - adapter subsys ID : 2221477955 18:59:55 - adapter revision : 161 18:59:55 - dedicated video memory : 3176136704 18:59:55 - dedicated system memory : 0 18:59:55 - shared system memory : 4276539392 18:59:55 InitSound ... 18:59:55 InitSound - complete 18:59:58 PhysX3 SDK Init started ... 18:59:58 PhysX3 SDK Init ended. 19:00:01 SimulWeather - Cloud Renderer - noise texture file is not specified! 19:00:03 core\skyobject\skyobject.p3d: No geometry and no visual shape 19:00:05 a3\data_f\krater.p3d: No geometry and no visual shape 19:00:05 a3\data_f\koule.p3d: No geometry and no visual shape 19:00:05 Loading movesType CfgGesturesMale 19:00:05 Creating action map cache 19:00:05 MovesType CfgGesturesMale load time 351 ms 19:00:05 Loading movesType CfgMovesMaleSdr 19:00:05 Reading cached action map data 19:00:09 MovesType CfgMovesMaleSdr load time 3445 ms 19:00:09 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape 19:00:09 Starting mission: 19:00:09 Mission file: tanoa_intro1 19:00:09 Mission world: tanoa 19:00:09 Mission directory: a3\map_tanoa_scenes_f\scenes\tanoa_intro1.tanoa\ 19:00:09 a3\data_f\blesk1.p3d: No geometry and no visual shape 19:00:09 a3\data_f\blesk2.p3d: No geometry and no visual shape 19:00:09 a3\data_f\raindrop.p3d: No geometry and no visual shape 19:00:09 a3\map_tanoabuka\data\skydome.p3d: No geometry and no visual shape 19:00:09 a3\data_f\stars.p3d: No geometry and no visual shape 19:00:09 a3\map_tanoabuka\data\horizon.p3d: No geometry and no visual shape 19:00:09 a3\data_f\rainbow.p3d: No geometry and no visual shape 19:00:11 No more slot to add connection at 015030 (1523.6,3012.8) 19:00:15 a3\structures_f_exp\signs\companies\cornerads_01_v4_f.p3d: No geometry and no visual shape 19:00:17 Strange convex component70 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component75 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component76 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component77 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component78 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:18 a3\structures_f_exp\signs\companies\cornerads_01_v1_f.p3d: No geometry and no visual shape 19:00:19 a3\structures_f_exp\signs\companies\cornerads_01_v3_f.p3d: No geometry and no visual shape 19:00:20 "CfgEpochCoreListenServerFunctions" 19:00:20 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 19:00:20 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 19:00:20 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape 19:00:22 Weather was forced to change 19:00:28 Skipping mods and signatures due to overflow flag being set. 19:00:28 Loading movesType CfgMovesButterfly 19:00:28 Reading cached action map data 19:00:28 MovesType CfgMovesButterfly load time 17 ms 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:29 Loading movesType CfgMovesBird 19:00:29 Reading cached action map data 19:00:29 MovesType CfgMovesBird load time 75 ms 19:01:09 Starting mission: 19:01:09 Mission file: epoch (__CUR_MP) 19:01:09 Mission world: Altis 19:01:09 Mission directory: mpmissions\__CUR_MP.Altis\ 19:01:10 a3\map_stratis\data\obloha.p3d: No geometry and no visual shape 19:01:10 a3\map_stratis\data\horizont.p3d: No geometry and no visual shape 19:01:14 Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 19:01:14 Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 19:01:15 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 19:01:15 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 19:01:15 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire 19:01:19 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:19 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:19 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:19 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:22 "CfgEpochCoreClientFunctions" 19:01:22 "Epoch: Advanced Vehicle Repair Enabled" 19:01:22 "Loading Functions: CfgClientFunctions" 19:01:23 a3\structures_f\mil\flags\flag_asym_f.p3d: No geometry and no visual shape 19:01:23 Fresnel k must be >0, given n=1.2,k=0 19:01:23 a3\structures_f\mil\flags\flag_f.p3d: No geometry and no visual shape 19:01:23 Fresnel k must be >0, given n=0.8,k=0 19:01:24 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 a3\weapons_f\acc\reticle_nlaw.p3d: No geometry and no visual shape 19:01:25 a3\air_f\data\plane_flag_medium_f.p3d: No geometry and no visual shape 19:01:25 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape 19:01:25 Error: Wheel reference not initialized 19:01:25 Error: Wheel reference not initialized 19:01:25 a3\data_f\proxies\flags\flag_alone.p3d: No geometry and no visual shape 19:01:26 Error: Wheel reference not initialized 19:01:26 a3\air_f_beta\heli_transport_02\main_rotor_center_f.p3d: No geometry and no visual shape 19:01:26 a3\air_f\data\plane_flag_big_f.p3d: No geometry and no visual shape 19:01:26 a3\air_f_beta\heli_transport_02\view_pilot_switches_f.p3d: No geometry and no visual shape 19:01:26 Error: Wheel reference not initialized 19:01:26 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_EPOCH' 19:01:26 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_EPOCH' 19:01:27 a3\air_f_heli\heli_transport_04\proxy_heli_transport_04_f.p3d: No geometry and no visual shape 19:01:27 Error: Wheel reference not initialized 19:01:27 Error: Wheel reference not initialized 19:01:27 Error: Wheel reference not initialized 19:01:27 Error: Wheel reference not initialized 19:01:27 a3\air_f\data\plane_flag_medium_inv_f.p3d: No geometry and no visual shape 19:01:27 O_Truck_02_covered_EPOCH: rear_hide - unknown animation source rear_hide 19:01:27 Render target memory points PIP5_pos & PIP5_dir not found. 19:01:27 Error: Wheel reference not initialized 19:01:27 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_box_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_box_EPOCH' 19:01:27 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_bench_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_bench_EPOCH' 19:01:27 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_proxy_f.p3d: No geometry and no visual shape 19:01:27 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_black_proxy_f.p3d: No geometry and no visual shape 19:01:27 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_covered_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_covered_EPOCH' 19:01:27 a3\air_f_heli\heli_transport_04\heli_transport_04_covered_proxy_f.p3d: No geometry and no visual shape 19:01:28 Loading movesType CfgGesturesSapper 19:01:28 Creating action map cache 19:01:28 MovesType CfgGesturesSapper load time 199 ms 19:01:28 Loading movesType CfgMovesSapperSdr 19:01:28 Reading cached action map data 19:01:30 MovesType CfgMovesSapperSdr load time 1943 ms 19:01:30 No speaker given for 'Vangelis Manetta' 19:01:30 No speaker given for 'Vyron Athanasiadis' 19:01:30 No speaker given for 'Samaras Mylonaki' 19:01:30 No speaker given for 'Michalis Isofidou' 19:01:30 No speaker given for 'Luo Liou' 19:01:30 a3\characters_f_gamma\heads\glasses\g_aviators.p3d: No geometry and no visual shape 19:01:30 No speaker given for 'Gula Osmani' 19:01:30 No speaker given for 'Michalis Zenon' 19:01:30 a3\characters_f\heads\glasses\g_shades_black.p3d: No geometry and no visual shape 19:01:30 No speaker given for 'Evripidis Petridis' 19:01:30 No speaker given for 'Arion Athanasiadis' 19:01:30 No speaker given for 'Vega Nicolau' 19:01:30 No speaker given for 'Giourkas Nicolau' 19:01:30 No speaker given for 'Stergos Constantinou' 19:01:30 No such side 19:01:30 Time was adjusted to keep it same as on server. 19:01:30 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape 19:01:30 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 19:01:31 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\solar_panels\solar_panels.p3d: No geometry and no visual shape 19:01:31 x\addons\a3_epoch_assets\models\rock.p3d: No geometry and no visual shape 19:01:31 x\addons\a3_epoch_weapons\1911_magazine.p3d: No geometry and no visual shape 19:01:31 Fresnel k must be >0, given n=4.8,k=0 19:01:31 x\addons\a3_epoch_community\models\icecream.p3d: No geometry and no visual shape 19:01:31 x\addons\a3_epoch_assets\models\rope.p3d: No geometry and no visual shape 19:01:32 "[HSBlackmarket]: Client waiting for Trader ..." 19:01:33 Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed 19:01:34 "EPOCH-LOGIN: Init" 19:01:34 "EPOCH-LOGIN: Start Loadingscreen" 19:01:34 "EPOCH-LOGIN: Version Check" 19:01:34 "EPOCH-LOGIN: Check PlayerUID" 19:01:34 "EPOCH-LOGIN: Check Server" 19:02:05 "Authentication Failed, Disconnect and try again" 19:02:22 EPE manager release (0|300|0) 19:02:22 Starting mission: 19:02:22 Mission file: introOrange 19:02:22 Mission world: Altis 19:02:22 Mission directory: a3\missions_f_orange\scenes\introOrange.Altis\ 19:02:23 "CfgEpochCoreListenServerFunctions" 19:02:24 a3\characters_f_beta\heads\glasses\g_shades_red.p3d: No geometry and no visual shape 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass1" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass2" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass3" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass4" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass6" in C_Hatchback_01_F 19:02:25 C_Hatchback_01_F: wheel_1_1 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: wheel_2_1 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: wheel_1_2 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: wheel_2_2 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: pedal_thrust - unknown animation source throttle 19:02:25 C_Hatchback_01_F: pedal_brake - unknown animation source brake 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 C_Hatchback_01_F: drivingwheel - unknown animation source drivingwheel 19:02:25 C_Hatchback_01_F: steering_1_1 - unknown animation source drivingwheel 19:02:25 C_Hatchback_01_F: steering_2_1 - unknown animation source drivingwheel 19:02:25 C_Hatchback_01_F: indicatorrpm - unknown animation source rpm 19:02:25 C_Hatchback_01_F: fuel - unknown animation source fuel 19:02:25 C_Hatchback_01_F: prop_01 - unknown animation source rpm 19:02:25 C_Hatchback_01_F: daylights - unknown animation source rpm 19:02:25 C_Hatchback_01_F: reverse_light - unknown animation source gear 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass5" in C_Hatchback_01_F 19:02:25 C_Hatchback_01_F: wheel_1_1_damper - unknown animation source damper 19:02:25 C_Hatchback_01_F: wheel_2_1_damper - unknown animation source damper 19:02:25 C_Hatchback_01_F: wheel_1_2_damper - unknown animation source damper 19:02:25 C_Hatchback_01_F: wheel_2_2_damper - unknown animation source damper 19:02:25 a3\data_f\krater.p3d: No geometry and no visual shape 19:02:25 a3\structures_f_heli\vr\helpers\sign_sphere25cm_f.p3d: No geometry and no visual shape 19:02:25 Land_wpp_Turbine_V1_off_F: mxlgenerator - unknown animation source ::time (defined in AnimationSources::time) 19:02:25 Land_wpp_Turbine_V1_off_F: mxlmeter - unknown animation source ::timeRndOffset (defined in AnimationSources::timeRndOffset) 19:02:25 Land_wpp_Turbine_V1_off_F: mxlprop - unknown animation source ::timeRndOffset (defined in AnimationSources::timeRndOffset) 19:02:26 a3\characters_f\heads\glasses\g_shades_blue.p3d: No geometry and no visual shape 19:02:26 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire 19:02:26 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire 19:02:27 Weather was forced to change 19:02:27 C_Truck_02_covered_F: rear_hide - unknown animation source rear_hide 19:02:29 a3\structures_f_epc\dominants\ghosthotel\gh_proxy_shower_f.p3d: No geometry and no visual shape 19:02:29 a3\structures_f_epc\dominants\ghosthotel\gh_proxy_shower2_f.p3d: No geometry and no visual shape 19:02:29 Fresnel n must be >0, given n=0,k=1.4 19:02:30 Fresnel k must be >0, given n=2.51,k=0 19:02:30 Loading movesType CfgMovesSnakes_F 19:02:30 Reading cached action map data 19:02:30 MovesType CfgMovesSnakes_F load time 36 ms 19:02:33 Shutdown normally 19:02:34 SimulWeather - Cloud Renderer - noise texture file is not specified! 19:02:34 Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";] 19:02:34 Deinitialized shape [Class: "B_Soldier_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Sapper_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\sapper_character.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_hunter_1_F"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";] 19:02:35 Deinitialized shape [Class: "I_pilot_F"; Shape: "a3\characters_f\common\pilot_f.p3d";] 19:02:35 Deinitialized shape [Class: "O_helipilot_F"; Shape: "a3\characters_f\common\pilot_f.p3d";] 19:02:35 Deinitialized shape [Class: "I_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";] 19:02:35 Deinitialized shape [Class: "I_G_Soldier_LAT_F"; Shape: "a3\characters_f_bootcamp\guerrilla\ig_guerrilla_6_1.p3d";] 19:02:35 Deinitialized shape [Class: "O_G_Soldier_LAT_F"; Shape: "a3\characters_f_bootcamp\guerrilla\ig_guerrilla_6_1.p3d";] 19:02:35 Deinitialized shape [Class: "O_T_ghillie_tna_F"; Shape: "a3\characters_f_mark\opfor\o_fullghillie_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_Orestes"; Shape: "a3\characters_f\civil\c_orestes.p3d";] 19:02:35 Deinitialized shape [Class: "I_soldier_F"; Shape: "a3\characters_f_beta\indep\ia_soldier_01.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_CamoPink_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\female_camo.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_w_worker_F"; Shape: "a3\characters_f\common\coveralls.p3d";] 19:02:35 Deinitialized shape [Class: "C_scientist_F"; Shape: "a3\characters_f\common\coveralls.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_fugitive_F_afro"; Shape: "a3\characters_f\civil\c_poor.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_fugitive_F"; Shape: "a3\characters_f\civil\c_poor.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_beggar_F"; Shape: "a3\characters_f\civil\c_poor.p3d";] 19:02:35 Deinitialized shape [Class: "O_G_Soldier_TL_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_leader.p3d";] 19:02:35 Deinitialized shape [Class: "I_C_Soldier_Bandit_3_F"; Shape: "a3\characters_f_exp\syndikat\i_c_soldier_bandit_3_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_journalist_F"; Shape: "a3\characters_f_epc\civil\c_journalist.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlack3_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched6_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn14_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched7_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched16_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched19_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlack15_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlack19_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn13_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "VirtualMan_EPOCH"; Shape: "a3\characters_f\common\invisibleman.p3d";] 19:02:35 Deinitialized shape [Class: "I_G_resistanceLeader_F"; Shape: "a3\characters_f_epb\guerrilla\ig_guerrilla4_1.p3d";] 19:02:35 Deinitialized shape [Class: "I_G_Soldier_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_guerrilla1_1.p3d";] 19:02:35 Deinitialized shape [Class: "I_ghillie_lsh_F"; Shape: "a3\characters_f_mark\indep\i_fullghillie_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_sport_1_F_tanoan"; Shape: "a3\characters_f_exp\civil\c_tanoan1_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_sport_2_F_tanoan"; Shape: "a3\characters_f_exp\civil\c_tanoan1_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_sport_3_F_tanoan"; Shape: "a3\characters_f_exp\civil\c_tanoan1_f.p3d";] 19:02:35 Deinitialized shape [Class: "Underwear_F"; Shape: "a3\characters_f\common\basicbody.p3d";] 19:02:35 Deinitialized shape [Class: "C_Man_casual_1_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 19:02:35 Deinitialized shape [Class: "C_Man_casual_2_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 19:02:35 Deinitialized shape [Class: "C_Man_casual_4_F"; Shape: "a3\characters_f\civil\c_man_casual_shorts_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_IDAP_Man_AidWorker_02_F"; Shape: "a3\characters_f\civil\i_c_soldier_bandit_3_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_shorts_4_F_asia"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_1"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_4_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_6_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_5_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_2_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_shorts_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 c:\bis\source\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing! 19:02:35 Error: entity [FxCartridge_556] still has its shape, ref_count=2 19:02:35 Error: entity [ProxyFlag_Auto] still has its shape, ref_count=4 19:02:37 Extensions: Link to comment Share on other sites More sharing options...
C4-timah Posted October 15, 2018 Report Share Posted October 15, 2018 (edited) On 10/15/2018 at 11:13 PM, Tuhjay said: I am having trouble installing this script to my server. I have followed the instructions contained in the readme disregarding the exec edit to befilters, as an earlier post said to do. I have changed my HALV_takegive_crypto to match the post by C4 I am getting kicked for a script restriction #32. scripts.log Reveal hidden contents 14.10.2018 20:42:32: Nate (107.92.120.219:7003) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" 14.10.2018 20:50:32: Nate (107.92.120.219:28555) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" 14.10.2018 21:04:49: Nate (107.92.120.219:28555) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" 15.10.2018 19:01:26: Nate (107.92.120.219:20590) 3da96f51b3966fe98e5f5bf67837aadc - #32 "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" scripts.txt befilter Reveal hidden contents //new2 5 "BIS_fnc_dynamictext" !="\"BIS_fnc_dynamictext\"" !="'BIS_fnc_dynamictext'" 5 loadFile 5 forceRespawn !="ForceRespawnDuration" !="reviveHandleForceRespawnAction" !="forcerespawn player;" 5 setFriend 5 setAmmo 5 enableFatigue 5 setUnitRecoilCoefficient 5 setWeaponReloadingTime !="_unit setWeaponReloadingTime [_unit,_weapon,1];" !="_unit setWeaponReloadingTime [_unit,_weapon,1];" !="player fire [_muzzle, _muzzle, _item];\nplayer setWeaponReloadingTime [player, _muzzle, 0];" 5 allMissionObjects !="_alljammer = allmissionobjects 'PlotPole_EPOCH';" !="allMissionObjects \"Timeline_F\"" 5 callExtension 5 showCommandingMenu !="showCommandingMenu '';" !="showCommandingMenu '#USER:" 5 enableCollisionWith 5 setvelocity !="_smokeg setVelocity _Gvel;" !="setVelocityTarget" !="_bolt setPosATL _pos;\n_bolt setVelocity [0, 0, -10];" !="EPOCH_target setvelocitytransformation" !="_currentTarget setVelocity [0,0,-0.01];" !="_head setVelocity [\n(sin _dir * _speed), \n(cos _dir * _speed)" !="_vel = velocity this; _dir = getDir player; this setVelocity[(_vel select 0)+(sin _dir * 2),(_vel select 1)+(cos _dir * 2),(_vel select 2)];" !="_head setVelocity [random 2,random 2,10];" !="_bobber setVelocity [0,-1,-10];" !="_x setvelocity [0,0,0.1];" !="_veh setVelocity [0,0,0];" !="_this select 0 setvelocity (_this select 1)" !="_zombie setVelocityTransformation [_aslPos,_aslPos,_unitV,_unitV,_unitvDir,_vDir,_unitvUp,_unitvUp,2];" !="_smokeg setVelocity _Gvel;" 5 assignAs !"assignAsCargo" !="_unit assignAsGunner _axeCopter;" !="_driver assignAsDriver _axeCopter;" !="axeVIP assignAsDriver vehicle axeVIP;" 5 assignAsCargo !="_x assignAsCargo axeGeneralsBoat;" !="axeVIP assignAsCargo vehicle player;" !="axeVIP assignAsCargo vehicle axeVIP;" 5 allowDamage !="_unit allowDamage false;" !="_unit allowDamage true;" !="player allowDamage true;" !="vehicle player allowDamage true;" !="player allowDamage false;" !="_target allowDamage true;" !="_cargo allowDamage false;" 5 addWeaponCargo !="_acceptHolder addWeaponCargo [_wWeapon, 1] ;" !="CBA_fnc_addWeaponCargo" !="\\fnc_addWeaponCargo" !="\"addWeaponCargo" !="cba_fAddWeaponCargo" 5 onMapSingleClick !="onMapSingleClick '';" !="\"onmapsingleclick\"" 5 addMagazine !="if !(player canAdd (_x select 0)) exitWith {};\nplayer addMagazine[_x select 0, _x select 1];" !"addMagazineCargo" !="player addMagazine [_item,_count];" !="player addMagazine \"sledge_swing\";" !="player addMagazine \"Hatchet_swing\";" !="player addMagazine \"stick_swing\";" !="_wh addMagazineAmmoCargo[_item, 1, _count];" !="CBA_fnc_addMagazine" !="\\fnc_addMagazine" !="\"addMagazine" !="vehicle player addMagazineTurret" !="vehicle player addMagazineTurret" !="EPOCH_fnc_addMagazineOverflow" 5 addMagazineCargo !="_dogHolder addMagazineCargo [\"RabbitCarcass_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"Pelt_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"Venom_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"SnakeCarcass_EPOCH\", 1]" !="_dogHolder addMagazineCargo [\"ChickenCarcass_EPOCH\", 1]" !="_acceptHolder addMagazineCargo [_wAmmo, 1] ;" !="CBA_fnc_addMagazineCargo" !="\\fnc_addMagazineCargo" !="\"addMagazineCargo" !="cba_fAddMagazineCargo" 5 addItem !="_this call HS_additemtolb;false" !="{player addItemToVest _x} forEach _vestItems;" !="player addItem _item;" !="_plyr addItemToVest _missionItem;" !="axeVIP addItemToVest _item;" !="_plyr addItemToVest _missionItem;" !="EPOCH_fnc_addItemOverflow" !="CBA_fnc_addItem" !="\\fnc_addItem" !="\"addItem" !="fnc_addItemCargo" !="wH = _nearByHolder select 0;\n};\nif !(isNull _wh) then {\n_wh addItemCargoGlobal [_item,1];\n};\n};\n};\n\n_fnc_findItemInContainers = " !="player addItem 'ItemRope';" 5 addBackPack !="fnc_addBackpackCargo" 5 addMissionEventHandler !="CBA_clientID = [0, 2] select isMultiplayer;\naddMissionEventHandler [\"PlayerConnected\", {\nparams [\"_id\", \"_uid\", \"_name\"" !="addMissionEventHandler [\"EachFrame\", {call cba_common_fnc_onFrame}];" !="addMissionEventHandler [\"HandleDisconnect\"," !="addMissionEventHandler [\"Loaded\"," !="addMissionEventHandler ['Draw3D',_var + \"call Epoch_gui3DCooldownEH;\"];" !="addMissionEventHandler ['Draw3D',_var + \"call epoch_gui3dModelPosEH;\"];" !="addMissionEventHandler ['Draw3D',_var + \"call epoch_gui3dWorldPosEH;\"];" !="addMissionEventHandler [\n\"ended\",\n{\n\nBIS_fnc_missionHandlers_end = _this;" !="private _ehId = addMissionEventHandler [_event select [2], _code];" !="addMissionEventHandler [\"PlayerViewChanged\", {if (cameraView isEqualTo \"GROUP\") then {vehicle player switchCamera \"Internal\";};}];" !="addMissionEventHandler [\"EachFrame\",\n{\n\nmissionNamespace setVariable [\"BIS_" 5 removeMissionEventHandler !="removeMissionEventHandler [\"Draw3D\", _id];" !="removeMissionEventHandler [_event select [2], _x select 1];" 5 removeAllWeapons !="removeAllWeapons axeGeneral;" 5 removeAllItems 5 removeAllActions 5 setViewDistance !="setViewDistance 1600" 5 createGroup !="EPOCH_server_createGroup" !="_grp = createGroup [RESISTANCE, true];" !="if (isserver) then {\n_group = creategroup sidelogic;" !="grpVIPGeneral = createGroup [RESISTANCE, true];" !="_grp = createGroup side _plyr;" !="_grp = createGroup [_side, true];" !="_grp = createGroup [(side _plyr), true];" !="createcenter sidelogic;\n_grpLogic = creategroup sidelogic;\nbis_functions_mainscope" !="_group = createGroup [west, true];" 5 createVehicleCrew !="createvehiclecrew _x;" 5 createVehicleLocal !="\"Sign_Arrow_Direction_Yellow_F\" createVehicleLocal" !="\"#particlesource\" createVehicleLocal" !="\"#lightpoint\" createVehicleLocal" !="\"BloodSplat\" createVehicleLocal" !="[\"lightning1_F\", \"lightning2_F\"] call BIS_fnc_selectRandom;\n_lighting = _class createVehicleLocal" !="SLX_XEH_DUMMY createVehicleLocal [0, 0, 0];" !="CBA_eventHandlers = \"Logic\" createVehicleLocal [0, 0];" 5 createUnit !="_driver = _grp createUnit[\"I_UAV_AI\", position _unit, [], 0, \"CAN_COLLIDE\"];" !="axeGeneral = grpVIPGeneral createUnit [\"I_officer_F\", axeGeneralPos, [], 1, \"CAN_COLLIDE\"];" !="bis_functions_mainscope = _grpLogic createunit [\"Logic\",[9,9,9],[],0,\"none\"];" !="_unit = _grp createUnit[selectRandom _arrUnits, _pos, [], 0, \"FORM\"];" !="_driver = (group player) createUnit[\"I_UAV_AI\", position axeUAV, [], 0, \"CAN_COLLIDE\"];" 5 createAgent !="bis_revive_ratioLethal = createAgent [\"Logic\", [10,10,0], [], 0, \"CAN_COLLIDE\"];" !="_unit = createAgent[_unitClass, _targetPos, [], 256, \"FORM\"];" !="_unit = createAgent [_unitClass, _targetPos, [], 120, \"FORM\"];" !="_animal = createAgent[_randomAIClass, _animalPos, [], 5, \"NONE\"];" !="_unit = createAgent [\"Epoch_Cloak_F\", _pos, [], 0, \"CAN_COLLIDE\"];" !="_unit = createAgent [\"Epoch_Sapper_F\", _targetPos, [], 180, \"FORM\"];" !="_sapper = createAgent [\"Epoch_Sapper_F\", getPos _cage2, [], 0, \"FORM\"];" !="_unit = createAgent[_unitClass, position player, [], _zRange, \"FORM\"];" !="_animal = createAgent[_randomAIClass, _animalPos, [], 0, \"CAN_COLLIDE\"];" !="_axeSapper = createAgent [\"Epoch_Sapper_F\", _pos, [], 12, \"FORM\"];" !="_nestMate = createAgent [\"Epoch_Sapper_F\", _garrPos, [], 0, \"FORM\"];" 5 createTeam 5 createDialog !="createDialog "HS_trader_dialog";" !="createdialog 'Epoch_CamDialog'" !="createDialog \"rmx_dynamenu\";" !="createDialog \"rmx_craftingUI\";" !="createDialog \"QuickUpgrade\";" !="createDialog \"QuickTake\";" !="createDialog \"InteractBank\";" !="createdialog \"SelectGender\";" !="_handled = createdialog _dialog;" !="if !(createdialog \"InteractItem\") exitWith {};" !="createDialog _tapDiag;" !="if !(createdialog \"Trade\") exitWith {};" !="_ok = createdialog \"Interact\";" !="_ok = createdialog \"TradeNPCMenu\";" !="createDialog \"Epoch_myGroup\";" !="createDialog (if ((Epoch_my_GroupUID == \"\") && (Epoch_my_Group isEqualTo [])) then {\"EPOCH_createGrp\"} else {\"Epoch_myGroup\"});" !="createDialog \"GroupRequests\";" !="_ok = createdialog \"MissionSelect\";" !="createDialog 'Skaronator_AdminMenu';" !="createDialog \"Epoch_myTempGroup\";" !="createDialog (if ((Epoch_my_tempGroupUID == \"\") && (Epoch_my_tempGroup isEqualTo [])) then {\"EPOCH_createTempGrp\"} else {\"Epoch_myTempGroup\"});" !="createDialog \"tempGroupRequests\";" 5 createDisplay !="createDisplay \"rmx_dynamenu\";" !="createDisplay \"rmx_moveDynamicHUD\";" !="_parent createdisplay _displayClass;" !="finddisplay 151 createdisplay 'RscDisplayOptionsLayout'" !="_display createdisplay \"RscDisplayDLCPreview\";" 5 deleteMarker !="deleteMarkerLocal _mName;" 5 setMarker !="CBA_fnc_setMarkerPersistent\"" !="\\fnc_setMarkerPersistent" !="\"setMarkerPersistent" !="_mName setMarkerShapeLocal _mShape;" !="_mName setMarkerTypeLocal _mType;" !="(_x select 0) setMarkerPosLocal (position player);" !="_zoomMarker setMarkerSizeLocal" 5 createMarker !="CBA_fnc_createMarker\"" !="\\fnc_createMarker" !="\"createMarker" !="cba_fCreateMarker" !="createMarkerLocal [_mName, _mPos];" 5 assignItem !="axeVIP assignItem _item;" !="unassignItem" 5 forceAddUniform 5 removeAllMPEventHandlers 5 setDammage 5 displaySetEventHandler 5 ctrlSetEventHandler !="_ctrlButtonOK ctrlseteventhandler [\"buttonclick\"," !="ctrlSetEventHandler ['LBDblClick', '_this call" !="_buttonRespawn ctrlseteventhandler [\"buttonclick\",\"with uinamespace do {['buttonRespawn'," !="_ctrl ctrlSetEventHandler [\"mouseEnter\"" !="_ctrlBtn ctrlSetEventHandler [\"MouseButtonDblClick\", _verAct];" !="_button_gen ctrlSetEventHandler [\"ButtonClick\",_btn_code + \"(uiNamespace getVariable [\"" !="t \"#(rgb,8,8,3)color(1,1,1,0.1)\";\n_c ctrlCommit 0;\n_c ctrlSetEventHandler [\"MouseButtonUp\",format[\"['remove',%1,(_this select 1)" 5 addMPEventHandler 5 addEventHandler !"displayAddEventHandler" !"ctrlAddEventHandler" !="player addeventhandler [\"PostReset\",{BIS_EnginePPReset = true;} ];" !="player addEventHandler [_x,([\"CfgEpochClient\", _x, \"\"] call EPOCH_fnc_returnConfigEntryV2)];" !="\"CBA_fnc_addEventHandler\"" !="\\fnc_addEventHandler" !="\"addEventHandler" !="_eventFunc = _eventFunc + \"(_this select 0) addEventHandler ['Respawn', \" + str _eventFunc + \"];\";" !="_unit addEventHandler [\"hitpart\"," !="CBA_fnc_addEventHandler" !="_unit addEventHandler [_x, format ['call cba_xeh_fnc_%1', _x]];" !="_ship addEventHandler [\"AttributesChanged3DEN\"" !="addEventHandler [\"HandleDamage\",bis_fnc_reviveOnPlayerHandleDamage];" !="_unit addEventHandler [\"FiredNear\"" !="_smokeEH = _plyr addEventHandler [\"FiredNear\", \"airDropHandle setFSMVariable" !="_onContactEH = _currentTarget addEventHandler[\"EpeContactStart"" !="_object addeventhandler [\"local\",{[[_this select 0],\"bis_fnc_objectVar\"" 5 displayAddEventHandler !="(findDisplay 46) displayAddEventHandler [\"KeyDown\",\"true\"];" !="displayAddEventHandler [_x,([\"CfgEpochClient\", _x, \"\"] call EPOCH_fnc_returnConfigEntryV2)];" !="displayaddeventhandler [\"mousemoving\"," !="_display displayaddeventhandler [\"unload\",\"uinamespace setvariable ['BIS_fnc_guiMess" !="findDisplay -1337 displayAddEventHandler ['Unload'" !="_display displayaddeventhandler [\"keydown\",\"with uinamespace do {['keyDown'" !="_display displayaddeventhandler [_x,_fnc_animate];" !="Development\") then\n{\n_display displayaddeventhandler [\n\"keydown\"" !="CBA_fnc_addDisplayHandler" !="_display displayAddEventHandler [\"MouseMoving" !="private _handler = _display displayAddEventHandler [_key, _code];" !="_display displayAddEventHandler [\"KeyDown\", \"_this call cba_keybinding_fnc_onKeyDown\"" !="isplay 602};\n\n_display = (findDisplay 602);\n_display displayAddEventHandler [\"MouseButtonUp\",\"[] spawn {rmx_var_fav_selected = f" !="displayaddeventhandler\n[\n\"mousemoving\"" 5 ctrlAddEventHandler !="_control = _display displayctrl 37305; \n_control ctrladdeventhandler" !="_ctrlMap = _display displayctrl 101;\n_ctrlMap ctrladdeventhandler" !="_display displayctrl 21995;\n_assetsButton ctrladdeventhandler [\"buttonclick\"," !="_display displayctrl 2406; \n_control ctrladdeventhandler [\"buttonclick\"," !="_display displayctrl 2400;\n_control ctrladdeventhandler [\"buttonclick\"," !="ctrladdeventhandler [\"lbselchanged\"," !="ctrladdeventhandler [\n\"lbselchanged\"," !="_ButtonGeneral ctrladdeventhandler [\"buttonclick\"," !="_ctrlExecuteLocal ctrladdeventhandler [\"buttonclick\"," !="_bg ctrlAddEventHandler [\"MouseEnter\"," !="_container ctrlAddEventHandler [\"LBDblClick\",\"_this call EPOCH_itemInteractClick\"];" !="(uiNamespace getVariable 'ESP_map') ctrlAddEventHandler['Draw', '_esp_targets = EPOCH_ESPMAP_TARGETS;" !="ctrlAddEventHandler ['MouseButtonDown'" !="_ctrl ctrlSetEventHandler [\"mouseEnter\", (format [\"_c = _this select 0;" !="_ctrl ctrlSetEventHandler [\"mouseExit\", (format [\"_c = _this select 0;" !="_ctrl ctrlSetEventHandler [\"mouseButtonDown\", (format [\"call %1;\",(_buttonSettings select _e select 2)])];" !="_prevButton ctrlAddEventHandler [\"MouseButtonUp\", {_this call cba_diagnostic_fnc_debug" !="BIS_RscRespawnControlsMap_ctrlHeaderRespawnButton ctrlAddEventhandler [\"ButtonDown\"" !="_control = _display displayctrl 105;\n_control ctrladdeventhandler [\"MouseButtonUp\"" !="ctrlHeaderRespawnButton\", controlNull]) ctrlAddEventhandler [\"ButtonDown\"" !="_selected = false;\n{\n_c = _display displayCtrl _x;\n_c ctrlAddEventHandler [\"LBDrag\",\"rmx_var_favBar_Item = (_this call epoch_fav" !="_ctrlMouseArea ctrladdeventhandler [\"setfocus\",{with uinamespace do {[\"dlcClear\",[ctrlpar" !="13484 ctrlAddEventHandler [\"ButtonClick\", {[\"executeButton\"," 5 removeAllEventHandlers !"ctrlRemoveAllEventHandlers" !"displayRemoveAllEventHandlers" !="_vehicle removeAllEventHandlers \"GetOut\";" !="_sapper removeAllEventHandlers \"Hit\";\n_sapper removeAllEventHandlers \"FiredNear\";" !="_unit removeAllEventHandlers \"Hit\";\n_unit removeAllEventHandlers \"FiredNear\";" !="{_ship removeAllEventHandlers _x;} forEach [\"AttributesChanged3DEN\"" !="_zombie removeAllEventHandlers \"Hit\";" !="_zombie removeAllEventHandlers \"FiredNear\";" 5 displayRemoveAllEventHandlers !="_display displayRemoveAllEventHandlers _x;" !="if !(isMultiplayer) then { { (findDisplay 46) displayRemoveAllEventHandlers _x } forEach [\"KeyUp\", \"KeyDown\"] };" 5 removeAllMissionEventHandlers 5 ctrlRemoveAllEventHandlers !="(uiNamespace getVariable 'ESP_map') ctrlRemoveAllEventHandlers 'Draw';" !="ctrlAddEventHandler ['MouseButtonDown'" 5 removeEventHandler !="displayRemoveEventHandler" !="player removeEventHandler ['Fired', 0];" !="_currentTarget removeEventHandler[\"EpeContactStart\", _onContactEH]" !=" [_adminVar,objnull];\npublicvariable _adminVar;\nplayer removeeventhandler [\"respawn\",_respawn];" !="_plyr removeEventHandler [\"FiredNear\", _smokeEH];" !="player removeEventHandler [_ehKey, 0];" !="player removeEventHandler [_x, 0];" !="\"CBA_fnc_removeEventHandler\"" !="\\fnc_removeEventHandler" !="\"removeEventHandler" 5 switchCamera !="vehicle player switchCamera" !="_antagonist switchCamera \"Internal\";" 5 remoteControl !="fn_moduleRemoteControl.sqf" !="\"BIS_fnc_moduleRemoteControl\"" 5 drawIcon3D !="EPOCH_drawIcon3dStability" !="EPOCH_drawIcon3d" !="drawIcon3D[\"\x\addons\a3_epoch_code\Data\Member.paa\",_color,_pos,1,1,0,_text,1,0.025,\"PuristaMedium\"];\n}forEach EPOCH_ESP_TARGETS;" !="drawIcon3D[format[\"\x\addons\a3_epoch_code\Data\UI\loading_bar_%1.paa\",_stability],_color,(getPosATL EPOCH_stabilityTarget),5,5,0,\"\",1,0.05,\"PuristaMedium\"];" !="drawIcon3D[format[\"\x\addons\a3_epoch_code\Data\UI\loading_bar_%1.paa\",_num],_color,_pos,4,4,0,\"\",1,0.05,\"PuristaMedium\"];" !="if (_condition) then {\ndrawIcon3D [_icon, _color, _position, _sizeX, _sizeY, _angle, _text," !="drawIcon3D [\"\A3\UI_F_MP_Mark\Data\Tasks\Misc\background.paa\"" !="drawIcon3D\n[\n(_x getVariable [\"bis_fnc_reviveGet3dIcons_textures" !="drawIcon3D[\"x\addons\a3_epoch_code\Data\UI\snap_ca.paa\"" !="drawIcon3D [\"\a3\ui_f\data\map\diary\icons\unitgroup_ca.paa\"" 5 drawLine3D !="{\nfor [{_i = 1}, {_i < count _x}, {_i = _i + 1}] do {\ndrawLine3D [_x select (_i - 1), _x select _i, ((BIS_tracedShooter getVari" !="drawLine3D [ASLToAGL (getposasl _SnapObj1),ASLToAGL (getposasl _SnapObj2), [1,0,0,1]];" 5 ctrlCreate !="_parent ctrlcreate [\"RscMessageBox\",2351];" !="_c = _dsp ctrlCreate [\"rmx_drag_RscActivePicture\", call epoch_getIDC];" !="_c = _dsp ctrlCreate [\"rmx_t1\", call epoch_getIDC];" !="ctrlCreate [\"RscProgress\",_idc + 1];" !="ctrlCreate [\"rmx_rscControlsGroup\"" !="_ListGroup = _display ctrlCreate [\"RscControlsGroupNoHScrollbars\"" !="ctrlCreate [_x,call _getIDC];" !="_mainGrp = _display ctrlCreate [\"Epoch_main_config_group\",_value];" !="ctrlCreate !="_prevButton = _display ctrlCreate [\"RscButtonMenu\", 90110, _dbg];" [\"RscControlsGroupNoScrollbars\",call epoch_getIDC];" !="ctrlCreate [\"rmx_rscPicture\",(66600 + _e)];" !="ctrlCreate [\"RscStructuredText\",call epoch_getIDC];" !="_bar = _display ctrlCreate [\"RscCustomProgress\"" !="_group = _dsp ctrlCreate [\"rmx_rscControlsGroup\", call Epoch_getIDC]" !="_control = _display ctrlCreate [\"RscControlsGroupNoScrollbars\", 5678910];" 5 ctrlClassName 5 ctrlModel 5 ctrlModelDirection 5 ctrlModelSide 5 ctrlModelUp 5 ctrlSetDirection 5 deleteVehicleCrew !="fn_deleteVehicleCrew.sqf" !="\"BIS_fnc_deleteVehicleCrew\"" 5 selectPlayer !="selectPlayer _playerObject;" 5 setGroupIconsVisible 5 setGroupIconsVisible 5 setGroupIconsSelectable 5 setGroupIconParams 5 addGroupIcon server.rpt Reveal hidden contents ===================================================================== == C:\TCAFiles\Users\nathanielj1\15046\arma3server.exe == C:\TCAFiles\Users\nathanielj1\15046\arma3server.exe -ip=181.214.149.23 -port=2302 -profiles=Arma3Config -name=Arma3Config -config=Arma3Config\config.cfg -cfg=Arma3Config\arma3.cfg -servermod="@EpochHive;" -mod="@Epoch;" -autoInit -loadMissionToMemory Original output filename: Arma3Retail_Server Exe timestamp: 2018/07/24 22:39:33 Current time: 2018/10/15 18:57:13 Type: Public Build: Stable Version: 1.84.144923 Allocator: C:\TCAFiles\Users\nathanielj1\15046\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0] PhysMem: 64 GiB, VirtMem : 4.0 GiB, AvailPhys : 8.9 GiB, AvailVirt : 3.9 GiB, AvailPage : 20 GiB ===================================================================== 18:57:13 SteamAPI initialization failed. Steam features won't be accessible! 18:57:13 Cannot register unknown string STR_3DEN_CAMERA_NAME 18:57:13 Cannot register unknown string STR_DIFF_SCENE_ONLY 18:57:13 Cannot register unknown string STR_DIFF_SCENE_AND_MAP 18:57:13 Initializing stats manager. 18:57:13 Stats config disabled. 18:57:13 sessionID: 7cd8961d088e6ac9e1ff14e997c2f68dd29ffaa3 18:57:19 Unsupported language English in stringtable 18:57:19 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice 18:57:21 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin) 18:57:21 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin) 18:57:21 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin) 18:57:21 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin) 18:57:21 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin) 18:57:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin) 18:57:22 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin) 18:57:22 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin) 18:57:22 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin) 18:57:22 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin) 18:57:22 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin) 18:57:22 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin) 18:57:22 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin) 18:57:22 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin) 18:57:22 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin) 18:57:22 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin) 18:57:22 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin) 18:57:22 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably). 18:57:22 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin) 18:57:22 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin) 18:57:22 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin) 18:57:22 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin) 18:57:22 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin) 18:57:22 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin) 18:57:22 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin) 18:57:22 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:57:22 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:57:22 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin) 18:57:22 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin) 18:57:22 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin) 18:57:22 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin) 18:57:22 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin) 18:57:22 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 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) 18:57:22 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin) 18:57:22 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin) 18:57:22 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin) 18:57:22 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin) 18:57:22 Updating base class ScrollBar->ScrollBar, by a3\ui_f_tank\config.bin/RscListNBox/ListScrollBar/ (original a3\ui_f_tank\config.bin) 18:57:23 Initializing Steam Manager 18:57:23 unable to load subscribed content list. list will be updated from steam 18:57:23 unable to load published content list. list will be updated from steam 18:57:23 unable to load cached items meta info. save and update functionality will be broken 18:57:23 Steam Manager initialized. 18:57:23 18:57:23 ==== Loaded addons ==== 18:57:23 18:57:23 dta\bin.pbo - 144923 18:57:23 dta\core.pbo - 129618 18:57:23 dta\languagecore_f.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a2_epoch_weapons.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets_1.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets_2.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_assets_3.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_code.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_community.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_configs.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_language.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_structures.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_vehicles.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_vehicles_1.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@Epoch\addons\a3_epoch_weapons.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\armor_f_tank.ebo - 132036 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\cargoposes_f_tank.ebo - 128283 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\characters_f_tank.ebo - 129798 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\data_f_tank.ebo - 128203 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\dubbing_f_tank.ebo - 127958 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\editorpreviews_f_tank.ebo - 131632 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\functions_f_tank.ebo - 125996 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\languagemissions_f_tank.ebo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\language_f_tank.ebo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\missions_f_tank.ebo - 130984 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\missions_f_tank_data.ebo - 128937 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\modules_f_tank.ebo - 129574 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\music_f_tank.ebo - 127912 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\props_f_tank.ebo - 131702 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\sounds_f_tank.ebo - 131364 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\structures_f_tank.ebo - 131803 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\ui_f_tank.ebo - 128232 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tank\addons\weapons_f_tank.pbo - 131482 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\characters_f_tacops.ebo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\data_f_tacops.ebo - 126731 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\dubbing_f_tacops.ebo - 129340 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\functions_f_tacops.ebo - 124382 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\languagemissions_f_tacops.ebo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\language_f_tacops.ebo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\missions_f_tacops.ebo - 131995 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\modules_f_tacops.ebo - 124298 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\music_f_tacops.ebo - 124064 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\sounds_f_tacops.ebo - 123795 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\tacops\addons\ui_f_tacops.ebo - 124116 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\air_f_orange.pbo - 132035 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\cargoposes_f_orange.pbo - 126225 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\characters_f_orange.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\data_f_orange.pbo - 121095 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\dubbing_f_orange.pbo - 121689 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\editorpreviews_f_orange.pbo - 123173 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\functions_f_orange.pbo - 128287 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\languagemissions_f_orange.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\language_f_orange.pbo - 132196 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\missions_f_orange.pbo - 126711 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\modules_f_orange.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\music_f_orange.pbo - 120725 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\props_f_orange.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\soft_f_orange.pbo - 132239 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\sounds_f_orange.pbo - 122301 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\structures_f_orange.pbo - 132196 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\supplies_f_orange.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\ui_f_orange.pbo - 123398 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\orange\addons\weapons_f_orange.pbo - 130995 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\armor_f_argo.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\characters_f_patrol.pbo - 129998 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\data_f_argo.pbo - 128209 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\data_f_patrol.pbo - 121287 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\editorpreviews_f_argo.pbo - 121102 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\functions_f_patrol.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\languagemissions_f_patrol.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\language_f_argo.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\language_f_patrol.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden.pbo - 129554 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden_data.pbo - 126137 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden_data_layers.pbo - 123441 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\map_malden_scenes_f.pbo - 120026 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\missions_f_patrol.pbo - 126663 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\modules_f_patrol.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\music_f_argo.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\props_f_argo.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\rocks_f_argo.pbo - 123488 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\sounds_f_patrol.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\structures_f_argo.pbo - 128082 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\ui_f_patrol.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\vegetation_f_argo.pbo - 123488 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\argo\addons\weapons_f_patrol.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\air_f_jets.pbo - 132072 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\anims_f_jets.pbo - 123210 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\boat_f_destroyer.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\boat_f_jets.pbo - 129607 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\cargoposes_f_jets.pbo - 126225 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\characters_f_jets.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\data_f_destroyer.pbo - 132156 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\data_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\data_f_sams.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\dubbing_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\editorpreviews_f_destroyer.pbo - 132141 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\editorpreviews_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\editorpreviews_f_sams.pbo - 132141 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\functions_f_destroyer.pbo - 132075 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\functions_f_jets.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\languagemissions_f_jets.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\language_f_destroyer.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\language_f_jets.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\language_f_sams.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\missions_f_jets.pbo - 130755 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\modules_f_jets.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\music_f_jets.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\props_f_destroyer.pbo - 132141 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\props_f_jets.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\sounds_f_jets.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\static_f_destroyer.pbo - 132329 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\static_f_jets.pbo - 131969 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\static_f_sams.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\ui_f_jets.pbo - 126137 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\weapons_f_destroyer.pbo - 132155 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\weapons_f_jets.pbo - 131383 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\jets\addons\weapons_f_sams.pbo - 132140 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\air_f_exp.pbo - 132062 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\anims_f_exp.pbo - 126506 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\armor_f_exp.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\boat_f_exp.pbo - 129747 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\cargoposes_f_exp.pbo - 126224 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\characters_f_exp.pbo - 129738 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\data_f_exp.pbo - 128203 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_f_exp.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp.pbo - 119458 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\editorpreviews_f_exp.pbo - 126519 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\functions_f_exp.pbo - 132366 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\languagemissions_f_exp.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\language_f_exp.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_data_exp.pbo - 123499 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka.pbo - 130033 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka_data.pbo - 123523 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka_data_layers.pbo - 121192 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\map_tanoa_scenes_f.pbo - 123527 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\missions_f_exp.pbo - 132366 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\missions_f_exp_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\missions_f_exp_video.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\modules_f_exp.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\music_f_exp.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\music_f_exp_music.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\props_f_exp.pbo - 130646 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\rocks_f_exp.pbo - 129683 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\soft_f_exp.pbo - 130182 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\sounds_f_exp.pbo - 131659 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\static_f_exp.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp.pbo - 132109 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_civilian.pbo - 131934 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_commercial.pbo - 123430 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_cultural.pbo - 123423 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_data.pbo - 123431 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_industrial.pbo - 123429 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\structures_f_exp_infrastructure.pbo - 132117 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\supplies_f_exp.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\ui_f_exp.pbo - 123398 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\vegetation_f_exp.pbo - 127271 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\expansion\addons\weapons_f_exp.pbo - 131546 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\anims_f_mark.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\characters_f_mark.pbo - 129739 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\data_f_mark.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\dubbing_f_mark.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\dubbing_f_mp_mark.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\functions_f_mark.pbo - 129645 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\functions_f_mp_mark.pbo - 129434 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\languagemissions_f_mark.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\languagemissions_f_mp_mark.pbo - 132106 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\language_f_mark.pbo - 132105 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\language_f_mp_mark.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mark.pbo - 122301 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mark_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mark_video.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mp_mark.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\missions_f_mp_mark_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\modules_f_mark.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\modules_f_mp_mark.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\music_f_mark.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\music_f_mark_music.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\sounds_f_mark.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\static_f_mark.pbo - 130728 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\structures_f_mark.pbo - 123419 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\supplies_f_mark.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\ui_f_mark.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\ui_f_mp_mark.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\mark\addons\weapons_f_mark.pbo - 131460 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\air_f_heli.pbo - 132035 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\anims_f_heli.pbo - 123210 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\boat_f_heli.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\cargoposes_f_heli.pbo - 126231 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\data_f_heli.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\dubbing_f_heli.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\functions_f_heli.pbo - 123022 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\languagemissions_f_heli.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\language_f_heli.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\missions_f_heli.pbo - 129397 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\missions_f_heli_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\missions_f_heli_video.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\modules_f_heli.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\music_f_heli.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\music_f_heli_music.pbo - 119477 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\soft_f_heli.pbo - 129742 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\sounds_f_heli.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\structures_f_heli.pbo - 129596 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\supplies_f_heli.pbo - 129371 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\heli\addons\ui_f_heli.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\anims_f_kart.pbo - 123210 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\characters_f_kart.pbo - 120162 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\data_f_kart.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\languagemissions_f_kart.pbo - 132104 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\language_f_kart.pbo - 132105 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\missions_f_kart.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\missions_f_kart_data.pbo - 119459 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\modules_f_kart.pbo - 128288 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\modules_f_kart_data.pbo - 124178 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\soft_f_kart.pbo - 129741 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\sounds_f_kart.pbo - 125381 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\structures_f_kart.pbo - 123419 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\ui_f_kart.pbo - 119478 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\kart\addons\weapons_f_kart.pbo - 120217 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\data_f_curator.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\data_f_curator_music.pbo - 119457 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\functions_f_curator.pbo - 123333 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\language_f_curator.pbo - 132107 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\missions_f_curator.pbo - 121570 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\modules_f_curator.pbo - 128381 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\curator\addons\ui_f_curator.pbo - 130996 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_core.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_debris_event.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_events.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_settings.pbo - unknown 18:57:23 C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\addons\epoch_server_vip_event.pbo - unknown 18:57:23 addons\3den.pbo - 131733 18:57:23 addons\3den_language.pbo - 132107 18:57:23 addons\a3.pbo - unknown 18:57:23 addons\air_f.pbo - 132032 18:57:23 addons\air_f_beta.pbo - 132118 18:57:23 addons\air_f_epb.pbo - 132034 18:57:23 addons\air_f_epc.pbo - 129848 18:57:23 addons\air_f_gamma.pbo - 130580 18:57:23 addons\animals_f.pbo - 131659 18:57:23 addons\animals_f_beta.pbo - 123208 18:57:23 addons\anims_f.pbo - 127133 18:57:23 addons\anims_f_bootcamp.pbo - 123209 18:57:23 addons\anims_f_data.pbo - 127133 18:57:23 addons\anims_f_epa.pbo - 129908 18:57:23 addons\anims_f_epc.pbo - 121358 18:57:23 addons\anims_f_exp_a.pbo - 123209 18:57:23 addons\armor_f.pbo - 129739 18:57:23 addons\armor_f_beta.pbo - 132035 18:57:23 addons\armor_f_epb.pbo - 129739 18:57:23 addons\armor_f_epc.pbo - 129739 18:57:23 addons\armor_f_gamma.pbo - 132036 18:57:23 addons\baseconfig_f.pbo - 119457 18:57:23 addons\boat_f.pbo - 132036 18:57:23 addons\boat_f_beta.pbo - 132036 18:57:23 addons\boat_f_epc.pbo - 131911 18:57:23 addons\boat_f_gamma.pbo - 127529 18:57:23 addons\cargoposes_f.pbo - 128420 18:57:23 addons\characters_f.pbo - 130081 18:57:23 addons\characters_f_beta.pbo - 129738 18:57:23 addons\characters_f_bootcamp.pbo - 129738 18:57:23 addons\characters_f_epa.pbo - 129738 18:57:23 addons\characters_f_epb.pbo - 129738 18:57:23 addons\characters_f_epc.pbo - 129738 18:57:23 addons\characters_f_gamma.pbo - 129738 18:57:23 addons\data_f.pbo - 132155 18:57:23 addons\data_f_bootcamp.pbo - 129618 18:57:23 addons\data_f_exp_a.pbo - 119457 18:57:23 addons\data_f_exp_b.pbo - 119457 18:57:23 addons\drones_f.pbo - 132036 18:57:23 addons\dubbing_f.pbo - 119457 18:57:23 addons\dubbing_f_beta.pbo - 119457 18:57:23 addons\dubbing_f_bootcamp.pbo - 119457 18:57:23 addons\dubbing_f_epa.pbo - 119457 18:57:23 addons\dubbing_f_epb.pbo - 119457 18:57:23 addons\dubbing_f_epc.pbo - 119457 18:57:23 addons\dubbing_f_gamma.pbo - 122449 18:57:23 addons\dubbing_radio_f.pbo - 119457 18:57:23 addons\dubbing_radio_f_data_eng.pbo - 119457 18:57:23 addons\dubbing_radio_f_data_engb.pbo - 119458 18:57:23 addons\dubbing_radio_f_data_gre.pbo - 119458 18:57:23 addons\dubbing_radio_f_data_per.pbo - 119458 18:57:23 addons\dubbing_radio_f_data_vr.pbo - 119458 18:57:23 addons\editorpreviews_f.pbo - 128120 18:57:23 addons\editor_f.pbo - 121103 18:57:23 addons\functions_f.pbo - 132155 18:57:23 addons\functions_f_bootcamp.pbo - 129770 18:57:23 addons\functions_f_epa.pbo - 119458 18:57:23 addons\functions_f_epc.pbo - 119458 18:57:23 addons\functions_f_exp_a.pbo - 122619 18:57:23 addons\languagemissions_f.pbo - 132104 18:57:23 addons\languagemissions_f_beta.pbo - 132104 18:57:23 addons\languagemissions_f_bootcamp.pbo - 132107 18:57:23 addons\languagemissions_f_epa.pbo - 132104 18:57:23 addons\languagemissions_f_epb.pbo - 132104 18:57:23 addons\languagemissions_f_epc.pbo - 132123 18:57:23 addons\languagemissions_f_exp_a.pbo - 132107 18:57:23 addons\languagemissions_f_gamma.pbo - 132104 18:57:23 addons\language_f.pbo - 132107 18:57:23 addons\language_f_beta.pbo - 132107 18:57:23 addons\language_f_bootcamp.pbo - 132104 18:57:23 addons\language_f_epa.pbo - 132104 18:57:23 addons\language_f_epb.pbo - 132107 18:57:23 addons\language_f_epc.pbo - 132104 18:57:23 addons\language_f_exp_a.pbo - 132104 18:57:23 addons\language_f_exp_b.pbo - 132104 18:57:23 addons\language_f_gamma.pbo - 132107 18:57:23 addons\map_altis.pbo - 127995 18:57:23 addons\map_altis_data.pbo - 123439 18:57:23 addons\map_altis_data_layers.pbo - 123456 18:57:23 addons\map_altis_data_layers_00_00.pbo - 0000 18:57:23 addons\map_altis_data_layers_00_01.pbo - 0000 18:57:23 addons\map_altis_data_layers_01_00.pbo - 0000 18:57:23 addons\map_altis_data_layers_01_01.pbo - 0000 18:57:23 addons\map_altis_scenes_f.pbo - 119459 18:57:23 addons\map_data.pbo - 127098 18:57:23 addons\map_stratis.pbo - 129518 18:57:23 addons\map_stratis_data.pbo - 122905 18:57:23 addons\map_stratis_data_layers.pbo - 122917 18:57:23 addons\map_stratis_scenes_f.pbo - 119459 18:57:23 addons\map_vr.pbo - 131719 18:57:23 addons\map_vr_scenes_f.pbo - 119459 18:57:23 addons\misc_f.pbo - 119459 18:57:23 addons\missions_f.pbo - 129735 18:57:23 addons\missions_f_beta.pbo - 122470 18:57:23 addons\missions_f_beta_data.pbo - 119459 18:57:23 addons\missions_f_beta_video.pbo - 119459 18:57:23 addons\missions_f_bootcamp.pbo - 129645 18:57:23 addons\missions_f_bootcamp_data.pbo - 119459 18:57:23 addons\missions_f_bootcamp_video.pbo - 119459 18:57:23 addons\missions_f_data.pbo - 119459 18:57:23 addons\missions_f_epa.pbo - 132216 18:57:23 addons\missions_f_epa_data.pbo - 119459 18:57:23 addons\missions_f_epa_video.pbo - 119459 18:57:23 addons\missions_f_epb.pbo - 119459 18:57:23 addons\missions_f_epc.pbo - 119459 18:57:23 addons\missions_f_exp_a.pbo - 121496 18:57:23 addons\missions_f_exp_a_data.pbo - 119459 18:57:23 addons\missions_f_gamma.pbo - 131918 18:57:23 addons\missions_f_gamma_data.pbo - 119459 18:57:23 addons\missions_f_gamma_video.pbo - 119459 18:57:23 addons\missions_f_video.pbo - 119459 18:57:23 addons\modules_f.pbo - 124453 18:57:23 addons\modules_f_beta.pbo - 119459 18:57:23 addons\modules_f_beta_data.pbo - 119459 18:57:23 addons\modules_f_bootcamp.pbo - 119459 18:57:23 addons\modules_f_data.pbo - 122470 18:57:23 addons\modules_f_epb.pbo - 119459 18:57:23 addons\modules_f_exp_a.pbo - 119459 18:57:23 addons\music_f.pbo - 119459 18:57:23 addons\music_f_bootcamp.pbo - 119459 18:57:23 addons\music_f_bootcamp_music.pbo - 119459 18:57:23 addons\music_f_epa.pbo - 119459 18:57:23 addons\music_f_epa_music.pbo - 119459 18:57:23 addons\music_f_epb.pbo - 119459 18:57:23 addons\music_f_epb_music.pbo - 119459 18:57:23 addons\music_f_epc.pbo - 119459 18:57:23 addons\music_f_epc_music.pbo - 119477 18:57:23 addons\music_f_music.pbo - 119477 18:57:23 addons\plants_f.pbo - 126807 18:57:23 addons\props_f_exp_a.pbo - 129371 18:57:23 addons\roads_f.pbo - 127271 18:57:23 addons\rocks_f.pbo - 127271 18:57:23 addons\signs_f.pbo - 127272 18:57:23 addons\soft_f.pbo - 132036 18:57:23 addons\soft_f_beta.pbo - 132036 18:57:23 addons\soft_f_bootcamp.pbo - 129739 18:57:23 addons\soft_f_epc.pbo - 129739 18:57:23 addons\soft_f_gamma.pbo - 131376 18:57:23 addons\sounds_f.pbo - 132162 18:57:23 addons\sounds_f_arsenal.pbo - 127887 18:57:23 addons\sounds_f_bootcamp.pbo - 119477 18:57:23 addons\sounds_f_characters.pbo - 121082 18:57:23 addons\sounds_f_environment.pbo - 120046 18:57:23 addons\sounds_f_epb.pbo - 126923 18:57:23 addons\sounds_f_epc.pbo - 125380 18:57:23 addons\sounds_f_exp_a.pbo - 119477 18:57:23 addons\sounds_f_sfx.pbo - 119477 18:57:23 addons\sounds_f_vehicles.pbo - 128448 18:57:23 addons\static_f.pbo - 132036 18:57:23 addons\static_f_beta.pbo - 122642 18:57:23 addons\static_f_gamma.pbo - 122615 18:57:23 addons\structures_f.pbo - 131287 18:57:23 addons\structures_f_bootcamp.pbo - 123488 18:57:23 addons\structures_f_data.pbo - 130046 18:57:23 addons\structures_f_epa.pbo - 123407 18:57:23 addons\structures_f_epb.pbo - 126137 18:57:23 addons\structures_f_epc.pbo - 123407 18:57:23 addons\structures_f_exp_a.pbo - 123423 18:57:23 addons\structures_f_households.pbo - 129369 18:57:23 addons\structures_f_ind.pbo - 130947 18:57:23 addons\structures_f_mil.pbo - 127270 18:57:23 addons\structures_f_wrecks.pbo - 129371 18:57:23 addons\uifonts_f.pbo - 119478 18:57:23 addons\uifonts_f_data.pbo - 128439 18:57:23 addons\ui_f.pbo - 131720 18:57:23 addons\ui_f_bootcamp.pbo - 119478 18:57:23 addons\ui_f_data.pbo - 129859 18:57:23 addons\ui_f_exp_a.pbo - 119478 18:57:23 addons\weapons_f.pbo - 132157 18:57:23 addons\weapons_f_beta.pbo - 130487 18:57:23 addons\weapons_f_bootcamp.pbo - 124358 18:57:23 addons\weapons_f_epa.pbo - 124514 18:57:23 addons\weapons_f_epb.pbo - 124216 18:57:23 addons\weapons_f_epc.pbo - 130416 18:57:23 addons\weapons_f_gamma.pbo - 120217 18:57:23 18:57:23 ======================= 18:57:23 18:57:23 ============================================================================================= List of mods =============================================================================================== 18:57:23 modsReadOnly = true 18:57:23 safeModsActivated = false 18:57:23 customMods = true 18:57:23 hash = 'D11197DD33109AAEF101874F9CD69E78C95749A1' 18:57:23 hashShort = '24b64821' 18:57:23 name | modDir | default | origin | hash | hashShort | fullPath 18:57:23 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 18:57:23 Epoch Mod 1.2.0 | @Epoch | false | GAME DIR | 02ed17fb0b0b859b45ac71ba84bd2285d66b3a71 | 4efd885a | C:\TCAFiles\Users\nathanielj1\15046\@Epoch 18:57:23 Arma 3 DLC Bundle 2 | dlcbundle2 | true | NOT FOUND | | | 18:57:23 Arma 3 DLC Bundle 1 | dlcbundle | true | NOT FOUND | | | 18:57:23 Arma 3 Tanks | tank | true | GAME DIR | 2bb31a61f207ce3731c49bc04f74f83869e9d520 | 3c916866 | C:\TCAFiles\Users\nathanielj1\15046\tank 18:57:23 Arma 3 Tac-Ops | tacops | true | GAME DIR | 2f25d6c15d999303bfeafc6acc5ea03d366f6180 | 80a05d1 | C:\TCAFiles\Users\nathanielj1\15046\tacops 18:57:23 Arma 3 Laws of War | orange | true | GAME DIR | d8184520c36a84101cd0c179f415f720ec3827ac | e6b18e89 | C:\TCAFiles\Users\nathanielj1\15046\orange 18:57:23 Arma 3 Malden | argo | true | GAME DIR | 00f37f3df7324bde5a9c6948c4209dd2bfc523fb | e63cbefc | C:\TCAFiles\Users\nathanielj1\15046\argo 18:57:23 Arma 3 Jets | jets | true | GAME DIR | 304f5089d60d4023701471d276626aa2809f833a | b486847 | C:\TCAFiles\Users\nathanielj1\15046\jets 18:57:23 Arma 3 Apex | expansion | true | GAME DIR | 2cf0f107eb7e4097fecdbb598a99dbac0c8d5f22 | d938f4af | C:\TCAFiles\Users\nathanielj1\15046\expansion 18:57:23 Arma 3 Marksmen | mark | true | GAME DIR | b494f3c091d8febad254479f4e5cfb748423110c | bdcf5b5e | C:\TCAFiles\Users\nathanielj1\15046\mark 18:57:23 Arma 3 Helicopters | heli | true | GAME DIR | b3b5c6ce05bfcb23cda002553f2bdfab7d464980 | e345e686 | C:\TCAFiles\Users\nathanielj1\15046\heli 18:57:23 Arma 3 Karts | kart | true | GAME DIR | b0986e5d7cae802e2fcb334c6344535637b9acf8 | f58753fb | C:\TCAFiles\Users\nathanielj1\15046\kart 18:57:23 Arma 3 Zeus | curator | true | GAME DIR | 08d04c76323ed7cecf16b535abbf3a89e6fa1fba | 36cc0e59 | C:\TCAFiles\Users\nathanielj1\15046\curator 18:57:23 Arma 3 | A3 | true | NOT FOUND | | | 18:57:23 @EpochHive | @EpochHive | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\nathanielj1\15046\@EpochHive 18:57:23 ========================================================================================================================================================================================================== 18:57:23 InitSound ... 18:57:23 InitSound - complete 18:57:23 PhysX3 SDK Init started ... 18:57:23 PhysX3 SDK Init ended. 18:57:25 core\skyobject\skyobject.p3d: No geometry and no visual shape 18:57:25 a3\data_f\krater.p3d: No geometry and no visual shape 18:57:25 a3\data_f\koule.p3d: No geometry and no visual shape 18:57:26 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted. a3_characters_f 18:57:26 Loading movesType CfgGesturesMale 18:57:26 Creating action map cache 18:57:26 MovesType CfgGesturesMale load time 47 ms 18:57:26 Loading movesType CfgMovesMaleSdr 18:57:26 Reading cached action map data 18:57:27 MovesType CfgMovesMaleSdr load time 1358 ms 18:57:27 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape 18:57:27 VoteThreshold must be in 0..1 range. Defaulting to 0.5 18:57:27 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303 18:57:27 Steam AppId from steam_appid.txt: 107410 18:57:28 Starting mission: 18:57:28 Mission file: epoch (__cur_mp) 18:57:28 Mission world: Altis 18:57:28 Mission directory: mpmissions\__cur_mp.Altis\ 18:57:28 a3\data_f\blesk1.p3d: No geometry and no visual shape 18:57:28 a3\data_f\blesk2.p3d: No geometry and no visual shape 18:57:28 a3\data_f\raindrop.p3d: No geometry and no visual shape 18:57:28 a3\map_stratis\data\obloha.p3d: No geometry and no visual shape 18:57:28 a3\data_f\stars.p3d: No geometry and no visual shape 18:57:28 a3\map_stratis\data\horizont.p3d: No geometry and no visual shape 18:57:28 a3\data_f\rainbow.p3d: No geometry and no visual shape 18:57:32 Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 18:57:32 Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 18:57:32 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 18:57:32 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 18:57:32 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire 18:57:34 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 18:57:34 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:34 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:34 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:34 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 18:57:35 "CfgEpochCoreServerFunctions" 18:57:35 "Epoch: Advanced Vehicle Repair Enabled" 18:57:35 "Loading Functions: CfgServerFunctions" 18:57:35 Connected to Steam servers 18:57:35 "Epoch: Starting ArmA3 Epoch Server, Version 1.2.0. Note: If server crashes directly after this point check that Redis is running and the connection info is correct." 18:57:35 CallExtension loaded: epochserver (C:\TCAFiles\Users\nathanielj1\15046\@EpochHive\epochserver.dll) [] [] 18:57:35 "Epoch: Init Variables" 18:57:35 "Loading config..." 18:57:35 c:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing! 18:57:35 Mission id: cc5f3723dbbed9ef61f7e2ee3626a9986edceaf8 18:57:35 Attempt to override final function - bis_fnc_storeparamsvalues_data 18:57:35 Attempt to override final function - epoch_dyn_bankbalance 18:57:35 Attempt to override final function - epoch_dyn_resetgroup 18:57:35 Attempt to override final function - epoch_dyn_groupupdate 18:57:35 Attempt to override final function - epoch_dyn_groupuidupdate 18:57:35 Attempt to override final function - epoch_dyn_healplayer 18:57:35 Attempt to override final function - epoch_dyn_tradecomplete 18:57:35 Attempt to override final function - epoch_dyn_resettempgroup 18:57:35 Attempt to override final function - epoch_dyn_tempgroupupdate 18:57:35 Attempt to override final function - epoch_dyn_tempgroupuidupdate 18:57:35 Attempt to override final function - epoch_emdpgmjm 18:57:35 "Epoch: Set Real Time: [2018,10,15,18,57,35]" 18:57:35 "Epoch: Start Hive, Instance ID: '15046'" 18:57:35 "Epoch: Init Connect/Disconnect handlers" 18:57:35 "Epoch: Setup Side Settings" 18:57:35 "Epoch: Setup World Settings for Altis" 18:57:35 "Epoch: Loading buildings" 18:57:35 Attempt to override final function - oqurxuqme 18:57:35 Attempt to override final function - olsaym 18:57:35 Attempt to override final function - ycochmgf 18:57:35 Attempt to override final function - iqxpcxm 18:57:35 "[HSBlackmarket] Server Loading functions" 18:57:35 "[HSBlackmarket] Server adding PVEvent" 18:57:35 "[HSBlackmarket] Server Building traders ..." 18:57:35 "[HSBlackmarket]: Selected blacklisted areas for world: Altis" 18:57:35 "[HSBlackmarket]: Reverted _mindist '1562.5' to avoid problems" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (081107) [8164.07,10714.5]" 18:57:36 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 18:57:36 No speaker given for 'Panas Strambopoulos' 18:57:36 "[HSBlackmarket] Server: loading 'HALV_takegive_crypto.sqf'" 18:57:36 "[HSBlackmarket] Server: loading 'HALV_takegive' PVEvent" 18:57:36 a3\structures_f\mil\flags\flag_asym_f.p3d: No geometry and no visual shape 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 "Epoch: Loading teleports and static props" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (238159) [23881.8,15991.1]" 18:57:36 No speaker given for 'Vasilis Savalas' 18:57:36 a3\structures_f\mil\flags\flag_f.p3d: No geometry and no visual shape 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (147209) [14754.5,20966.3]" 18:57:36 No speaker given for 'Apostolos Papageorgiou' 18:57:36 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 18:57:36 "Epoch: Loading NPC traders" 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (108138) [10823.2,13889.5]" 18:57:36 No speaker given for 'Argyris Costas' 18:57:36 a3\characters_f_gamma\heads\glasses\g_aviators.p3d: No geometry and no visual shape 18:57:36 No speaker given for 'Pan Chong' 18:57:36 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:36 No speaker given for 'Hamidi Gowon' 18:57:36 "[HSBlackmarket]: Found position for a HSBlackmarket ... (210102) [21020.3,10225.6]" 18:57:36 No speaker given for 'Dimitris Cosmos' 18:57:36 a3\weapons_f\acc\reticle_nlaw.p3d: No geometry and no visual shape 18:57:36 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:37 "Epoch: Spawning NPC traders" 18:57:37 "Epoch: Loading vehicles" 18:57:37 a3\air_f\data\plane_flag_medium_f.p3d: No geometry and no visual shape 18:57:37 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape 18:57:37 "[HSBlackmarket]: Found position for a HSBlackmarket ... (115164) [11592.3,16464.3]" 18:57:37 No speaker given for 'Giourkas Savalas' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:37 "[HSBlackmarket]: Found position for a HSBlackmarket ... (103074) [10319,7412.34]" 18:57:37 No speaker given for 'Fotini Athanasiadis' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Marker" 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (184142) [18459.1,14259.2,0]" 18:57:37 No speaker given for 'Argyris Christou' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (133145) [13319,14523.9,0]" 18:57:37 No speaker given for 'Militiadis Melidoni' 18:57:37 "[HSBlackmarket]: HSBlackmarket Creating a Static trader @ (061168) [6193.02,16828.7,0]" 18:57:37 No speaker given for 'Gerasimos Kammenou' 18:57:37 "[HSBlackmarket] Server Done ..." 18:57:37 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire 18:57:37 Error: Wheel reference not initialized 18:57:37 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 18:57:37 Error: Wheel reference not initialized 18:57:37 a3\data_f\proxies\flags\flag_alone.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:38 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\solar_panels\solar_panels.p3d: No geometry and no visual shape 18:57:38 x\addons\a3_epoch_assets\models\rock.p3d: No geometry and no visual shape 18:57:38 x\addons\a3_epoch_weapons\1911_magazine.p3d: No geometry and no visual shape 18:57:38 a3\air_f_beta\heli_transport_02\main_rotor_center_f.p3d: No geometry and no visual shape 18:57:38 a3\air_f\data\plane_flag_big_f.p3d: No geometry and no visual shape 18:57:38 a3\air_f_beta\heli_transport_02\view_pilot_switches_f.p3d: No geometry and no visual shape 18:57:38 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire 18:57:38 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire 18:57:38 x\addons\a3_epoch_community\models\icecream.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_EPOCH' 18:57:38 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_EPOCH' 18:57:38 a3\air_f_heli\heli_transport_04\proxy_heli_transport_04_f.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 x\addons\a3_epoch_assets\models\rope.p3d: No geometry and no visual shape 18:57:38 Error: Wheel reference not initialized 18:57:38 Error: Wheel reference not initialized 18:57:38 Error: Wheel reference not initialized 18:57:38 a3\air_f\data\plane_flag_medium_inv_f.p3d: No geometry and no visual shape 18:57:39 O_Truck_02_covered_EPOCH: rear_hide - unknown animation source rear_hide 18:57:39 Render target memory points PIP5_pos & PIP5_dir not found. 18:57:39 Error: Wheel reference not initialized 18:57:39 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_box_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_box_EPOCH' 18:57:39 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 18:57:39 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape 18:57:39 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_bench_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_bench_EPOCH' 18:57:39 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_proxy_f.p3d: No geometry and no visual shape 18:57:39 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_black_proxy_f.p3d: No geometry and no visual shape 18:57:39 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 18:57:39 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_covered_EPOCH' 18:57:39 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_covered_EPOCH' 18:57:39 a3\air_f_heli\heli_transport_04\heli_transport_04_covered_proxy_f.p3d: No geometry and no visual shape 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "DEBUG: vehicle destroyed already (0) or invalid vehicle class: " 18:57:39 "Epoch: Vehicle SPAWN TIMER 2.602, LOADED 165 VEHICLES" 18:57:39 "Epoch: Spawning vehicles" 18:57:39 "DEBUG: All vehicles over limit" 18:57:39 "Epoch: Loading storage" 18:57:39 "Epoch: Storage SPAWN TIMER 0.130001 slots left: 1500" 18:57:39 "Epoch: Loading static loot" 18:57:45 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 18:57:45 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 18:57:45 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry 18:57:45 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 18:57:45 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 18:57:45 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView 18:57:48 Loading movesType CfgGesturesSapper 18:57:48 Creating action map cache 18:57:49 MovesType CfgGesturesSapper load time 30 ms 18:57:49 Loading movesType CfgMovesSapperSdr 18:57:49 Reading cached action map data 18:57:49 MovesType CfgMovesSapperSdr load time 869 ms 18:57:49 No such side 18:57:49 "Epoch: Server Start Complete: 14.154 seconds" 18:57:49 "DEBUG UNITTEST INIT: _payload count 128" 18:57:49 "DEBUG UNITTEST INIT: _payload_64k count 65536" 18:57:49 "Epoch UnitTest: version Time: 0 : 0.6.0.0 " 18:57:49 "Epoch UnitTest: 000 Time: 0 : [""15046"",0] " 18:57:49 "Epoch UnitTest: 510 Time: 0 : [2018,10,15,18,57,49] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSET Time: 0 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSET 64k Time: 0.00200272 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETBIT Time: 0 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETBIT Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETBIT Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETBIT Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETEX Time: 0 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveSETEX 64k Time: 0.0019989 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGET Time: 0.000999451 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGET 64k Time: 0.00300217 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETRANGE Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETRANGE 64k Time: 0.0039978 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveEXPIRE Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETTTL Time: 0 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveGETTTL 64k Time: 0.00300217 : [""isOK:"",true] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_DATA Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_DATA_64 Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_EXPIRES_DATA Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveDEL TEST_EXPIRES_DATA_64 Time: 0 : [1,""1""] " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveLog Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveLog 64k Time: 0.000999451 : " 18:57:49 "Epoch UnitTest: EPOCH_fnc_server_hiveMD5 Time: 0.000999451 : [""isOK:"",true] " 18:57:49 "Loaded Server FSM" 18:57:49 "Loading Settings for VIP event..." 18:57:49 "Loading Settings for DynamicDebris event..." 18:57:50 "DEBUG: server event ChangeWeather" 18:57:50 "DEBUG: server event \epoch_server_debris_event\EpochEvents\DynamicDebris.sqf" 18:57:50 "Epoch: Weather Change - fog: [0.0916859,0.106225,8.1531] rain: 0.72242 overcast: 0.912361 wind: [224.166,14.2513] wind-xy: [-9.32695,-9.05915] forced: false" 18:57:51 "DEBUG: server event removed \epoch_server_debris_event\EpochEvents\DynamicDebris.sqf" 19:00:28 BEServer: registering a new player #307205119 19:01:25 Unaccessible 19:01:26 Client: Remote object 3:0 not found 19:02:51 "DEBUG: server event PlantSpawner" 19:02:51 x\addons\a3_epoch_community\models\farming\poppy_plant.p3d: No geometry and no visual shape client.rpt Reveal hidden contents ===================================================================== == D:\SteamLibrary\steamapps\common\Arma 3\Arma3_x64.exe == "D:\SteamLibrary\steamapps\common\Arma 3\Arma3_x64.exe" "-mod=D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch" -beservice Original output filename: Arma3Retail_DX11_x64 Exe timestamp: 2018/07/24 22:21:25 Current time: 2018/10/15 18:59:28 Type: Public Build: Stable Version: 1.84.144923 Allocator: D:\SteamLibrary\steamapps\common\Arma 3\Dll\tbb4malloc_bi_x64.dll [2017.0.0.0] [2017.0.0.0] PhysMem: 16 GiB, VirtMem : 131072 GiB, AvailPhys : 11 GiB, AvailVirt : 131068 GiB, AvailPage : 12 GiB ===================================================================== 18:59:28 Detected number of DLCs: 20 18:59:28 DLC index:3 - unable to get DLC data 18:59:28 ----------------------------------------- Dlcs ----------------------------------------- 18:59:28 name appId owned installed available isDlc 18:59:28 Arma 3 107410 yes yes yes no 18:59:28 Unknown -1 no no no yes 18:59:28 Arma 3 Zeus 275700 yes yes yes yes 18:59:28 Arma 3 Helicopters 304380 yes yes yes yes 18:59:28 Arma 3 Laws of War 571710 yes yes yes yes 18:59:28 Arma 3 DLC Bundle 2 612480 yes yes yes yes 18:59:28 Arma 3 Malden 639600 yes yes yes yes 18:59:28 Arma 3 Tanks 798390 yes yes yes yes 18:59:28 Arma 3 Alpha Lite - expires now 228800 no no no yes 18:59:28 Arma 3 Server 233780 yes yes no yes 18:59:28 Arma 3 Soundtrack 249860 yes yes no yes 18:59:28 Arma 3 DLC Bundle 1 304400 yes yes yes yes 18:59:28 Arma 3 Samples 390500 yes yes no yes 18:59:28 Arma 3 Apex 395180 yes yes yes yes 18:59:28 Arma 3 Jets 601670 yes yes yes yes 18:59:28 Arma 3 Tac-Ops Mission Pack 744950 yes yes yes yes 18:59:28 Arma 3 Maps 249861 yes yes no yes 18:59:28 Arma 3 Tactical Guide 249862 yes yes no yes 18:59:28 Arma 3 Tools 233800 yes yes no yes 18:59:28 Arma 3 Karts 288520 yes yes yes yes 18:59:28 Arma 3 Marksmen 332350 yes yes yes yes 18:59:28 ---------------------------------------------------------------------------------------- 18:59:29 Cannot register unknown string STR_3DEN_CAMERA_NAME 18:59:29 Cannot register unknown string STR_DIFF_SCENE_ONLY 18:59:29 Cannot register unknown string STR_DIFF_SCENE_AND_MAP 18:59:30 Initializing stats manager. 18:59:30 sessionID: d2dd5c09ce50b27f2ffa5e9530ac7a3c35af2620 18:59:39 Unsupported language English in stringtable 18:59:39 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice 18:59:48 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin) 18:59:48 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin) 18:59:48 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin) 18:59:48 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin) 18:59:48 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin) 18:59:48 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin) 18:59:48 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin) 18:59:48 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin) 18:59:48 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin) 18:59:48 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin) 18:59:48 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin) 18:59:48 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin) 18:59:48 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin) 18:59:48 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably). 18:59:48 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin) 18:59:48 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin) 18:59:48 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin) 18:59:48 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin) 18:59:48 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin) 18:59:48 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin) 18:59:48 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin) 18:59:48 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin) 18:59:48 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin) 18:59:48 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin) 18:59:48 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin) 18:59:48 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin) 18:59:48 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin) 18:59:48 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin) 18:59:48 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:48 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) 18:59:49 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 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) 18:59:49 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin) 18:59:49 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin) 18:59:49 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin) 18:59:49 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin) 18:59:49 Updating base class ScrollBar->ScrollBar, by a3\ui_f_tank\config.bin/RscListNBox/ListScrollBar/ (original a3\ui_f_tank\config.bin) 18:59:55 Initializing Steam Manager 18:59:55 Starting initial content check. 18:59:55 Steam Manager initialized. 18:59:55 18:59:55 ==== Loaded addons ==== 18:59:55 18:59:55 dta\bin.pbo - 144923 18:59:55 dta\core.pbo - 129618 18:59:55 dta\languagecore_f.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a2_epoch_weapons.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_1.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_2.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_assets_3.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_code.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_community.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_configs.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_language.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_structures.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_vehicles.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_vehicles_1.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch\addons\a3_epoch_weapons.pbo - unknown 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\armor_f_tank.ebo - 132036 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\cargoposes_f_tank.ebo - 128283 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\characters_f_tank.ebo - 129798 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\data_f_tank.ebo - 128203 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\dubbing_f_tank.ebo - 127958 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\editorpreviews_f_tank.ebo - 131632 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\functions_f_tank.ebo - 125996 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\languagemissions_f_tank.ebo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\language_f_tank.ebo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\missions_f_tank.ebo - 130984 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\missions_f_tank_data.ebo - 128937 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\modules_f_tank.ebo - 129574 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\music_f_tank.ebo - 127912 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\props_f_tank.ebo - 131702 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\sounds_f_tank.ebo - 131364 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\structures_f_tank.ebo - 131803 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\ui_f_tank.ebo - 128232 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tank\addons\weapons_f_tank.pbo - 131482 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\characters_f_tacops.ebo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\data_f_tacops.ebo - 126731 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\dubbing_f_tacops.ebo - 129340 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\functions_f_tacops.ebo - 124382 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\languagemissions_f_tacops.ebo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\language_f_tacops.ebo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\missions_f_tacops.ebo - 131995 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\modules_f_tacops.ebo - 124298 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\music_f_tacops.ebo - 124064 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\sounds_f_tacops.ebo - 123795 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\tacops\addons\ui_f_tacops.ebo - 124116 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\air_f_orange.pbo - 132035 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\cargoposes_f_orange.pbo - 126225 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\characters_f_orange.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\data_f_orange.pbo - 121095 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\dubbing_f_orange.pbo - 121689 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\editorpreviews_f_orange.pbo - 123173 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\functions_f_orange.pbo - 128287 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\languagemissions_f_orange.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\language_f_orange.pbo - 132196 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\missions_f_orange.pbo - 126711 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\modules_f_orange.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\music_f_orange.pbo - 120725 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\props_f_orange.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\soft_f_orange.pbo - 132239 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\sounds_f_orange.pbo - 122301 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\structures_f_orange.pbo - 132196 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\supplies_f_orange.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\ui_f_orange.pbo - 123398 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\orange\addons\weapons_f_orange.pbo - 130995 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\armor_f_argo.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\characters_f_patrol.pbo - 129998 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\data_f_argo.pbo - 128209 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\data_f_patrol.pbo - 121287 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\editorpreviews_f_argo.pbo - 121102 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\functions_f_patrol.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\languagemissions_f_patrol.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\language_f_argo.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\language_f_patrol.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden.pbo - 129554 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden_data.pbo - 126137 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden_data_layers.pbo - 123441 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\map_malden_scenes_f.pbo - 120026 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\missions_f_patrol.pbo - 126663 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\modules_f_patrol.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\music_f_argo.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\props_f_argo.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\rocks_f_argo.pbo - 123488 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\sounds_f_patrol.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\structures_f_argo.pbo - 128082 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\ui_f_patrol.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\vegetation_f_argo.pbo - 123488 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\argo\addons\weapons_f_patrol.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\air_f_jets.pbo - 132072 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\anims_f_jets.pbo - 123210 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\boat_f_destroyer.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\boat_f_jets.pbo - 129607 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\cargoposes_f_jets.pbo - 126225 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\characters_f_jets.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\data_f_destroyer.pbo - 132156 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\data_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\data_f_sams.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\dubbing_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\editorpreviews_f_destroyer.pbo - 132141 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\editorpreviews_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\editorpreviews_f_sams.pbo - 132141 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\functions_f_destroyer.pbo - 132075 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\functions_f_jets.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\languagemissions_f_jets.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\language_f_destroyer.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\language_f_jets.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\language_f_sams.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\missions_f_jets.pbo - 130755 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\modules_f_jets.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\music_f_jets.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\props_f_destroyer.pbo - 132141 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\props_f_jets.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\sounds_f_jets.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\static_f_destroyer.pbo - 132329 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\static_f_jets.pbo - 131969 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\static_f_sams.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\ui_f_jets.pbo - 126137 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\weapons_f_destroyer.pbo - 132155 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\weapons_f_jets.pbo - 131383 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\jets\addons\weapons_f_sams.pbo - 132140 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\air_f_exp.pbo - 132062 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\anims_f_exp.pbo - 126506 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\armor_f_exp.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\boat_f_exp.pbo - 129747 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\cargoposes_f_exp.pbo - 126224 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\characters_f_exp.pbo - 129738 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\data_f_exp.pbo - 128203 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_f_exp.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp.pbo - 119458 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\editorpreviews_f_exp.pbo - 126519 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\functions_f_exp.pbo - 132366 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\languagemissions_f_exp.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\language_f_exp.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_data_exp.pbo - 123499 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka.pbo - 130033 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data.pbo - 123523 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data_layers.pbo - 121192 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\map_tanoa_scenes_f.pbo - 123527 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\missions_f_exp.pbo - 132366 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\missions_f_exp_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\missions_f_exp_video.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\modules_f_exp.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\music_f_exp.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\music_f_exp_music.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\props_f_exp.pbo - 130646 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\rocks_f_exp.pbo - 129683 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\soft_f_exp.pbo - 130182 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\sounds_f_exp.pbo - 131659 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\static_f_exp.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp.pbo - 132109 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_civilian.pbo - 131934 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_commercial.pbo - 123430 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_cultural.pbo - 123423 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_data.pbo - 123431 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_industrial.pbo - 123429 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\structures_f_exp_infrastructure.pbo - 132117 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\supplies_f_exp.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\ui_f_exp.pbo - 123398 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\vegetation_f_exp.pbo - 127271 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\expansion\addons\weapons_f_exp.pbo - 131546 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\anims_f_mark.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\characters_f_mark.pbo - 129739 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\data_f_mark.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\dubbing_f_mark.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\dubbing_f_mp_mark.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\functions_f_mark.pbo - 129645 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\functions_f_mp_mark.pbo - 129434 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\languagemissions_f_mark.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\languagemissions_f_mp_mark.pbo - 132106 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\language_f_mark.pbo - 132105 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\language_f_mp_mark.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mark.pbo - 122301 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mark_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mark_video.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mp_mark.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\missions_f_mp_mark_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\modules_f_mark.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\modules_f_mp_mark.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\music_f_mark.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\music_f_mark_music.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\sounds_f_mark.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\static_f_mark.pbo - 130728 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\structures_f_mark.pbo - 123419 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\supplies_f_mark.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\ui_f_mark.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\ui_f_mp_mark.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\mark\addons\weapons_f_mark.pbo - 131460 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\air_f_heli.pbo - 132035 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\anims_f_heli.pbo - 123210 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\boat_f_heli.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\cargoposes_f_heli.pbo - 126231 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\data_f_heli.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\dubbing_f_heli.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\functions_f_heli.pbo - 123022 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\languagemissions_f_heli.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\language_f_heli.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\missions_f_heli.pbo - 129397 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\missions_f_heli_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\missions_f_heli_video.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\modules_f_heli.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\music_f_heli.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\music_f_heli_music.pbo - 119477 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\soft_f_heli.pbo - 129742 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\sounds_f_heli.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\structures_f_heli.pbo - 129596 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\supplies_f_heli.pbo - 129371 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\heli\addons\ui_f_heli.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\anims_f_kart.pbo - 123210 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\characters_f_kart.pbo - 120162 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\data_f_kart.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\languagemissions_f_kart.pbo - 132104 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\language_f_kart.pbo - 132105 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\missions_f_kart.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\missions_f_kart_data.pbo - 119459 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\modules_f_kart.pbo - 128288 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\modules_f_kart_data.pbo - 124178 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\soft_f_kart.pbo - 129741 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\sounds_f_kart.pbo - 125381 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\structures_f_kart.pbo - 123419 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\ui_f_kart.pbo - 119478 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\kart\addons\weapons_f_kart.pbo - 120217 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\data_f_curator.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\data_f_curator_music.pbo - 119457 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\functions_f_curator.pbo - 123333 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\language_f_curator.pbo - 132107 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\missions_f_curator.pbo - 121570 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\modules_f_curator.pbo - 128381 18:59:55 D:\SteamLibrary\steamapps\common\Arma 3\curator\addons\ui_f_curator.pbo - 130996 18:59:55 addons\3den.pbo - 131733 18:59:55 addons\3den_language.pbo - 132107 18:59:55 addons\a3.pbo - unknown 18:59:55 addons\air_f.pbo - 132032 18:59:55 addons\air_f_beta.pbo - 132118 18:59:55 addons\air_f_epb.pbo - 132034 18:59:55 addons\air_f_epc.pbo - 129848 18:59:55 addons\air_f_gamma.pbo - 130580 18:59:55 addons\animals_f.pbo - 131659 18:59:55 addons\animals_f_beta.pbo - 123208 18:59:55 addons\anims_f.pbo - 127133 18:59:55 addons\anims_f_bootcamp.pbo - 123209 18:59:55 addons\anims_f_data.pbo - 127133 18:59:55 addons\anims_f_epa.pbo - 129908 18:59:55 addons\anims_f_epc.pbo - 121358 18:59:55 addons\anims_f_exp_a.pbo - 123209 18:59:55 addons\armor_f.pbo - 129739 18:59:55 addons\armor_f_beta.pbo - 132035 18:59:55 addons\armor_f_epb.pbo - 129739 18:59:55 addons\armor_f_epc.pbo - 129739 18:59:55 addons\armor_f_gamma.pbo - 132036 18:59:55 addons\baseconfig_f.pbo - 119457 18:59:55 addons\boat_f.pbo - 132036 18:59:55 addons\boat_f_beta.pbo - 132036 18:59:55 addons\boat_f_epc.pbo - 131911 18:59:55 addons\boat_f_gamma.pbo - 127529 18:59:55 addons\cargoposes_f.pbo - 128420 18:59:55 addons\characters_f.pbo - 130081 18:59:55 addons\characters_f_beta.pbo - 129738 18:59:55 addons\characters_f_bootcamp.pbo - 129738 18:59:55 addons\characters_f_epa.pbo - 129738 18:59:55 addons\characters_f_epb.pbo - 129738 18:59:55 addons\characters_f_epc.pbo - 129738 18:59:55 addons\characters_f_gamma.pbo - 129738 18:59:55 addons\data_f.pbo - 132155 18:59:55 addons\data_f_bootcamp.pbo - 129618 18:59:55 addons\data_f_exp_a.pbo - 119457 18:59:55 addons\data_f_exp_b.pbo - 119457 18:59:55 addons\drones_f.pbo - 132036 18:59:55 addons\dubbing_f.pbo - 119457 18:59:55 addons\dubbing_f_beta.pbo - 119457 18:59:55 addons\dubbing_f_bootcamp.pbo - 119457 18:59:55 addons\dubbing_f_epa.pbo - 119457 18:59:55 addons\dubbing_f_epb.pbo - 119457 18:59:55 addons\dubbing_f_epc.pbo - 119457 18:59:55 addons\dubbing_f_gamma.pbo - 122449 18:59:55 addons\dubbing_radio_f.pbo - 119457 18:59:55 addons\dubbing_radio_f_data_eng.pbo - 119457 18:59:55 addons\dubbing_radio_f_data_engb.pbo - 119458 18:59:55 addons\dubbing_radio_f_data_gre.pbo - 119458 18:59:55 addons\dubbing_radio_f_data_per.pbo - 119458 18:59:55 addons\dubbing_radio_f_data_vr.pbo - 119458 18:59:55 addons\editorpreviews_f.pbo - 128120 18:59:55 addons\editor_f.pbo - 121103 18:59:55 addons\functions_f.pbo - 132155 18:59:55 addons\functions_f_bootcamp.pbo - 129770 18:59:55 addons\functions_f_epa.pbo - 119458 18:59:55 addons\functions_f_epc.pbo - 119458 18:59:55 addons\functions_f_exp_a.pbo - 122619 18:59:55 addons\languagemissions_f.pbo - 132104 18:59:55 addons\languagemissions_f_beta.pbo - 132104 18:59:55 addons\languagemissions_f_bootcamp.pbo - 132107 18:59:55 addons\languagemissions_f_epa.pbo - 132104 18:59:55 addons\languagemissions_f_epb.pbo - 132104 18:59:55 addons\languagemissions_f_epc.pbo - 132123 18:59:55 addons\languagemissions_f_exp_a.pbo - 132107 18:59:55 addons\languagemissions_f_gamma.pbo - 132104 18:59:55 addons\language_f.pbo - 132107 18:59:55 addons\language_f_beta.pbo - 132107 18:59:55 addons\language_f_bootcamp.pbo - 132104 18:59:55 addons\language_f_epa.pbo - 132104 18:59:55 addons\language_f_epb.pbo - 132107 18:59:55 addons\language_f_epc.pbo - 132104 18:59:55 addons\language_f_exp_a.pbo - 132104 18:59:55 addons\language_f_exp_b.pbo - 132104 18:59:55 addons\language_f_gamma.pbo - 132107 18:59:55 addons\map_altis.pbo - 127995 18:59:55 addons\map_altis_data.pbo - 123439 18:59:55 addons\map_altis_data_layers.pbo - 123456 18:59:55 addons\map_altis_data_layers_00_00.pbo - 0000 18:59:55 addons\map_altis_data_layers_00_01.pbo - 0000 18:59:55 addons\map_altis_data_layers_01_00.pbo - 0000 18:59:55 addons\map_altis_data_layers_01_01.pbo - 0000 18:59:55 addons\map_altis_scenes_f.pbo - 119459 18:59:55 addons\map_data.pbo - 127098 18:59:55 addons\map_stratis.pbo - 129518 18:59:55 addons\map_stratis_data.pbo - 122905 18:59:55 addons\map_stratis_data_layers.pbo - 122917 18:59:55 addons\map_stratis_scenes_f.pbo - 119459 18:59:55 addons\map_vr.pbo - 131719 18:59:55 addons\map_vr_scenes_f.pbo - 119459 18:59:55 addons\misc_f.pbo - 119459 18:59:55 addons\missions_f.pbo - 129735 18:59:55 addons\missions_f_beta.pbo - 122470 18:59:55 addons\missions_f_beta_data.pbo - 119459 18:59:55 addons\missions_f_beta_video.pbo - 119459 18:59:55 addons\missions_f_bootcamp.pbo - 129645 18:59:55 addons\missions_f_bootcamp_data.pbo - 119459 18:59:55 addons\missions_f_bootcamp_video.pbo - 119459 18:59:55 addons\missions_f_data.pbo - 119459 18:59:55 addons\missions_f_epa.pbo - 132216 18:59:55 addons\missions_f_epa_data.pbo - 119459 18:59:55 addons\missions_f_epa_video.pbo - 119459 18:59:55 addons\missions_f_epb.pbo - 119459 18:59:55 addons\missions_f_epc.pbo - 119459 18:59:55 addons\missions_f_exp_a.pbo - 121496 18:59:55 addons\missions_f_exp_a_data.pbo - 119459 18:59:55 addons\missions_f_gamma.pbo - 131918 18:59:55 addons\missions_f_gamma_data.pbo - 119459 18:59:55 addons\missions_f_gamma_video.pbo - 119459 18:59:55 addons\missions_f_video.pbo - 119459 18:59:55 addons\modules_f.pbo - 124453 18:59:55 addons\modules_f_beta.pbo - 119459 18:59:55 addons\modules_f_beta_data.pbo - 119459 18:59:55 addons\modules_f_bootcamp.pbo - 119459 18:59:55 addons\modules_f_data.pbo - 122470 18:59:55 addons\modules_f_epb.pbo - 119459 18:59:55 addons\modules_f_exp_a.pbo - 119459 18:59:55 addons\music_f.pbo - 119459 18:59:55 addons\music_f_bootcamp.pbo - 119459 18:59:55 addons\music_f_bootcamp_music.pbo - 119459 18:59:55 addons\music_f_epa.pbo - 119459 18:59:55 addons\music_f_epa_music.pbo - 119459 18:59:55 addons\music_f_epb.pbo - 119459 18:59:55 addons\music_f_epb_music.pbo - 119459 18:59:55 addons\music_f_epc.pbo - 119459 18:59:55 addons\music_f_epc_music.pbo - 119477 18:59:55 addons\music_f_music.pbo - 119477 18:59:55 addons\plants_f.pbo - 126807 18:59:55 addons\props_f_exp_a.pbo - 129371 18:59:55 addons\roads_f.pbo - 127271 18:59:55 addons\rocks_f.pbo - 127271 18:59:55 addons\signs_f.pbo - 127272 18:59:55 addons\soft_f.pbo - 132036 18:59:55 addons\soft_f_beta.pbo - 132036 18:59:55 addons\soft_f_bootcamp.pbo - 129739 18:59:55 addons\soft_f_epc.pbo - 129739 18:59:55 addons\soft_f_gamma.pbo - 131376 18:59:55 addons\sounds_f.pbo - 132162 18:59:55 addons\sounds_f_arsenal.pbo - 127887 18:59:55 addons\sounds_f_bootcamp.pbo - 119477 18:59:55 addons\sounds_f_characters.pbo - 121082 18:59:55 addons\sounds_f_environment.pbo - 120046 18:59:55 addons\sounds_f_epb.pbo - 126923 18:59:55 addons\sounds_f_epc.pbo - 125380 18:59:55 addons\sounds_f_exp_a.pbo - 119477 18:59:55 addons\sounds_f_sfx.pbo - 119477 18:59:55 addons\sounds_f_vehicles.pbo - 128448 18:59:55 addons\static_f.pbo - 132036 18:59:55 addons\static_f_beta.pbo - 122642 18:59:55 addons\static_f_gamma.pbo - 122615 18:59:55 addons\structures_f.pbo - 131287 18:59:55 addons\structures_f_bootcamp.pbo - 123488 18:59:55 addons\structures_f_data.pbo - 130046 18:59:55 addons\structures_f_epa.pbo - 123407 18:59:55 addons\structures_f_epb.pbo - 126137 18:59:55 addons\structures_f_epc.pbo - 123407 18:59:55 addons\structures_f_exp_a.pbo - 123423 18:59:55 addons\structures_f_households.pbo - 129369 18:59:55 addons\structures_f_ind.pbo - 130947 18:59:55 addons\structures_f_mil.pbo - 127270 18:59:55 addons\structures_f_wrecks.pbo - 129371 18:59:55 addons\uifonts_f.pbo - 119478 18:59:55 addons\uifonts_f_data.pbo - 128439 18:59:55 addons\ui_f.pbo - 131720 18:59:55 addons\ui_f_bootcamp.pbo - 119478 18:59:55 addons\ui_f_data.pbo - 129859 18:59:55 addons\ui_f_exp_a.pbo - 119478 18:59:55 addons\weapons_f.pbo - 132157 18:59:55 addons\weapons_f_beta.pbo - 130487 18:59:55 addons\weapons_f_bootcamp.pbo - 124358 18:59:55 addons\weapons_f_epa.pbo - 124514 18:59:55 addons\weapons_f_epb.pbo - 124216 18:59:55 addons\weapons_f_epc.pbo - 130416 18:59:55 addons\weapons_f_gamma.pbo - 120217 18:59:55 18:59:55 ======================= 18:59:55 18:59:55 ============================================================================================= List of mods =============================================================================================== 18:59:55 modsReadOnly = true 18:59:55 safeModsActivated = false 18:59:55 customMods = true 18:59:55 hash = 'C17C9CD2187F26B3A4597857271E53A996177F9F' 18:59:55 hashShort = '16c87a0d' 18:59:55 name | modDir | default | origin | hash | hashShort | fullPath 18:59:55 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 18:59:55 Epoch Mod 1.2.0 | @Epoch | false | GAME DIR | 02ed17fb0b0b859b45ac71ba84bd2285d66b3a71 | 4efd885a | D:\SteamLibrary\steamapps\common\Arma 3\!Workshop\@Epoch 18:59:55 Arma 3 DLC Bundle 2 | dlcbundle2 | true | NOT FOUND | | | 18:59:55 Arma 3 DLC Bundle 1 | dlcbundle | true | NOT FOUND | | | 18:59:55 Arma 3 Tanks | tank | true | GAME DIR | 75d1931c6e085ad813e64fbf1fef40caca2c713d | 4bc9a8b9 | D:\SteamLibrary\steamapps\common\Arma 3\tank 18:59:55 Arma 3 Tac-Ops | tacops | true | GAME DIR | ab84282131e586c550d8a4ce69da3c161dd8f2af | 7dfaba09 | D:\SteamLibrary\steamapps\common\Arma 3\tacops 18:59:55 Arma 3 Laws of War | orange | true | GAME DIR | 7e5911bd5879f49100e609e4ad8bf39b7ee901ea | 2400822 | D:\SteamLibrary\steamapps\common\Arma 3\orange 18:59:55 Arma 3 Malden | argo | true | GAME DIR | b6d03c920b87ce124d8e842a54e932b62af46c11 | fc1038bd | D:\SteamLibrary\steamapps\common\Arma 3\argo 18:59:55 Arma 3 Jets | jets | true | GAME DIR | 173b2bbce99ca3fc110062a95a5ddea669bec203 | 4023f678 | D:\SteamLibrary\steamapps\common\Arma 3\jets 18:59:55 Arma 3 Apex | expansion | true | GAME DIR | c53a98b9063cb497ddbe574f40324250816e9259 | 1206d2fc | D:\SteamLibrary\steamapps\common\Arma 3\expansion 18:59:55 Arma 3 Marksmen | mark | true | GAME DIR | 3b97feb03938b1f72e603c17d1617700e960c610 | 2142a468 | D:\SteamLibrary\steamapps\common\Arma 3\mark 18:59:55 Arma 3 Helicopters | heli | true | GAME DIR | 9bfe0ce0d33f994f71d60692ffc43f6cd00a11c6 | e15edbbe | D:\SteamLibrary\steamapps\common\Arma 3\heli 18:59:55 Arma 3 Karts | kart | true | GAME DIR | 8e3f58c522827787481a2d624a5641f16e09d992 | 64c9a23c | D:\SteamLibrary\steamapps\common\Arma 3\kart 18:59:55 Arma 3 Zeus | curator | true | GAME DIR | 9b813dca715fbe051de68330683b6e46ecfcb7ea | 3d5746c6 | D:\SteamLibrary\steamapps\common\Arma 3\curator 18:59:55 Arma 3 | A3 | true | NOT FOUND | | | 18:59:55 ========================================================================================================================================================================================================== 18:59:55 DX11 - Initializing DX11 engine. 18:59:55 DX11 - Using DXGI adapter 0 (detected in config). 18:59:55 DX11 - Using DXGI adapter 0. 18:59:55 - adapter description : NVIDIA GeForce GTX 780 18:59:55 - adapter vendor ID : 4318 18:59:55 - adapter device ID : 4100 18:59:55 - adapter subsys ID : 2221477955 18:59:55 - adapter revision : 161 18:59:55 - dedicated video memory : 3176136704 18:59:55 - dedicated system memory : 0 18:59:55 - shared system memory : 4276539392 18:59:55 InitSound ... 18:59:55 InitSound - complete 18:59:58 PhysX3 SDK Init started ... 18:59:58 PhysX3 SDK Init ended. 19:00:01 SimulWeather - Cloud Renderer - noise texture file is not specified! 19:00:03 core\skyobject\skyobject.p3d: No geometry and no visual shape 19:00:05 a3\data_f\krater.p3d: No geometry and no visual shape 19:00:05 a3\data_f\koule.p3d: No geometry and no visual shape 19:00:05 Loading movesType CfgGesturesMale 19:00:05 Creating action map cache 19:00:05 MovesType CfgGesturesMale load time 351 ms 19:00:05 Loading movesType CfgMovesMaleSdr 19:00:05 Reading cached action map data 19:00:09 MovesType CfgMovesMaleSdr load time 3445 ms 19:00:09 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape 19:00:09 Starting mission: 19:00:09 Mission file: tanoa_intro1 19:00:09 Mission world: tanoa 19:00:09 Mission directory: a3\map_tanoa_scenes_f\scenes\tanoa_intro1.tanoa\ 19:00:09 a3\data_f\blesk1.p3d: No geometry and no visual shape 19:00:09 a3\data_f\blesk2.p3d: No geometry and no visual shape 19:00:09 a3\data_f\raindrop.p3d: No geometry and no visual shape 19:00:09 a3\map_tanoabuka\data\skydome.p3d: No geometry and no visual shape 19:00:09 a3\data_f\stars.p3d: No geometry and no visual shape 19:00:09 a3\map_tanoabuka\data\horizon.p3d: No geometry and no visual shape 19:00:09 a3\data_f\rainbow.p3d: No geometry and no visual shape 19:00:11 No more slot to add connection at 015030 (1523.6,3012.8) 19:00:15 a3\structures_f_exp\signs\companies\cornerads_01_v4_f.p3d: No geometry and no visual shape 19:00:17 Strange convex component70 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component75 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component76 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component77 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:17 Strange convex component78 in a3\structures_f_exp\commercial\multistorybuilding_01\multistorybuilding_01_f.p3d:geometryFire 19:00:18 a3\structures_f_exp\signs\companies\cornerads_01_v1_f.p3d: No geometry and no visual shape 19:00:19 a3\structures_f_exp\signs\companies\cornerads_01_v3_f.p3d: No geometry and no visual shape 19:00:20 "CfgEpochCoreListenServerFunctions" 19:00:20 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 19:00:20 a3\weapons_f\binocular\nvg_proxy.p3d: No geometry and no visual shape 19:00:20 a3\weapons_f\binocular\nvg_proxy_off.p3d: No geometry and no visual shape 19:00:22 Weather was forced to change 19:00:28 Skipping mods and signatures due to overflow flag being set. 19:00:28 Loading movesType CfgMovesButterfly 19:00:28 Reading cached action map data 19:00:28 MovesType CfgMovesButterfly load time 17 ms 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:28 Malformed data. Total count differs. expected: 5, got: 6. serverip: -1909664280, serverport: 2403 19:00:29 Loading movesType CfgMovesBird 19:00:29 Reading cached action map data 19:00:29 MovesType CfgMovesBird load time 75 ms 19:01:09 Starting mission: 19:01:09 Mission file: epoch (__CUR_MP) 19:01:09 Mission world: Altis 19:01:09 Mission directory: mpmissions\__CUR_MP.Altis\ 19:01:10 a3\map_stratis\data\obloha.p3d: No geometry and no visual shape 19:01:10 a3\map_stratis\data\horizont.p3d: No geometry and no visual shape 19:01:14 Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 19:01:14 Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView 19:01:15 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 19:01:15 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView 19:01:15 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire 19:01:19 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire 19:01:19 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:19 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:19 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:19 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire 19:01:22 "CfgEpochCoreClientFunctions" 19:01:22 "Epoch: Advanced Vehicle Repair Enabled" 19:01:22 "Loading Functions: CfgClientFunctions" 19:01:23 a3\structures_f\mil\flags\flag_asym_f.p3d: No geometry and no visual shape 19:01:23 Fresnel k must be >0, given n=1.2,k=0 19:01:23 a3\structures_f\mil\flags\flag_f.p3d: No geometry and no visual shape 19:01:23 Fresnel k must be >0, given n=0.8,k=0 19:01:24 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire 19:01:24 a3\weapons_f\acc\reticle_nlaw.p3d: No geometry and no visual shape 19:01:25 a3\air_f\data\plane_flag_medium_f.p3d: No geometry and no visual shape 19:01:25 a3\data_f\proxies\flags\flag_auto.p3d: No geometry and no visual shape 19:01:25 Error: Wheel reference not initialized 19:01:25 Error: Wheel reference not initialized 19:01:25 a3\data_f\proxies\flags\flag_alone.p3d: No geometry and no visual shape 19:01:26 Error: Wheel reference not initialized 19:01:26 a3\air_f_beta\heli_transport_02\main_rotor_center_f.p3d: No geometry and no visual shape 19:01:26 a3\air_f\data\plane_flag_big_f.p3d: No geometry and no visual shape 19:01:26 a3\air_f_beta\heli_transport_02\view_pilot_switches_f.p3d: No geometry and no visual shape 19:01:26 Error: Wheel reference not initialized 19:01:26 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_EPOCH' 19:01:26 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_EPOCH' 19:01:27 a3\air_f_heli\heli_transport_04\proxy_heli_transport_04_f.p3d: No geometry and no visual shape 19:01:27 Error: Wheel reference not initialized 19:01:27 Error: Wheel reference not initialized 19:01:27 Error: Wheel reference not initialized 19:01:27 Error: Wheel reference not initialized 19:01:27 a3\air_f\data\plane_flag_medium_inv_f.p3d: No geometry and no visual shape 19:01:27 O_Truck_02_covered_EPOCH: rear_hide - unknown animation source rear_hide 19:01:27 Render target memory points PIP5_pos & PIP5_dir not found. 19:01:27 Error: Wheel reference not initialized 19:01:27 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_box_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_box_EPOCH' 19:01:27 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_bench_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_bench_EPOCH' 19:01:27 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_proxy_f.p3d: No geometry and no visual shape 19:01:27 a3\air_f_heli\heli_transport_04\heli_transport_04_bench_black_proxy_f.p3d: No geometry and no visual shape 19:01:27 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitTurret' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'B_Heli_Transport_03_unarmed_EPOCH' 19:01:27 Duplicate HitPoint name 'HitTurret' in 'O_Heli_Transport_04_covered_EPOCH' 19:01:27 Duplicate HitPoint name 'HitGun' in 'O_Heli_Transport_04_covered_EPOCH' 19:01:27 a3\air_f_heli\heli_transport_04\heli_transport_04_covered_proxy_f.p3d: No geometry and no visual shape 19:01:28 Loading movesType CfgGesturesSapper 19:01:28 Creating action map cache 19:01:28 MovesType CfgGesturesSapper load time 199 ms 19:01:28 Loading movesType CfgMovesSapperSdr 19:01:28 Reading cached action map data 19:01:30 MovesType CfgMovesSapperSdr load time 1943 ms 19:01:30 No speaker given for 'Vangelis Manetta' 19:01:30 No speaker given for 'Vyron Athanasiadis' 19:01:30 No speaker given for 'Samaras Mylonaki' 19:01:30 No speaker given for 'Michalis Isofidou' 19:01:30 No speaker given for 'Luo Liou' 19:01:30 a3\characters_f_gamma\heads\glasses\g_aviators.p3d: No geometry and no visual shape 19:01:30 No speaker given for 'Gula Osmani' 19:01:30 No speaker given for 'Michalis Zenon' 19:01:30 a3\characters_f\heads\glasses\g_shades_black.p3d: No geometry and no visual shape 19:01:30 No speaker given for 'Evripidis Petridis' 19:01:30 No speaker given for 'Arion Athanasiadis' 19:01:30 No speaker given for 'Vega Nicolau' 19:01:30 No speaker given for 'Giourkas Nicolau' 19:01:30 No speaker given for 'Stergos Constantinou' 19:01:30 No such side 19:01:30 Time was adjusted to keep it same as on server. 19:01:30 a3\characters_f_beta\heads\glasses\g_shades_green.p3d: No geometry and no visual shape 19:01:30 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton 19:01:30 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton 19:01:31 x\addons\a3_epoch_assets_3\cfgvehicles\solar_gen_assets\solar_panels\solar_panels.p3d: No geometry and no visual shape 19:01:31 x\addons\a3_epoch_assets\models\rock.p3d: No geometry and no visual shape 19:01:31 x\addons\a3_epoch_weapons\1911_magazine.p3d: No geometry and no visual shape 19:01:31 Fresnel k must be >0, given n=4.8,k=0 19:01:31 x\addons\a3_epoch_community\models\icecream.p3d: No geometry and no visual shape 19:01:31 x\addons\a3_epoch_assets\models\rope.p3d: No geometry and no visual shape 19:01:32 "[HSBlackmarket]: Client waiting for Trader ..." 19:01:33 Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed 19:01:34 "EPOCH-LOGIN: Init" 19:01:34 "EPOCH-LOGIN: Start Loadingscreen" 19:01:34 "EPOCH-LOGIN: Version Check" 19:01:34 "EPOCH-LOGIN: Check PlayerUID" 19:01:34 "EPOCH-LOGIN: Check Server" 19:02:05 "Authentication Failed, Disconnect and try again" 19:02:22 EPE manager release (0|300|0) 19:02:22 Starting mission: 19:02:22 Mission file: introOrange 19:02:22 Mission world: Altis 19:02:22 Mission directory: a3\missions_f_orange\scenes\introOrange.Altis\ 19:02:23 "CfgEpochCoreListenServerFunctions" 19:02:24 a3\characters_f_beta\heads\glasses\g_shades_red.p3d: No geometry and no visual shape 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRMWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRBWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass1" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass2" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass3" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass4" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass6" in C_Hatchback_01_F 19:02:25 C_Hatchback_01_F: wheel_1_1 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: wheel_2_1 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: wheel_1_2 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: wheel_2_2 - unknown animation source wheel 19:02:25 C_Hatchback_01_F: pedal_thrust - unknown animation source throttle 19:02:25 C_Hatchback_01_F: pedal_brake - unknown animation source brake 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitLF2Wheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRFWheel" in C_Hatchback_01_F 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitRF2Wheel" in C_Hatchback_01_F 19:02:25 C_Hatchback_01_F: drivingwheel - unknown animation source drivingwheel 19:02:25 C_Hatchback_01_F: steering_1_1 - unknown animation source drivingwheel 19:02:25 C_Hatchback_01_F: steering_2_1 - unknown animation source drivingwheel 19:02:25 C_Hatchback_01_F: indicatorrpm - unknown animation source rpm 19:02:25 C_Hatchback_01_F: fuel - unknown animation source fuel 19:02:25 C_Hatchback_01_F: prop_01 - unknown animation source rpm 19:02:25 C_Hatchback_01_F: daylights - unknown animation source rpm 19:02:25 C_Hatchback_01_F: reverse_light - unknown animation source gear 19:02:25 unable to connect anim. source "Hit" to hitpoint "HitGlass5" in C_Hatchback_01_F 19:02:25 C_Hatchback_01_F: wheel_1_1_damper - unknown animation source damper 19:02:25 C_Hatchback_01_F: wheel_2_1_damper - unknown animation source damper 19:02:25 C_Hatchback_01_F: wheel_1_2_damper - unknown animation source damper 19:02:25 C_Hatchback_01_F: wheel_2_2_damper - unknown animation source damper 19:02:25 a3\data_f\krater.p3d: No geometry and no visual shape 19:02:25 a3\structures_f_heli\vr\helpers\sign_sphere25cm_f.p3d: No geometry and no visual shape 19:02:25 Land_wpp_Turbine_V1_off_F: mxlgenerator - unknown animation source ::time (defined in AnimationSources::time) 19:02:25 Land_wpp_Turbine_V1_off_F: mxlmeter - unknown animation source ::timeRndOffset (defined in AnimationSources::timeRndOffset) 19:02:25 Land_wpp_Turbine_V1_off_F: mxlprop - unknown animation source ::timeRndOffset (defined in AnimationSources::timeRndOffset) 19:02:26 a3\characters_f\heads\glasses\g_shades_blue.p3d: No geometry and no visual shape 19:02:26 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire 19:02:26 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire 19:02:27 Weather was forced to change 19:02:27 C_Truck_02_covered_F: rear_hide - unknown animation source rear_hide 19:02:29 a3\structures_f_epc\dominants\ghosthotel\gh_proxy_shower_f.p3d: No geometry and no visual shape 19:02:29 a3\structures_f_epc\dominants\ghosthotel\gh_proxy_shower2_f.p3d: No geometry and no visual shape 19:02:29 Fresnel n must be >0, given n=0,k=1.4 19:02:30 Fresnel k must be >0, given n=2.51,k=0 19:02:30 Loading movesType CfgMovesSnakes_F 19:02:30 Reading cached action map data 19:02:30 MovesType CfgMovesSnakes_F load time 36 ms 19:02:33 Shutdown normally 19:02:34 SimulWeather - Cloud Renderer - noise texture file is not specified! 19:02:34 Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";] 19:02:34 Deinitialized shape [Class: "B_Soldier_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Sapper_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\sapper_character.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_hunter_1_F"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";] 19:02:35 Deinitialized shape [Class: "I_pilot_F"; Shape: "a3\characters_f\common\pilot_f.p3d";] 19:02:35 Deinitialized shape [Class: "O_helipilot_F"; Shape: "a3\characters_f\common\pilot_f.p3d";] 19:02:35 Deinitialized shape [Class: "I_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";] 19:02:35 Deinitialized shape [Class: "I_G_Soldier_LAT_F"; Shape: "a3\characters_f_bootcamp\guerrilla\ig_guerrilla_6_1.p3d";] 19:02:35 Deinitialized shape [Class: "O_G_Soldier_LAT_F"; Shape: "a3\characters_f_bootcamp\guerrilla\ig_guerrilla_6_1.p3d";] 19:02:35 Deinitialized shape [Class: "O_T_ghillie_tna_F"; Shape: "a3\characters_f_mark\opfor\o_fullghillie_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_Orestes"; Shape: "a3\characters_f\civil\c_orestes.p3d";] 19:02:35 Deinitialized shape [Class: "I_soldier_F"; Shape: "a3\characters_f_beta\indep\ia_soldier_01.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_CamoPink_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\female_camo.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_w_worker_F"; Shape: "a3\characters_f\common\coveralls.p3d";] 19:02:35 Deinitialized shape [Class: "C_scientist_F"; Shape: "a3\characters_f\common\coveralls.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_fugitive_F_afro"; Shape: "a3\characters_f\civil\c_poor.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_fugitive_F"; Shape: "a3\characters_f\civil\c_poor.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_beggar_F"; Shape: "a3\characters_f\civil\c_poor.p3d";] 19:02:35 Deinitialized shape [Class: "O_G_Soldier_TL_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_leader.p3d";] 19:02:35 Deinitialized shape [Class: "I_C_Soldier_Bandit_3_F"; Shape: "a3\characters_f_exp\syndikat\i_c_soldier_bandit_3_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_journalist_F"; Shape: "a3\characters_f_epc\civil\c_journalist.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlack3_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched6_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn14_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched7_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched16_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansPatched19_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlack15_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlack19_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "Epoch_Female_JeansBlkBrn13_F"; Shape: "x\addons\a3_epoch_assets_3\cfgvehicles\characters\keesha_character.p3d";] 19:02:35 Deinitialized shape [Class: "VirtualMan_EPOCH"; Shape: "a3\characters_f\common\invisibleman.p3d";] 19:02:35 Deinitialized shape [Class: "I_G_resistanceLeader_F"; Shape: "a3\characters_f_epb\guerrilla\ig_guerrilla4_1.p3d";] 19:02:35 Deinitialized shape [Class: "I_G_Soldier_F"; Shape: "a3\characters_f_gamma\guerrilla\ig_guerrilla1_1.p3d";] 19:02:35 Deinitialized shape [Class: "I_ghillie_lsh_F"; Shape: "a3\characters_f_mark\indep\i_fullghillie_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_sport_1_F_tanoan"; Shape: "a3\characters_f_exp\civil\c_tanoan1_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_sport_2_F_tanoan"; Shape: "a3\characters_f_exp\civil\c_tanoan1_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_sport_3_F_tanoan"; Shape: "a3\characters_f_exp\civil\c_tanoan1_f.p3d";] 19:02:35 Deinitialized shape [Class: "Underwear_F"; Shape: "a3\characters_f\common\basicbody.p3d";] 19:02:35 Deinitialized shape [Class: "C_Man_casual_1_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 19:02:35 Deinitialized shape [Class: "C_Man_casual_2_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";] 19:02:35 Deinitialized shape [Class: "C_Man_casual_4_F"; Shape: "a3\characters_f\civil\c_man_casual_shorts_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_IDAP_Man_AidWorker_02_F"; Shape: "a3\characters_f\civil\i_c_soldier_bandit_3_f.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_shorts_4_F_asia"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_1"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_4_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_6_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_5_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_polo_2_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 Deinitialized shape [Class: "C_man_p_shorts_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";] 19:02:35 c:\bis\source\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing! 19:02:35 Error: entity [FxCartridge_556] still has its shape, ref_count=2 19:02:35 Error: entity [ProxyFlag_Auto] still has its shape, ref_count=4 19:02:37 Extensions: Expand Are you using the BEM BattlEye Filter tool to update your .txt files? Link for tool: http://bem.themeq.xyz/index.php Line #32, this is where all script restriction #32's go: 5 createAgent !="bis_revive_ratioLethal = createAgent [\"Logic\", [10,10,0], [], 0, \"CAN_COLLIDE\"];" !="_unit = createAgent[_unitClass, _targetPos, [], 256, \"FORM\"];" !="_unit = createAgent [_unitClass, _targetPos, [], 120, \"FORM\"];" !="_animal = createAgent[_randomAIClass, _animalPos, [], 5, \"NONE\"];" !="_unit = createAgent [\"Epoch_Cloak_F\", _pos, [], 0, \"CAN_COLLIDE\"];" !="_unit = createAgent [\"Epoch_Sapper_F\", _targetPos, [], 180, \"FORM\"];" !="_sapper = createAgent [\"Epoch_Sapper_F\", getPos _cage2, [], 0, \"FORM\"];" !="_unit = createAgent[_unitClass, position player, [], _zRange, \"FORM\"];" !="_animal = createAgent[_randomAIClass, _animalPos, [], 0, \"CAN_COLLIDE\"];" !="_axeSapper = createAgent [\"Epoch_Sapper_F\", _pos, [], 12, \"FORM\"];" !="_nestMate = createAgent [\"Epoch_Sapper_F\", _garrPos, [], 0, \"FORM\"];" Your script restriction #32. You need to use the BEM tool to add this to the above line: "pos0 = [(_coords select 0),(_coords select 1),0]; _unit = createAgent [_agent, _pos0, [], 0, "CAN_COLLIDE"]; _unitdir = _objects" Download the .log and .txt file to your PC. The edit takes place on your PC in the BattlEye folder where you installed Arma3. You will upload the updated file to your server and restart for it to take effect or wait until your server restarts if its scheduled to do so. Edited October 15, 2018 by C4-timah Tuhjay 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now