Zerion

Zombies and Demons Antivirus

22 posts in this topic

Hello Guys

i have a question have anywhere here find a way to cancel the Infection with Injektor or Pills?

The mod RZInfection dont Work and the Antivirus from Zombies and Demons dont work too i cant consum there

 

thanks for help

Share this post


Link to post
Share on other sites

@Zerion The injector and pills work perfect to combat the infection from RZ Infection. The pills are a temp cure and the injector a complete cure. I know it works with Exile v1.0.4 because I use it on my server.

  • Like 1

Share this post


Link to post
Share on other sites
Advertisement

okay thx for the feedback i have checked all but i cant find a error ... mh

i have the Injektor and the Pills in my Shop but i can't buy them from there and i dont have a Picture there...

Share this post


Link to post
Share on other sites

@MetalHeadso this is my Installation Guide i have check this again and again but i can't find an error the bikey is in the Key ordner too mh ...

Here is the Link to the GitHub Thread https://github.com/ravmustang/RZInfection

Spoiler

![ArmA 1.80](https://img.shields.io/badge/ArmA%203-1.80-blue.svg) ![Exile 1.0.4+](https://img.shields.io/badge/Exile-1.0.4%20Pineapple-yellowgreen.svg) ![eXpoch Beta](https://img.shields.io/badge/eXpoch-Public%20Beta-green.svg) ![Build Status](https://img.shields.io/badge/Custom%20Build-passing-38AA38.svg)

# news and info

Verified working with Exile 1.0.4 update.
No changes to item_consume function necessary.

# eXpoch Infection

Allows for use of antiviral pills and injector within Exile and eXpoch and any other Exile variants
Configure antivirals for use with Exile Inventory Consume and Health System
Create override for non-infection use of antivirals

ClassNames:

			rzinfection_antivirus_pills
			rzinfection_antivirus_injector

## Credits

- DonkeyPunch Development Team
- DirtySanchez
- Patrix87
- ExileMod Development Team
- Ryan Zombies Development Team
- and anyone else I might not have listed here!
			
## Server Side Installation:

Place @RZInfection or (whatever you name the mod folder)in your arma 3 server directory
Add to startup parameters to load the mod 
		"-mod=@exile;@RZInfection;"

## Mission File Installation

1. Place the Overrides folder in your mission

2. Edit config.cpp >> CfgExileCustomCode


		//RZ Infection Addon ADD THESE LINES :)
		ExileClient_object_item_consume = "Overrides\ExileClient_object_item_consume.sqf";

3. Edit pricing and add to config.cpp >> CfgExileArsenal 

			class rzinfection_antivirus_pills                { quality = 1; price = 1; sellPrice = 1; };
			class rzinfection_antivirus_injector                { quality = 1; price = 1; sellPrice = 1; };

4. Add these to config.cpp >> CfgTraderCategories >> FirstAid >> items[]

            "rzinfection_antivirus_pills",
            "rzinfection_antivirus_injector"

## Licensing

1. Listed Mods uses and has its own licensing included in its addon mod, please refer to that for any questions concerning Listed Mods
	- Exile
	- Ryan Zombies 

2. This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
	- To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
	- You can use it, abuse it and modify it with proper "Credits" of course for your server.
	- These "Credits" will come in the fashion of either "DonkeyPunch Community Gaming" or "DirtySanchez"
	- These "Credits" will also include the website for download and support should anyone else want to use it. http://DonkeyPunch.INFO	
	- Personal feelings and emotional responses will not come from this work or its use in the public.

3. You are not allowed to sell this "Script" or provide any service to install it.
	- You are not allowed to add it to another named script and sell that script with this work included.
	- "WE" the authors reserve the right to disallow certain individual communities and persons from using, hosting, modifying, selling, distributing and leave this list open ended so that all aspects of disllowed usage can be added at any time.
	- "WE" will not use this aspect against anyone unless their actions in the "Arma" or internet communities displays that of a greedy, profiteering nature and not one of advancement of "Arma" or the internet communities.

4. Definitions
	- "Arma" being the product made by Bohemia Interactive and purchased through BIS Store or Steam with a valid legal License for use and ownership.
	- "WE" being any individual that is a part of DonkeyPunch Community Gaming Development Team.
	- "Script" being any work, "code", comments not a part of the original program or software. 
	- "Code" does not limit the definition to only the parts that operate within "Arma", but is a broad term used to define the entire product within including all comments and remarks made by "WE".
	- "Credits" being the author("DonkeyPunch Community Gaming" or "DirtySanchez") and website(http://DonkeyPunch.INFO)

 

 

Edited by Zerion

Share this post


Link to post
Share on other sites

@Zerion I'm sure they're the same files, but the @ folder has a different name than mine. Yours is @eXpohZ Infection and mine is simply @RZ Infection. I don't know what your using to control the Zombies but I use ExileZ by Kuplion and it works perfect. I also use the mod from the Steam workshop CLICKME and not from the Git you provided.

 

20180601151442_1.jpg

20180601151542_1.jpg

20180601151545_1.jpg

20180601151748_1.jpg

20180601151757_1.jpg

20180601151956_1.jpg

20180601152010_1.jpg

20180601152025_1.jpg

20180601152049_1.jpg

As you can see, everything works as intended though I didn't have an infection ;)

Edited by MetalHead
Add screenshots.

Share this post


Link to post
Share on other sites

@MetalHead Hay the Pictures is my Error but i cant find them i have check the config.cpp

config.cpp

Spoiler

class CfgExileCustomCode 
{
	/*
		You can overwrite every single file of our code without touching it.
		To do that, add the function name you want to overwrite plus the 
		path to your custom file here. If you wonder how this works, have a
		look at our bootstrap/fn_preInit.sqf function.

		Simply add the following scheme here:

		<Function Name of Exile> = "<New File Name>";

		Example:

		ExileClient_util_fusRoDah = "myaddon\myfunction.sqf";
	*/
	exileclient_system_lootmanager_thread_spawn = "EBM\exileclient_system_lootmanager_thread_spawn.sqf";
	exileClient_object_player_death_startBleedingOut = "custom\EnigmaRevive\ExileClient_object_player_death_startBleedingOut.sqf"; //Happys Revive
	exileClient_object_player_event_onInventoryOpened = "custom\EnigmaRevive\ExileClient_object_player_event_onInventoryOpened.sqf"; //Happys Revive AntiDupe ---NEW with v00.65
	exileClient_object_item_consume = "Overrides\ExileClient_object_item_consume.sqf";
};

 


	///////////////////////////////////////////////////////////////////////////////
	// First Aid
	///////////////////////////////////////////////////////////////////////////////
	class Exile_Item_InstaDoc                       { quality = 5; price = 1250; };
	class Exile_Item_Vishpirin						{ quality = 3; price = 300; };
	class Exile_Item_Bandage	                    { quality = 2; price = 100; };
	class Exile_Item_Heatpack	                    { quality = 1; price = 50; };
    class rzinfection_antivirus_pills               { quality = 1; price = 1000; sellPrice = 300; };
	class rzinfection_antivirus_injector            { quality = 1; price = 10000; sellPrice = 3000; };
	class Exile_Item_Defibrillator				    { quality = 1; price = 12500; };

	class FirstAid
	{
		name = "FirstAid";
		icon = "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\itemacc_ca.paa";
		items[] =
		{
			"Exile_Item_InstaDoc",
			"Exile_Item_Bandage",
			"Exile_Item_Vishpirin",
			"Exile_Item_Heatpack",
			"rzinfection_antivirus_pills",
            "rzinfection_antivirus_injector",
			"Exile_Item_Defibrillator"
		};
	};

 

so and here is the RPT log

Spoiler

=====================================================================
== C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\arma3server.exe
== "C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\arma3server.exe" -mod="@Exile;@Extended_Base_Mod;@Zombies;@RZInfection;" -serverMod="@ExileServer;@Enigma;@infiSTAR_Exile;@AdvancedTowing;@Enhanced_Movement;@AdvancedRappelling;" -ip=128.65.222.156 -port=2302 -maxmem=2047 -noCB -exThreads=1 -filePatching -malloc=tbb4malloc_bi -profiles=config -config=config\server.cfg -cfg=config\basic.cfg -name=arma3 -autoinit -loadMissionToMemory

Original output filename: Arma3Retail_Server
Exe timestamp: 2018/04/25 11:35:52
Current time:  2018/06/04 17:43:43

Type: Public
Build: Stable
Version: 1.82.144710

Allocator: C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0]
PhysMem: 64 GiB, VirtMem : 4.0 GiB, AvailPhys : 4.7 GiB, AvailVirt : 3.9 GiB, AvailPage : 32 GiB
=====================================================================

17:43:43 SteamAPI initialization failed. Steam features won't be accessible!
17:43:43 Cannot register unknown string STR_3DEN_CAMERA_NAME
17:43:43 Cannot register unknown string STR_DIFF_SCENE_ONLY
17:43:43 Cannot register unknown string STR_DIFF_SCENE_AND_MAP
17:43:44 Initializing stats manager.
17:43:44 Stats config disabled.
17:43:44 sessionID: 7c8ce62bfbdc20a91c60b3e1f8b8790b9c5f2d54
17:43:57 Item str_a3_to_c01_m02_036_ta_mechanized_briefing_SOLDIERC_0 listed twice
17:44:00 Updating base class ->Wreck, by a3\data_f\config.bin/CfgVehicles/PlaneWreck/ (original a3\data_f\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin)
17:44:00 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin)
17:44:00 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin)
17:44:00 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesBasic/DefaultDie/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->RifleBaseStandActions, by a3\anims_f\config\sdr\config.bin/CfgMovesBasic/Actions/RifleStandActions/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->Default, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/Crew/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->AmovPercMstpSlowWrflDnon, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/AmovPercMstpSrasWrflDnon/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->StandBase, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/AmovPercMstpSrasWpstDnon/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->TransAnimBase, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/AmovPpneMstpSrasWrflDnon_AmovPpneMstpSrasWpstDnon/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->AmovPpneMstpSrasWrflDnon_AmovPpneMstpSrasWpstDnon, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/AmovPpneMstpSrasWrflDnon_AmovPpneMstpSrasWpstDnon_end/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->TransAnimBase, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/AmovPpneMstpSrasWpstDnon_AmovPpneMstpSrasWrflDnon/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->AmovPpneMstpSrasWpstDnon_AmovPpneMstpSrasWrflDnon, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/AmovPpneMstpSrasWpstDnon_AmovPpneMstpSrasWrflDnon_end/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->AmovPercMstpSlowWrflDnon, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/States/AmovPercMstpSoptWbinDnon/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->BlendAnims, by a3\anims_f\config\sdr\config.bin/CfgMovesMaleSdr/BlendAnims/ (original a3\anims_f\config\sdr\config.bin)
17:44:00 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin)
17:44:00 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin)
17:44:00 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin)
17:44:00 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin)
17:44:00 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin)
17:44:00 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin)
17:44:00 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin)
17:44:00 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin)
17:44:00 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin)
17:44:00 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin)
17:44:00 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin)
17:44:00 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin)
17:44:00 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin)
17:44:00 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin)
17:44:00 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin)
17:44:00 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
17:44:00 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin)
17:44:00 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin)
17:44:00 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin)
17:44:00 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin)
17:44:00 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin)
17:44:00 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
17:44:00 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
17:44:00 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
17:44:00 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
17:44:00 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin)
17:44:00 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin)
17:44:00 Updating base class ->VehicleMagazine, by a3\weapons_f\config.bin/CfgMagazines/24Rnd_missiles/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class ->RocketPods, by a3\weapons_f\config.bin/CfgWeapons/missiles_DAR/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class player->close, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/close/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class close->short, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/short/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class close->medium, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/medium/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class close->far, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/HE/far/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class player->close, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/close/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class close->short, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/short/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class close->medium, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/medium/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class close->far, by a3\sounds_f\config.bin/CfgWeapons/autocannon_30mm_CTWS/AP/far/ (original a3\weapons_f\config.bin)
17:44:00 Updating base class NewTurret->NewTurret, by a3\armor_f_beta\apc_wheeled_01\config.bin/CfgVehicles/Wheeled_APC_F/Turrets/MainTurret/ (original a3\armor_f_beta\config.bin)
17:44:00 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin)
17:44:00 Updating base class ->ctrlActiveText, by a3\3den\config.bin/ctrlActivePicture/ (original a3\3den\config.bin)
17:44:00 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin)
17:44:00 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin)
17:44:00 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin)
17:44:00 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
17:44:00 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
17:44:00 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin)
17:44:01 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin)
17:44:01 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin)
17:44:01 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin)
17:44:01 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin)
17:44:01 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin)
17:44:01 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin)
17:44:01 Updating base class ListRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
17:44:01 Updating base class ListPrevRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
17:44:01 Updating base class CloseRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
17:44:01 Updating base class NextModeRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
17:44:01 Updating base class B_Soldier_02_f->B_Soldier_base_F, by exile_client\config.bin/CfgVehicles/B_Story_SF_Captain_F/ (original a3\characters_f\config.bin)
17:44:01 Cannot delete class BackgroundSlotPrimary, it is referenced somewhere (used as a base class probably).
17:44:01 Updating base class RscStandardDisplay->, by exile_client\config.bin/RscDisplayMain/ (original bin\config.bin)
17:44:01 Updating base class RscPicture->RscText, by exile_client\config.bin/RscDisplayVoiceChat/controls/Picture/ (original a3\ui_f\config.bin)
17:44:01 Updating base class ->Plane, by exile_psycho_an2\config.bin/CfgVehicles/an2_base/ (original exile_psycho_an2\config.bin)
17:44:01 Updating base class ->BRDM2_HQ_Base, by exile_psycho_brdm\config.bin/CfgVehicles/BRDM2_HQ_CHDKZ/ (original exile_psycho_brdm\config.bin)
17:44:01 Updating base class ->Car_F, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_MG_base_EP1/ (original exile_psycho_btr40\config.bin)
17:44:01 Updating base class ->BTR40_MG_base_EP1, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_base_EP1/ (original exile_psycho_btr40\config.bin)
17:44:01 Updating base class ->Car_F, by exile_psycho_gaz_volha\config.bin/CfgVehicles/volha_Base/ (original exile_psycho_gaz_volha\config.bin)
17:44:01 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M2/ (original exile_psycho_hmmw\config.bin)
17:44:01 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M134/ (original exile_psycho_hmmw\config.bin)
17:44:01 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_UNA/ (original exile_psycho_hmmw\config.bin)
17:44:01 Updating base class ->HMMWV_UNA, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_MEV/ (original exile_psycho_hmmw\config.bin)
17:44:01 Updating base class ->Ikarus_Base, by exile_psycho_ikarus\config.bin/CfgVehicles/Ikarus_Civ_02/ (original exile_psycho_ikarus\config.bin)
17:44:01 Updating base class ->Car_F, by exile_psycho_lada\config.bin/CfgVehicles/Lada_Base/ (original exile_psycho_lada\config.bin)
17:44:01 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/Landrover_Civ_02/ (original exile_psycho_lrc\config.bin)
17:44:01 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/LR_Ambulance_Base/ (original exile_psycho_lrc\config.bin)
17:44:01 Updating base class ->Octavia_Base, by exile_psycho_octavia\config.bin/CfgVehicles/Octavia_Civ_01/ (original exile_psycho_octavia\config.bin)
17:44:01 Updating base class ->Car_F, by exile_psycho_suv_a3\config.bin/CfgVehicles/SUV_Base/ (original exile_psycho_suv_a3\config.bin)
17:44:01 Updating base class ->Car_F, by exile_psycho_suvarm_a3\config.bin/cfgVehicles/SUV_armored_Base/ (original exile_psycho_suvarm_a3\config.bin)
17:44:01 Updating base class ->Car_F, by exile_psycho_tractor\config.bin/CfgVehicles/Tractor_Base/ (original exile_psycho_tractor\config.bin)
17:44:01 Updating base class ->Tractor_Base, by exile_psycho_tractor\config.bin/CfgVehicles/tractorOld/ (original exile_psycho_tractor\config.bin)
17:44:01 Updating base class ->Offroad_01_base_F, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Base/ (original exile_psycho_uaz\config.bin)
17:44:01 Updating base class ->UAZ_Base, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Open_Base/ (original exile_psycho_uaz\config.bin)
17:44:01 Updating base class ->UH1H_Closed, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_Clo/ (original exile_psycho_uh1h\config.bin)
17:44:01 Updating base class ->UH1HL_base, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_M240/ (original exile_psycho_uh1h\config.bin)
17:44:01 Updating base class ->Ural_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_RU/ (original exile_psycho_ural\config.bin)
17:44:01 Updating base class ->Ural_Open_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_Open_RU/ (original exile_psycho_ural\config.bin)
17:44:01 Updating base class ->Truck_F, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_base/ (original exile_psycho_v3s\config.bin)
17:44:01 Updating base class ->V3S_base, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_Base_EP1/ (original exile_psycho_v3s\config.bin)
17:44:01 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo01/ (original exile_psycho_lada\config.bin)
17:44:01 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo02/ (original exile_psycho_lada\config.bin)
17:44:01 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo03/ (original exile_psycho_lada\config.bin)
17:44:01 Updating base class ->Golf_Base, by exile_psycho_vwgolf\config.bin/CfgVehicles/Golf_Civ_Base/ (original exile_psycho_vwgolf\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/75Rnd_Green_Tracer_545x39_RPK/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->75Rnd_Green_Tracer_545x39_RPK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/45Rnd_Green_Tracer_545x39_RPK/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Green_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Red_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_White_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_Yellow_Tracer_545x39_AK/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\ak\config.bin/cfgmagazines/30Rnd_762x39_AK47_M/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK47/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AK107_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK107/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AK107_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK107_GL/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AK74_GL/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AK_Base, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKM/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AKM, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AKS, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS_Gold/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->arifle_AK74, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_RPK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
17:44:01 Updating base class ->exile_arifle_M16A4_base, by exile_psycho_weapons\arifle\m\m16a4\config.bin/CfgWeapons/exile_arifle_M16A4/ (original exile_psycho_weapons\arifle\m\m16a4\config.bin)
17:44:01 Updating base class ->exile_arifle_M16A4_base, by exile_psycho_weapons\arifle\m\m16a4\config.bin/CfgWeapons/exile_arifle_M16A2/ (original exile_psycho_weapons\arifle\m\m16a4\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\arifle\m\m4\config.bin/CfgWeapons/exile_arifle_M4/ (original exile_psycho_weapons\arifle\m\m4\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/10Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
17:44:01 Updating base class ->10Rnd_765x17ball, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/20Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
17:44:01 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\arifle\sa61\config.bin/CfgWeapons/exile_rifle_SA61/ (original exile_psycho_weapons\arifle\sa61\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\mgun\pk\config.bin/CfgMagazines/100Rnd_762x54_PK_Tracer_Green/ (original exile_psycho_weapons\mgun\pk\config.bin)
17:44:01 Updating base class ->Rifle_Long_Base_F, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/PKP/ (original exile_psycho_weapons\mgun\pk\config.bin)
17:44:01 Updating base class ->PKP, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/Pecheneg/ (original exile_psycho_weapons\mgun\pk\config.bin)
17:44:01 Updating base class ShotgunBase->BulletBase, by exile_psycho_weapons\other\m1014\config.bin/CfgAmmo/B_12Gauge_Pellets/ (original a3\weapons_f\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\other\m1014\config.bin/CfgMagazines/8Rnd_B_Beneli_74Slug/ (original exile_psycho_weapons\other\m1014\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\other\m1014\config.bin/CfgMagazines/8Rnd_B_Beneli_74Pellets/ (original exile_psycho_weapons\other\m1014\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\other\m1014\config.bin/CfgWeapons/M1014/ (original exile_psycho_weapons\other\m1014\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgMagazines/7Rnd_45ACP_1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
17:44:01 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgWeapons/Colt1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\makarov\config.bin/CfgMagazines/8Rnd_9x18_Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
17:44:01 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\makarov\config.bin/CfgWeapons/Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\revolver\config.bin/CfgMagazines/6Rnd_45ACP/ (original exile_psycho_weapons\pistol\revolver\config.bin)
17:44:01 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455/ (original exile_psycho_weapons\pistol\revolver\config.bin)
17:44:01 Updating base class ->TaurusTracker455, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455_gold/ (original exile_psycho_weapons\pistol\revolver\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
17:44:01 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Yellow_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
17:44:01 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Red_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
17:44:01 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weapons\srifle\dmr\config.bin/CfgMagazines/20Rnd_Green_Tracer_762x51_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\dmr\config.bin/CfgWeapons/srifle_DMR/ (original exile_psycho_weapons\srifle\dmr\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\huntingrifle\config.bin/CfgMagazines/5x_22_LR_17_HMR_M/ (original exile_psycho_weapons\srifle\huntingrifle\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\huntingrifle\config.bin/CfgWeapons/srifle_CZ550_base/ (original exile_psycho_weapons\srifle\huntingrifle\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgMagazines/5Rnd_127x108_KSVK/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgMagazines/5Rnd_127x108_APDS_KSVK/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgWeapons/ksvk/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\leeenfield\config.bin/CfgMagazines/10x_303_M/ (original exile_psycho_weapons\srifle\leeenfield\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\leeenfield\config.bin/CfgWeapons/srifle_LeeEnfield/ (original exile_psycho_weapons\srifle\leeenfield\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\m107\config.bin/CfgMagazines/10Rnd_127x99_m107/ (original exile_psycho_weapons\srifle\m107\config.bin)
17:44:01 Updating base class ->Rifle_Long_Base_F, by exile_psycho_weapons\srifle\m107\config.bin/CfgWeapons/exile_weapons_m107/ (original exile_psycho_weapons\srifle\m107\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\svd\config.bin/CfgMagazines/10Rnd_762x54_SVD/ (original exile_psycho_weapons\srifle\svd\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\svd\config.bin/CfgWeapons/srifle_SVD/ (original exile_psycho_weapons\srifle\svd\config.bin)
17:44:01 Updating base class ->srifle_SVD, by exile_psycho_weapons\srifle\svd\config.bin/CfgWeapons/srifle_SVD_des/ (original exile_psycho_weapons\srifle\svd\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\vss\config.bin/CfgMagazines/10Rnd_9x39_VSS/ (original exile_psycho_weapons\srifle\vss\config.bin)
17:44:01 Updating base class ->CA_Magazine, by exile_psycho_weapons\srifle\vss\config.bin/CfgMagazines/20Rnd_9x39_VSS/ (original exile_psycho_weapons\srifle\vss\config.bin)
17:44:01 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\vss\config.bin/CfgWeapons/srifle_VSSVintorez/ (original exile_psycho_weapons\srifle\vss\config.bin)
17:44:01 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrier_1_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrier_3_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrier_5_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BagBunker_Tower_F/ (original a3\structures_f\mil\bagbunker\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CncBarrier_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Stone_4m_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Stone_Gate_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class OpenDoor_1->, by extendedbase\config.cpp/CfgVehicles/Land_Stone_Gate_F/UserActions/CloseDoor_1/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class OpenDoor_2->, by extendedbase\config.cpp/CfgVehicles/Land_Stone_Gate_F/UserActions/CloseDoor_2/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_WaterCooler_01_new_F/ (original a3\structures_f_bootcamp\items\electronics\config.bin)
17:44:01 Updating base class Scrapyard_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Pallet_MilBoxes_F/ (original a3\structures_f_epa\mil\scrapyard\config.bin)
17:44:01 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BagBunker_Small_F/ (original a3\structures_f\mil\bagbunker\config.bin)
17:44:01 Updating base class House_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Bunker_F/ (original a3\structures_f\mil\bunker\config.bin)
17:44:01 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrierWall_corner_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrierWall6_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrierWall4_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Cargo20_military_green_F/ (original a3\structures_f\ind\cargo\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_RampConcrete_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class BagFence_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BagFence_Corner_F/ (original a3\structures_f\mil\bagfence\config.bin)
17:44:01 Updating base class BagFence_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BagFence_Long_F/ (original a3\structures_f\mil\bagfence\config.bin)
17:44:01 Updating base class HBarrier_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrierTower_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Metal_wooden_rack_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Wall_IndCnc_4_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_City2_4m_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_City2_8m_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Helipad_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HelipadCivil_F/ (original a3\structures_f\mil\helipads\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Rack_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_City_Gate_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class OpenDoor_1->, by extendedbase\config.cpp/CfgVehicles/Land_City_Gate_F/UserActions/CloseDoor_1/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class OpenDoor_2->, by extendedbase\config.cpp/CfgVehicles/Land_City_Gate_F/UserActions/CloseDoor_2/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BarGate_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Icebox_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sign_WarningMilitaryArea_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Mil_WallBig_4m_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Cargo_Patrol_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Cargo_Patrol_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
17:44:01 Updating base class Piers_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Pier_small_F/ (original a3\structures_f\naval\piers\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Wall_Tin_4/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Tank_rust_F/ (original a3\structures_f\ind\tank\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_ShelvesMetal_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class Cargo_Tower_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Cargo_Tower_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_FuelStation_Feed_F/ (original a3\structures_f\ind\fuelstation\config.bin)
17:44:01 Updating base class BagBunker_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BagBunker_Large_F/ (original a3\structures_f\mil\bagbunker\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/ShootingPos_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class Cargo_House_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Cargo_House_V2_F/ (original a3\structures_f\mil\cargo\config.bin)
17:44:01 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Cargo40_light_green_F/ (original a3\structures_f\ind\cargo\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_cargo_house_slum_F/ (original a3\structures_f\households\slum\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CncShelter_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Wall_IndCnc_2deco_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CncWall4_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_FuelStation_Shed_F/ (original a3\structures_f\ind\fuelstation\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Shed_Small_F/ (original a3\structures_f\ind\shed\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Razorwire_F/ (original a3\structures_f\mil\fortification\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_u_Addon_01_V1_F/ (original a3\structures_f\households\addons\config.bin)
17:44:01 Updating base class Cargo_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Cargo20_sand_F/ (original a3\structures_f\ind\cargo\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GH_Stairs_F/ (original a3\structures_f_epc\dominants\ghosthotel\config.bin)
17:44:01 Updating base class Land_i_Garage_V1_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_i_Garage_V2_F/ (original a3\structures_f\households\addons\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GH_Platform_F/ (original a3\structures_f_epc\dominants\ghosthotel\config.bin)
17:44:01 Updating base class Camping_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_TentDome_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TentHangar_V1_F/ (original a3\structures_f\mil\tenthangar\config.bin)
17:44:01 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_LampHalogen_F/ (original a3\structures_f\civ\lamps\config.bin)
17:44:01 Updating base class Land_LampAirport_off_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_LampAirport_F/ (original a3\structures_f\civ\lamps\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CncWall1_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CncBarrierMedium_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Crash_barrier_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Shed_Big_F/ (original a3\structures_f\ind\shed\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TouristShelter_01_F/ (original a3\structures_f_epc\civ\tourism\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Water_source_F/ (original a3\structures_f\civ\accessories\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Concrete_SmallWall_4m_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Concrete_SmallWall_8m_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sign_WarningMilAreaSmall_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sign_WarningMilitaryVehicles_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class Land_PortableLight_single_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PortableLight_double_F/ (original a3\structures_f_epa\civ\constructions\config.bin)
17:44:01 Updating base class Reflectors->, by extendedbase\config.cpp/CfgVehicles/Land_PortableLight_double_F/Reflectors/ (original a3\structures_f_epa\civ\constructions\config.bin)
17:44:01 Updating base class Light_1->, by extendedbase\config.cpp/CfgVehicles/Land_PortableLight_double_F/Reflectors/Light_1/ (original (no unload))
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Radar_Small_F/ (original a3\structures_f\mil\radar\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Cargo_addon02_V2_F/ (original a3\structures_f\households\slum\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TableDesk_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_ToiletBox_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_ChairWood_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/BlockConcrete_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class ThingX->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_CargoBox_V1_F/ (original a3\structures_f\ind\cargo\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_IndFnc_3_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Wall_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_IndFnc_9_F/ (original a3\structures_f\walls\config.bin)
17:44:01 Updating base class Piers_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sea_Wall_F/ (original a3\structures_f\naval\piers\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_i_Addon_03_V1_F/ (original a3\structures_f\households\addons\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_i_Addon_03mid_V1_F/ (original a3\structures_f\households\addons\config.bin)
17:44:01 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_LampStreet_F/ (original a3\structures_f\civ\lamps\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Dome_Big_F/ (original a3\structures_f\research\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Hangar_F/ (original a3\structures_f\ind\airport\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Metal_Shed_F/ (original a3\structures_f\households\addons\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_spp_Tower_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sun_chair_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sunshade_04_F/ (original a3\structures_f_epc\civ\camping\config.bin)
17:44:01 Updating base class Lamps_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_LampShabby_F/ (original a3\structures_f\civ\lamps\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/LAnd_Airport_Tower_F/ (original a3\structures_f\ind\airport\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_i_Barracks_V1_F/ (original a3\structures_f\mil\barracks\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BeachBooth_01_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Castle_01_tower_F/ (original a3\structures_f\dominants\castle\config.bin)
17:44:01 Updating base class Land_Sign_Mines_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sign_WarningUnexplodedAmmo_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TTowerSmall_1_F/ (original a3\structures_f\ind\transmitter_tower\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Exile_Plant_GreenBush/ (original exile_client\config.bin)
17:44:01 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sleeping_bag_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class Rocks_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Small_Stone_02_F/ (original a3\rocks_f\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_SolarPanel_2_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_spp_Panel_F/ (original a3\structures_f\ind\solarpowerplant\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CampingChair_V2_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CampingChair_V1_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Camping_Light_F/ (original a3\structures_f_epb\civ\camping\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_CampingTable_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class Land_MapBoard_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/MapBoard_altis_F/ (original a3\structures_f\civ\infoboards\config.bin)
17:44:01 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Pavement_narrow_F/ (original a3\structures_f\civ\pavements\config.bin)
17:44:01 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Pavement_narrow_corner_F/ (original a3\structures_f\civ\pavements\config.bin)
17:44:01 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Pavement_wide_F/ (original a3\structures_f\civ\pavements\config.bin)
17:44:01 Updating base class Pavements_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Pavement_wide_corner_F/ (original a3\structures_f\civ\pavements\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Exile_ConcreteMixer/ (original exile_client\config.bin)
17:44:01 Updating base class FlagCarrier->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Flag_CSAT_F/ (original a3\structures_f\mil\flags\config.bin)
17:44:01 Updating base class ThingX->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_GarbageContainer_closed_F/ (original a3\structures_f_epb\civ\garbage\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Metal_rack_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sink_F/ (original a3\structures_f\civ\accessories\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Atm_02_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
17:44:01 Updating base class Land_BagBunker_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_BagBunker_01_small_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class Land_HBarrier_3_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrier_01_line_3_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class Land_HBarrier_5_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrier_01_line_5_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class Land_BagBunker_Tower_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrier_01_tower_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_i_House_Small_03_V1_F/ (original a3\structures_f\households\house_small03\config.bin)
17:44:01 Updating base class Land_i_House_Big_01_V1_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_i_House_Big_01_V2_F/ (original a3\structures_f\households\house_big01\config.bin)
17:44:01 Updating base class PlasticCase_01_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_PlasticCase_01_medium_F/ (original a3\structures_f_heli\items\luggage\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Research_HQ_F/ (original a3\structures_f\research\config.bin)
17:44:01 Updating base class House_Small_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Research_house_V1_F/ (original a3\structures_f\research\config.bin)
17:44:01 Updating base class House_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Airport_01_hangar_F/ (original a3\structures_f_exp\infrastructure\airports\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Ammobox_rounds_F/ (original a3\structures_f_epb\items\military\config.bin)
17:44:01 Updating base class Slingload_01_Base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/B_Slingload_01_Ammo_F/ (original a3\supplies_f_heli\slingload\config.bin)
17:44:01 Updating base class Slingload_01_Base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/B_Slingload_01_fuel_F/ (original a3\supplies_f_heli\slingload\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_IRMaskingCover_01_F/ (original a3\props_f_exp\military\camps\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_IRMaskingCover_02_F/ (original a3\props_f_exp\military\camps\config.bin)
17:44:01 Updating base class Land_BagFence_Long_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Bagfence_01_long_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class Land_BagFence_Short_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Bagfence_01_short_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class Land_BagBunker_Large_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Bagbunker_01_large_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class Land_HBarrierTower_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_HBarrier_01_big_tower_green_F/ (original a3\structures_f_exp\military\fortifications\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Suitcase_F/ (original a3\structures_f\items\luggage\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GamingSet_01_powerSupply_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GamingSet_01_camera_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Land_WaterPump_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/WaterPump_01_forest_F/ (original a3\structures_f_heli\ind\machines\config.bin)
17:44:01 Updating base class Land_WaterPump_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/WaterPump_01_sand_F/ (original a3\structures_f_heli\ind\machines\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TripodScreen_01_large_F/ (original a3\props_f_exp\military\camps\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TripodScreen_01_dual_v2_F/ (original a3\props_f_exp\military\camps\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TripodScreen_01_dual_v1_F/ (original a3\props_f_exp\military\camps\config.bin)
17:44:01 Updating base class Target_Swivel_01_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Target_Swivel_01_ground_F/ (original a3\structures_f_mark\training\config.bin)
17:44:01 Updating base class EventHandlers->, by extendedbase\config.cpp/CfgVehicles/Target_Swivel_01_ground_F/EventHandlers/ (original a3\structures_f_mark\training\config.bin)
17:44:01 Updating base class AnimationSources->, by extendedbase\config.cpp/CfgVehicles/Target_Swivel_01_ground_F/AnimationSources/ (original a3\structures_f_mark\training\config.bin)
17:44:01 Updating base class Screws_source->, by extendedbase\config.cpp/CfgVehicles/Target_Swivel_01_ground_F/AnimationSources/Screws_source/ (original a3\structures_f_mark\training\config.bin)
17:44:01 Updating base class TargetP_Inf_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/TargetP_Inf_Acc2_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class TargetBootcampHumanSimple_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/TargetBootcampHuman_F/ (original a3\structures_f_bootcamp\training\config.bin)
17:44:01 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Target_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_SatelliteAntenna_01_F/ (original a3\props_f_exp\military\camps\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Projector_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PortableGenerator_01_F/ (original a3\props_f_exp\military\camps\config.bin)
17:44:01 Updating base class Land_Obstacle_Bridge_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Obstacle_Ramp_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class Land_MetalBarrel_empty_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/MetalBarrel_burning_F/ (original a3\structures_f\items\vessels\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_FlatTV_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_ChairPlastic_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GamingSet_01_console_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GamingSet_01_controller_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class SportsGrounds_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GymBench_01_F/ (original a3\structures_f_bootcamp\civ\sportsgrounds\config.bin)
17:44:01 Updating base class SportsGrounds_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_GymRack_03_F/ (original a3\structures_f_bootcamp\civ\sportsgrounds\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_Microwave_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_OfficeCabinet_01_F/ (original a3\structures_f_heli\furniture\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_OfficeChair_01_F/ (original a3\structures_f_heli\furniture\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PCSet_01_case_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PCSet_01_keyboard_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PCSet_01_mouse_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PCSet_01_screen_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Items_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Printer_01_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_RattanChair_01_F/ (original a3\structures_f_heli\furniture\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_RattanTable_01_F/ (original a3\structures_f_heli\furniture\config.bin)
17:44:01 Updating base class Land_Sleeping_bag_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sleeping_bag_blue_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class Land_Sleeping_bag_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sleeping_bag_brown_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class Land_Trophy_01_gold_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Trophy_01_bronze_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
17:44:01 Updating base class SportItems_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Trophy_01_gold_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
17:44:01 Updating base class Land_Trophy_01_gold_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Trophy_01_silver_F/ (original a3\structures_f_bootcamp\items\sport\config.bin)
17:44:01 Updating base class Land_Sun_chair_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sun_chair_green_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sunshade_01_F/ (original a3\structures_f_epc\civ\camping\config.bin)
17:44:01 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sunshade_02_F/ (original a3\structures_f_epc\civ\camping\config.bin)
17:44:01 Updating base class Land_Sunshade_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sunshade_03_F/ (original a3\structures_f_epc\civ\camping\config.bin)
17:44:01 Updating base class Camping_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sunshade_F/ (original a3\structures_f\civ\camping\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_TablePlastic_01_F/ (original a3\structures_f_epc\civ\accessories\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_WoodenTable_large_F/ (original a3\structures_f_epa\civ\camping\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_WoodenTable_small_F/ (original a3\structures_f_epa\civ\camping\config.bin)
17:44:01 Updating base class Land_OfficeTable_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/OfficeTable_01_new_F/ (original a3\structures_f_heli\furniture\config.bin)
17:44:01 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_DieselGroundPowerUnit_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
17:44:01 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_EngineCrane_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
17:44:01 Updating base class PalletTrolley_01_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PalletTrolley_01_yellow_F/ (original a3\structures_f_heli\civ\market\config.bin)
17:44:01 Updating base class Machine_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PressureWasher_01_F/ (original a3\structures_f_heli\ind\machines\config.bin)
17:44:01 Updating base class ToolTrolley_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_ToolTrolley_01_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
17:44:01 Updating base class ToolTrolley_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_ToolTrolley_02_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
17:44:01 Updating base class Constructions_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_WeldingTrolley_01_F/ (original a3\structures_f_heli\civ\constructions\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Workbench_01_F/ (original a3\structures_f_heli\furniture\config.bin)
17:44:01 Updating base class Thing->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/ArrowDesk_L_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class ArrowDesk_L_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/ArrowDesk_R_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class Land_PlasticBarrier_02_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PlasticBarrier_02_grey_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
17:44:01 Updating base class Land_PlasticBarrier_02_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PlasticBarrier_02_yellow_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
17:44:01 Updating base class Land_PlasticBarrier_03_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PlasticBarrier_03_blue_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
17:44:01 Updating base class Land_PlasticBarrier_03_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PlasticBarrier_03_orange_F/ (original a3\structures_f_kart\civ\sportsgrounds\config.bin)
17:44:01 Updating base class RoadCone_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/RoadBarrier_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class ThingX->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/RoadCone_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class Sign_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/TapeSign_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class NonStrategic->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Sign_Mines_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class Land_Fridge_01_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Fridge_01_closed_F/ (original a3\structures_f_heli\items\electronics\config.bin)
17:44:01 Updating base class MetalCase_01_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_MetalCase_01_large_F/ (original a3\structures_f_heli\items\luggage\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_ShelvesWooden_F/ (original a3\structures_f_epb\furniture\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_ShelvesWooden_blue_F/ (original a3\structures_f\furniture\config.bin)
17:44:01 Updating base class Furniture_base_F->Exile_Container_Abstract, by extendedbase\config.cpp/CfgVehicles/Land_ShelvesWooden_khaki_F/ (original a3\structures_f_epb\furniture\config.bin)
17:44:01 Updating base class RoadCone_L_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/RoadBarrier_small_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/RoadCone_L_F/ (original a3\signs_f\config.bin)
17:44:01 Updating base class FloatingStructure_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_PortableHelipadLight_01_F/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_blue_F/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class MarkerLights->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_blue_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Light_1->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_blue_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_green_F/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class MarkerLights->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_green_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Light_1->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_green_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_red_F/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class MarkerLights->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_red_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Light_1->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_red_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_white_F/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class MarkerLights->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_white_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Light_1->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_white_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Land_PortableHelipadLight_01_F->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_yellow_F/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class MarkerLights->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_yellow_F/MarkerLights/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class Light_1->, by extendedbase\config.cpp/CfgVehicles/PortableHelipadLight_01_yellow_F/MarkerLights/Light_1/ (original a3\structures_f_heli\items\airport\config.bin)
17:44:01 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Target_Dueling_01_F/ (original a3\structures_f_mark\training\config.bin)
17:44:01 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/Land_Target_Oval_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class TargetBase->Exile_Construction_Abstract_Static, by extendedbase\config.cpp/CfgVehicles/TargetP_Inf_F/ (original a3\structures_f\training\config.bin)
17:44:01 Updating base class ->Plane_Civil_01_base_F, by a3\air_f_exp\plane_civil_01\config.bin/CfgVehicles/C_Plane_Civil_01_F/ (original a3\air_f_exp\plane_civil_01\config.bin)
17:44:01 Updating base class ->VTOL_01_infantry_base_F, by a3\air_f_exp\vtol_01\config.bin/CfgVehicles/B_T_VTOL_01_infantry_F/ (original a3\air_f_exp\vtol_01\config.bin)
17:44:01 Updating base class ->VTOL_01_vehicle_base_F, by a3\air_f_exp\vtol_01\config.bin/CfgVehicles/B_T_VTOL_01_vehicle_F/ (original a3\air_f_exp\vtol_01\config.bin)
17:44:01 Updating base class ->Boat_Transport_02_base_F, by a3\boat_f_exp\boat_transport_02\config.bin/CfgVehicles/B_G_Boat_Transport_02_F/ (original a3\boat_f_exp\boat_transport_02\config.bin)
17:44:01 Updating base class ->Scooter_Transport_01_base_F, by a3\boat_f_exp\scooter_transport_01\config.bin/CfgVehicles/C_Scooter_Transport_01_F/ (original a3\boat_f_exp\scooter_transport_01\config.bin)
17:44:01 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin)
17:44:01 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin)
17:44:02 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\3den\config.bin)
17:44:02 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Combo/Controls/ (original a3\3den\config.bin)
17:44:02 Updating base class Controls->, by a3\modules_f_tacops\config.bin/Cfg3DEN/Attributes/Slider/Controls/ (original a3\3den\config.bin)
17:44:02 Updating base class ScrollBar->ScrollBar, by a3\ui_f_tank\config.bin/RscListNBox/ListScrollBar/ (original a3\ui_f_tank\config.bin)
17:44:02 Updating base class RscText->RscPicture, by a3\ui_f_tank\config.bin/RscDisplayVoiceChat/controls/Picture/ (original a3\ui_f\config.bin)
17:44:02 Updating base class BaseSoundModeType->, by a3\weapons_f_tank\config.bin/CfgWeapons/launcher_SPG9/StandardSound/ (original a3\sounds_f_tank\config.bin)
17:44:03 Initializing Steam Manager
17:44:03 Steam Manager initialized.
17:44:03 
17:44:03 ==== Loaded addons ====
17:44:03 
17:44:03 dta\languagecore_f.pbo - 128479
17:44:03 dta\core.pbo - 119457
17:44:03 dta\bin.pbo - 144710
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@RZInfection\addons\rzinfection.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Zombies\addons\ryanzombies.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Extended_Base_Mod\addons\extendedbase.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_suvarm_a3.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_brdm.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_tractor.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_v3s.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_suv_a3.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_weapons.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_client.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_an2.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_octavia.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_btr40.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_uh1h.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\gnt_c185.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_ural.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_danny_items.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\dbo_old_bike.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_gaz_volha.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_vwgolf.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_lrc.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_hmmw.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_ikarus.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_assets.pbo - 18030414
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_uaz.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_towtractor.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\exile_psycho_lada.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile\addons\a3_dms.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\armor_f_tank.ebo - 129202
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\cargoposes_f_tank.ebo - 128283
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\characters_f_tank.ebo - 128525
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\data_f_tank.ebo - 128203
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\dubbing_f_tank.ebo - 127958
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\editorpreviews_f_tank.ebo - 127967
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\functions_f_tank.ebo - 125996
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\language_f_tank.ebo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\languagemissions_f_tank.ebo - 128997
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\missions_f_tank.ebo - 128997
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\missions_f_tank_data.ebo - 128937
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\modules_f_tank.ebo - 128438
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\music_f_tank.ebo - 127912
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\props_f_tank.ebo - 127987
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\sounds_f_tank.ebo - 128448
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\structures_f_tank.ebo - 128199
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\ui_f_tank.ebo - 128232
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank\addons\weapons_f_tank.pbo - 128448
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\missions_f_tacops.ebo - 129178
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\language_f_tacops.ebo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\dubbing_f_tacops.ebo - 124170
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\characters_f_tacops.ebo - 126612
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\modules_f_tacops.ebo - 124298
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\languagemissions_f_tacops.ebo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\sounds_f_tacops.ebo - 123795
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\data_f_tacops.ebo - 126731
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\music_f_tacops.ebo - 124064
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\functions_f_tacops.ebo - 124382
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops\addons\ui_f_tacops.ebo - 124116
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\supplies_f_orange.pbo - 120744
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\languagemissions_f_orange.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\weapons_f_orange.pbo - 127987
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\modules_f_orange.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\missions_f_orange.pbo - 126711
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\structures_f_orange.pbo - 121553
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\cargoposes_f_orange.pbo - 126225
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\props_f_orange.pbo - 124579
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\ui_f_orange.pbo - 123398
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\editorpreviews_f_orange.pbo - 123173
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\air_f_orange.pbo - 123266
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\language_f_orange.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\characters_f_orange.pbo - 126000
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\music_f_orange.pbo - 120725
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\soft_f_orange.pbo - 127915
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\functions_f_orange.pbo - 128287
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\sounds_f_orange.pbo - 122301
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\dubbing_f_orange.pbo - 121689
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange\addons\data_f_orange.pbo - 121095
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\map_malden_data_layers.pbo - 123441
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\data_f_argo.pbo - 128209
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\missions_f_patrol.pbo - 126663
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\music_f_argo.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\editorpreviews_f_argo.pbo - 121102
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\characters_f_patrol.pbo - 120167
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\armor_f_argo.pbo - 119456
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\weapons_f_patrol.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\ui_f_patrol.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\map_malden_scenes_f.pbo - 120026
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\languagemissions_f_patrol.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\modules_f_patrol.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\rocks_f_argo.pbo - 123488
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\structures_f_argo.pbo - 128082
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\map_malden_data.pbo - 126137
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\language_f_argo.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\props_f_argo.pbo - 123488
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\functions_f_patrol.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\sounds_f_patrol.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\vegetation_f_argo.pbo - 123488
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\data_f_patrol.pbo - 121287
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\map_malden.pbo - 124639
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo\addons\language_f_patrol.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\data_f_jets.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\characters_f_jets.pbo - 120162
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\dubbing_f_jets.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\music_f_jets.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\weapons_f_jets.pbo - 126259
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\functions_f_jets.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\boat_f_jets.pbo - 127093
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\language_f_jets.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\sounds_f_jets.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\air_f_jets.pbo - 127070
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\props_f_jets.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\missions_f_jets.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\static_f_jets.pbo - 127106
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\cargoposes_f_jets.pbo - 126225
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\ui_f_jets.pbo - 126137
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\languagemissions_f_jets.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\editorpreviews_f_jets.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\modules_f_jets.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets\addons\anims_f_jets.pbo - 123210
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\missions_f_exp_video.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\rocks_f_exp.pbo - 119519
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\missions_f_exp_data.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\props_f_exp.pbo - 127275
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\structures_f_exp_cultural.pbo - 123423
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\map_tanoa_scenes_f.pbo - 123527
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\ui_f_exp.pbo - 123398
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\boat_f_exp.pbo - 127566
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\map_tanoabuka_data.pbo - 123523
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\editorpreviews_f_exp.pbo - 126519
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\map_tanoabuka_data_layers_00_00.pbo - 121192
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\language_f_exp.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\structures_f_exp_civilian.pbo - 123425
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\vegetation_f_exp.pbo - 127271
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\characters_f_exp.pbo - 126967
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\map_data_exp.pbo - 123499
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\music_f_exp.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\cargoposes_f_exp.pbo - 126224
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\supplies_f_exp.pbo - 119865
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\sounds_f_exp.pbo - 125380
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\functions_f_exp.pbo - 127245
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\structures_f_exp.pbo - 127271
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\soft_f_exp.pbo - 129203
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\weapons_f_exp.pbo - 128284
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\structures_f_exp_infrastructure.pbo - 123432
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\armor_f_exp.pbo - 127544
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\dubbing_f_exp.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\structures_f_exp_data.pbo - 123431
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\structures_f_exp_commercial.pbo - 123430
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\missions_f_exp.pbo - 126663
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\map_tanoabuka.pbo - 127530
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\static_f_exp.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\structures_f_exp_industrial.pbo - 123429
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\map_tanoabuka_data_layers.pbo - 121192
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\music_f_exp_music.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\modules_f_exp.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\anims_f_exp.pbo - 126506
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\dubbing_radio_f_exp.pbo - 119458
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\languagemissions_f_exp.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\air_f_exp.pbo - 128341
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\data_f_exp.pbo - 128203
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\missions_f_mark_video.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\music_f_mark.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\missions_f_mp_mark.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\characters_f_mark.pbo - 124628
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\languagemissions_f_mp_mark.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\modules_f_mark.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\missions_f_mark.pbo - 122301
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\modules_f_mp_mark.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\missions_f_mp_mark_data.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\missions_f_mark_data.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\anims_f_mark.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\dubbing_f_mp_mark.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\languagemissions_f_mark.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\music_f_mark_music.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\ui_f_mp_mark.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\static_f_mark.pbo - 122307
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\sounds_f_mark.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\functions_f_mark.pbo - 128181
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\ui_f_mark.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\data_f_mark.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\language_f_mark.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\structures_f_mark.pbo - 123419
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\supplies_f_mark.pbo - 120112
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\functions_f_mp_mark.pbo - 129434
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\language_f_mp_mark.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\dubbing_f_mark.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark\addons\weapons_f_mark.pbo - 124784
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\missions_f_heli_video.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\dubbing_f_heli.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\boat_f_heli.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\music_f_heli_music.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\cargoposes_f_heli.pbo - 126231
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\modules_f_heli.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\missions_f_heli.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\language_f_heli.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\data_f_heli.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\languagemissions_f_heli.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\missions_f_heli_data.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\anims_f_heli.pbo - 123210
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\air_f_heli.pbo - 125011
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\structures_f_heli.pbo - 121553
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\functions_f_heli.pbo - 123022
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\sounds_f_heli.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\ui_f_heli.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\supplies_f_heli.pbo - 121339
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\soft_f_heli.pbo - 127548
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli\addons\music_f_heli.pbo - 119477
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\modules_f_kart_data.pbo - 124178
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\missions_f_kart.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\ui_f_kart.pbo - 119478
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\structures_f_kart.pbo - 123419
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\anims_f_kart.pbo - 123210
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\characters_f_kart.pbo - 120162
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\missions_f_kart_data.pbo - 119459
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\data_f_kart.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\languagemissions_f_kart.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\sounds_f_kart.pbo - 125381
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\soft_f_kart.pbo - 127571
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\modules_f_kart.pbo - 128288
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\language_f_kart.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart\addons\weapons_f_kart.pbo - 120217
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator\addons\ui_f_curator.pbo - 123831
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator\addons\data_f_curator_music.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator\addons\missions_f_curator.pbo - 121570
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator\addons\language_f_curator.pbo - 128479
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator\addons\data_f_curator.pbo - 119457
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator\addons\functions_f_curator.pbo - 123333
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator\addons\modules_f_curator.pbo - 128381
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@AdvancedRappelling\addons\ar_advancedrappelling.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Enhanced_Movement\addons\babe_core.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Enhanced_Movement\addons\babe_em.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Enhanced_Movement\addons\babe_int.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@AdvancedTowing\addons\sa_advancedtowing.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@infiSTAR_Exile\addons\a3_infistar_exile.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Enigma\addons\enigma_exile_revive.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\addons\exile_server_config.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\addons\exile_server.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\addons\a3_infistar_exile_customapps.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\addons\a3_exile_occupation.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\addons\a3_vemf_reloaded.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\addons\a3_vemf_reloaded_config.pbo - unknown
17:44:03 C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\addons\exilez.pbo - unknown
17:44:03 addons\missions_f_epb_data.pbo - 92728
17:44:03 addons\missions_f_epb_video.pbo - 73106
17:44:03 addons\missions_f_epc_data.pbo - 84724
17:44:03 addons\missions_f_epc_video.pbo - 84725
17:44:03 addons\dubbing_radio_f_data_eng.pbo - 119457
17:44:03 addons\dubbing_radio_f_data_engb.pbo - 119458
17:44:03 addons\dubbing_radio_f_data_gre.pbo - 119458
17:44:03 addons\dubbing_radio_f_data_per.pbo - 119458
17:44:03 addons\dubbing_radio_f_data_vr.pbo - 119458
17:44:03 addons\dubbing_f.pbo - 119457
17:44:03 addons\dubbing_f_beta.pbo - 119457
17:44:03 addons\dubbing_f_bootcamp.pbo - 119457
17:44:03 addons\dubbing_f_epa.pbo - 119457
17:44:03 addons\dubbing_f_epb.pbo - 119457
17:44:03 addons\dubbing_f_epc.pbo - 119457
17:44:03 addons\dubbing_f_gamma.pbo - 122449
17:44:03 addons\dubbing_radio_f.pbo - 119457
17:44:03 addons\map_altis_data.pbo - 123439
17:44:03 addons\map_altis_scenes_f.pbo - 119459
17:44:03 addons\map_stratis_scenes_f.pbo - 119459
17:44:03 addons\map_vr.pbo - 105264
17:44:03 addons\map_vr_scenes_f.pbo - 119459
17:44:03 addons\3den.pbo - 127112
17:44:03 addons\3den_language.pbo - 128479
17:44:03 addons\a3.pbo - unknown
17:44:03 addons\air_f.pbo - 127691
17:44:03 addons\air_f_beta.pbo - 128341
17:44:03 addons\air_f_epb.pbo - 127534
17:44:03 addons\air_f_epc.pbo - 127245
17:44:03 addons\air_f_gamma.pbo - 126955
17:44:03 addons\animals_f.pbo - 127270
17:44:03 addons\animals_f_beta.pbo - 123208
17:44:03 addons\anims_f.pbo - 127133
17:44:03 addons\anims_f_bootcamp.pbo - 123209
17:44:03 addons\anims_f_data.pbo - 127133
17:44:03 addons\anims_f_epa.pbo - 123209
17:44:03 addons\anims_f_epc.pbo - 121358
17:44:03 addons\anims_f_exp_a.pbo - 123209
17:44:03 addons\armor_f.pbo - 128564
17:44:03 addons\baseconfig_f.pbo - 119457
17:44:03 addons\boat_f.pbo - 128382
17:44:03 addons\boat_f_beta.pbo - 127315
17:44:03 addons\boat_f_epc.pbo - 119457
17:44:03 addons\boat_f_gamma.pbo - 127529
17:44:03 addons\cargoposes_f.pbo - 128420
17:44:03 addons\characters_f.pbo - 127763
17:44:03 addons\characters_f_beta.pbo - 126000
17:44:03 addons\characters_f_bootcamp.pbo - 123475
17:44:03 addons\characters_f_epa.pbo - 124682
17:44:03 addons\characters_f_epb.pbo - 124682
17:44:03 addons\characters_f_epc.pbo - 123851
17:44:03 addons\characters_f_gamma.pbo - 127467
17:44:03 addons\data_f_bootcamp.pbo - 119457
17:44:03 addons\data_f_exp_a.pbo - 119457
17:44:03 addons\data_f_exp_b.pbo - 119457
17:44:03 addons\drones_f.pbo - 128423
17:44:03 addons\editor_f.pbo - 121103
17:44:03 addons\editorpreviews_f.pbo - 128120
17:44:03 addons\functions_f.pbo - 127891
17:44:03 addons\functions_f_bootcamp.pbo - 127915
17:44:03 addons\functions_f_epa.pbo - 119458
17:44:03 addons\functions_f_epc.pbo - 119458
17:44:03 addons\functions_f_exp_a.pbo - 122619
17:44:03 addons\language_f.pbo - 128479
17:44:03 addons\language_f_beta.pbo - 128479
17:44:03 addons\language_f_bootcamp.pbo - 128479
17:44:03 addons\language_f_epa.pbo - 128479
17:44:03 addons\language_f_epb.pbo - 128479
17:44:03 addons\language_f_epc.pbo - 128479
17:44:03 addons\language_f_exp_a.pbo - 128479
17:44:03 addons\language_f_exp_b.pbo - 128479
17:44:03 addons\language_f_gamma.pbo - 128479
17:44:03 addons\languagemissions_f.pbo - 128479
17:44:03 addons\languagemissions_f_beta.pbo - 128479
17:44:03 addons\languagemissions_f_bootcamp.pbo - 128479
17:44:03 addons\languagemissions_f_epa.pbo - 128479
17:44:03 addons\languagemissions_f_epb.pbo - 128479
17:44:03 addons\languagemissions_f_epc.pbo - 128479
17:44:03 addons\languagemissions_f_exp_a.pbo - 128479
17:44:03 addons\languagemissions_f_gamma.pbo - 128479
17:44:03 addons\map_altis.pbo - 127995
17:44:03 addons\map_altis_data_layers.pbo - 123456
17:44:03 addons\map_altis_data_layers_00_00.pbo - 0000
17:44:03 addons\map_altis_data_layers_00_01.pbo - 0000
17:44:03 addons\map_altis_data_layers_01_00.pbo - 0000
17:44:03 addons\map_altis_data_layers_01_01.pbo - 0000
17:44:03 addons\map_data.pbo - 127098
17:44:03 addons\map_stratis.pbo - 127093
17:44:03 addons\map_stratis_data.pbo - 122905
17:44:03 addons\map_stratis_data_layers.pbo - 122917
17:44:03 addons\misc_f.pbo - 119459
17:44:03 addons\missions_f.pbo - 123018
17:44:03 addons\missions_f_beta.pbo - 122470
17:44:03 addons\missions_f_beta_data.pbo - 119459
17:44:03 addons\missions_f_beta_video.pbo - 119459
17:44:03 addons\missions_f_bootcamp.pbo - 128405
17:44:03 addons\missions_f_bootcamp_data.pbo - 119459
17:44:03 addons\missions_f_bootcamp_video.pbo - 119459
17:44:03 addons\missions_f_data.pbo - 119459
17:44:03 addons\missions_f_epa.pbo - 125124
17:44:03 addons\missions_f_epa_data.pbo - 119459
17:44:03 addons\missions_f_epa_video.pbo - 119459
17:44:03 addons\missions_f_epb.pbo - 119459
17:44:03 addons\missions_f_epc.pbo - 119459
17:44:03 addons\missions_f_exp_a.pbo - 121496
17:44:03 addons\missions_f_exp_a_data.pbo - 119459
17:44:03 addons\missions_f_gamma.pbo - 126663
17:44:03 addons\missions_f_gamma_data.pbo - 119459
17:44:03 addons\missions_f_gamma_video.pbo - 119459
17:44:03 addons\missions_f_video.pbo - 119459
17:44:03 addons\modules_f.pbo - 124453
17:44:03 addons\modules_f_beta.pbo - 119459
17:44:03 addons\modules_f_beta_data.pbo - 119459
17:44:03 addons\modules_f_bootcamp.pbo - 119459
17:44:03 addons\modules_f_data.pbo - 122470
17:44:03 addons\modules_f_epb.pbo - 119459
17:44:03 addons\modules_f_exp_a.pbo - 119459
17:44:03 addons\music_f.pbo - 119459
17:44:03 addons\music_f_bootcamp.pbo - 119459
17:44:03 addons\music_f_bootcamp_music.pbo - 119459
17:44:03 addons\music_f_epa.pbo - 119459
17:44:03 addons\music_f_epa_music.pbo - 119459
17:44:03 addons\music_f_epb.pbo - 119459
17:44:03 addons\music_f_epb_music.pbo - 119459
17:44:03 addons\music_f_epc.pbo - 119459
17:44:03 addons\music_f_epc_music.pbo - 119477
17:44:03 addons\music_f_music.pbo - 119477
17:44:03 addons\plants_f.pbo - 126807
17:44:03 addons\props_f_exp_a.pbo - 119459
17:44:03 addons\roads_f.pbo - 127271
17:44:03 addons\rocks_f.pbo - 127271
17:44:03 addons\signs_f.pbo - 127272
17:44:03 addons\soft_f_beta.pbo - 128423
17:44:03 addons\soft_f_bootcamp.pbo - 128124
17:44:03 addons\soft_f_epc.pbo - 127560
17:44:03 addons\sounds_f_arsenal.pbo - 127887
17:44:03 addons\sounds_f_bootcamp.pbo - 119477
17:44:03 addons\sounds_f_characters.pbo - 121082
17:44:03 addons\sounds_f_environment.pbo - 120046
17:44:03 addons\sounds_f_epb.pbo - 126923
17:44:03 addons\sounds_f_epc.pbo - 125380
17:44:03 addons\sounds_f_exp_a.pbo - 119477
17:44:03 addons\sounds_f_sfx.pbo - 119477
17:44:03 addons\sounds_f_vehicles.pbo - 128448
17:44:03 addons\static_f.pbo - 127105
17:44:03 addons\static_f_beta.pbo - 122642
17:44:03 addons\static_f_gamma.pbo - 122615
17:44:03 addons\structures_f.pbo - 128078
17:44:03 addons\structures_f_bootcamp.pbo - 123488
17:44:03 addons\structures_f_data.pbo - 125010
17:44:03 addons\structures_f_epa.pbo - 123407
17:44:03 addons\structures_f_epb.pbo - 126137
17:44:03 addons\structures_f_epc.pbo - 123407
17:44:03 addons\structures_f_exp_a.pbo - 123423
17:44:03 addons\structures_f_households.pbo - 124185
17:44:03 addons\structures_f_ind.pbo - 127271
17:44:03 addons\structures_f_mil.pbo - 127270
17:44:03 addons\structures_f_wrecks.pbo - 123419
17:44:03 addons\ui_f.pbo - 128291
17:44:03 addons\ui_f_bootcamp.pbo - 119478
17:44:03 addons\ui_f_data.pbo - 127963
17:44:03 addons\ui_f_exp_a.pbo - 119478
17:44:03 addons\uifonts_f.pbo - 119478
17:44:03 addons\uifonts_f_data.pbo - 128439
17:44:03 addons\weapons_f_beta.pbo - 126181
17:44:03 addons\weapons_f_bootcamp.pbo - 124358
17:44:03 addons\weapons_f_epa.pbo - 124514
17:44:03 addons\weapons_f_epb.pbo - 124216
17:44:03 addons\weapons_f_epc.pbo - 126010
17:44:03 addons\weapons_f_gamma.pbo - 120217
17:44:03 addons\armor_f_beta.pbo - 129202
17:44:03 addons\armor_f_epb.pbo - 129202
17:44:03 addons\armor_f_epc.pbo - 129202
17:44:03 addons\armor_f_gamma.pbo - 129202
17:44:03 addons\data_f.pbo - 129205
17:44:03 addons\soft_f.pbo - 129202
17:44:03 addons\soft_f_gamma.pbo - 129204
17:44:03 addons\sounds_f.pbo - 129176
17:44:03 addons\weapons_f.pbo - 129260
17:44:03 
17:44:03 =======================
17:44:03 
17:44:04 ============================================================================================= List of mods ===============================================================================================
17:44:04 modsReadOnly = true
17:44:04 safeModsActivated = false
17:44:04 customMods = true
17:44:04 hash = '28C6D246E8BBD2A9DDA559815E630D823616B590'
17:44:04 hashShort = '106a1da8'
17:44:04                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath
17:44:04 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
17:44:04                             RZ Infection for Exile |         @RZInfection |      false |             GAME DIR | 65ee84bd518bada70a9ecb8dea27ee87462839c6 |  e720cc2d | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@RZInfection
17:44:04                            Ryan's Zombies & Demons |             @Zombies |      false |             GAME DIR | 23521818bfc490f1d11143ee1f82492ef3929eb5 |  6af45ca3 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Zombies
17:44:04                                  Extended Base Mod |   @Extended_Base_Mod |      false |             GAME DIR | adc9a952de93170cc12ed3b8e2e41976127c5601 |  c0f4e382 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Extended_Base_Mod
17:44:04                                          Exile Mod |               @Exile |      false |             GAME DIR | 396fbeaf06974d5c2ad5632a194f234cd09ec99c |  e47f75b6 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Exile
17:44:04                                Arma 3 DLC Bundle 2 |           dlcbundle2 |       true |            NOT FOUND |                                          |           | 
17:44:04                                Arma 3 DLC Bundle 1 |            dlcbundle |       true |            NOT FOUND |                                          |           | 
17:44:04                                       Arma 3 Tanks |                 tank |       true |             GAME DIR | 4df9fdc3af2a71c62627be80a7ab755a02dcf1df |  2ce77785 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tank
17:44:04                                     Arma 3 Tac-Ops |               tacops |       true |             GAME DIR | 211c4e0554a0d385f9e06657f86014ea812e9c0a |  1ee5ddc3 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\tacops
17:44:04                                 Arma 3 Laws of War |               orange |       true |             GAME DIR | ef1cd56c40b4d010daf1fe1381a0d5cba5ee8ca9 |  9aa3097a | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\orange
17:44:04                                      Arma 3 Malden |                 argo |       true |             GAME DIR | 5bcf910df6383993f930b60be8d021bd84bf71ec |  71d3c487 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\argo
17:44:04                                        Arma 3 Jets |                 jets |       true |             GAME DIR | 74f82e56aeb43fed4d356df93e4beac6ef325d51 |  8057ba80 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\jets
17:44:04                                        Arma 3 Apex |            expansion |       true |             GAME DIR | 64ea965281ee9614ad2faf70dfcb7f9bcfd819f3 |  8fe2dec7 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\expansion
17:44:04                                    Arma 3 Marksmen |                 mark |       true |             GAME DIR | 6e50469e36f2352ccd7b1a42c8040c3c8ae34873 |  f3c390b7 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\mark
17:44:04                                 Arma 3 Helicopters |                 heli |       true |             GAME DIR | 82775a9a7fc84fa1b6778ac18afa572af8b14bce |   61ee9c5 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\heli
17:44:04                                       Arma 3 Karts |                 kart |       true |             GAME DIR | 2d9f96493344582fe37d5b3ee10451e8166326c1 |  f10e9c75 | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\kart
17:44:04                                        Arma 3 Zeus |              curator |       true |             GAME DIR | e576b57de30c4fbaa7337db15aca30e906047e0e |  2e0f3c2b | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\curator
17:44:04                                             Arma 3 |                   A3 |       true |            NOT FOUND |                                          |           | 
17:44:04                                Advanced Rappelling |  @AdvancedRappelling |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@AdvancedRappelling
17:44:04                                  Enhanced Movement |   @Enhanced_Movement |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Enhanced_Movement
17:44:04                                    Advanced Towing |      @AdvancedTowing |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@AdvancedTowing
17:44:04                                    @infiSTAR_Exile |      @infiSTAR_Exile |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@infiSTAR_Exile
17:44:04                                            @Enigma |              @Enigma |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@Enigma
17:44:04                                       @ExileServer |         @ExileServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer
17:44:04 ==========================================================================================================================================================================================================
17:44:04 InitSound ...
17:44:04 InitSound - complete
17:44:04 PhysX3 SDK Init started ...
17:44:04 PhysX3 SDK Init ended.
17:44:09 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
a3_characters_f
17:44:09 Loading movesType CfgGesturesMale
17:44:09 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:09 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
17:44:10 MovesType CfgGesturesMale load time 171 ms
17:44:10 Loading movesType CfgMovesMaleSdr
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnr doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_patrolwpn doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_backwpnl doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone slot_buttpack doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone hips doesn't exist in skeleton OFP2_ManSkeleton
17:44:17 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
17:44:19 Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\sittingchair\hubsittingchaira_idle1.rtm differs (looped now 0)! MoveName: hubsittingchaira_idle1
17:44:20 MovesType CfgMovesMaleSdr load time 10467 ms
17:44:21 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
17:44:21 Steam AppId from steam_appid.txt: 107410
17:44:22 Starting mission:
17:44:22  Mission file: Exile (__cur_mp)
17:44:22  Mission world: Altis
17:44:22  Mission directory: mpmissions\__cur_mp.Altis\
17:44:30 Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
17:44:30 Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
17:44:30 Land_i_House_Big_01_V2_F: door_1_rot - unknown animation source door_1_sound_source
17:44:30 Land_i_House_Big_01_V2_F: door_1_handle_rot_1 - unknown animation source door_1_nosound_source
17:44:30 Land_i_House_Big_01_V2_F: door_1_handle_rot_2 - unknown animation source door_1_nosound_source
17:44:30 Land_i_House_Big_01_V2_F: door_1_locked_rot - unknown animation source door_1_locked_source
17:44:30 Land_i_House_Big_01_V2_F: door_1_handle_locked_rot - unknown animation source door_1_locked_source
17:44:30 Land_i_House_Big_01_V2_F: door_2_rot - unknown animation source door_2_sound_source
17:44:30 Land_i_House_Big_01_V2_F: door_2_handle_rot_1 - unknown animation source door_2_nosound_source
17:44:30 Land_i_House_Big_01_V2_F: door_2_handle_rot_2 - unknown animation source door_2_nosound_source
17:44:30 Land_i_House_Big_01_V2_F: door_2_locked_rot - unknown animation source door_2_locked_source
17:44:30 Land_i_House_Big_01_V2_F: door_2_handle_locked_rot - unknown animation source door_2_locked_source
17:44:30 Land_i_House_Big_01_V2_F: door_3_rot - unknown animation source door_3_sound_source
17:44:30 Land_i_House_Big_01_V2_F: door_3_handle_rot_1 - unknown animation source door_3_nosound_source
17:44:30 Land_i_House_Big_01_V2_F: door_3_handle_rot_2 - unknown animation source door_3_nosound_source
17:44:30 Land_i_House_Big_01_V2_F: door_3_locked_rot - unknown animation source door_3_locked_source
17:44:30 Land_i_House_Big_01_V2_F: door_3_handle_locked_rot - unknown animation source door_3_locked_source
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_1_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_1_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_2_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_2_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_3_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_3_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_4_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_4_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_5_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_5_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_6_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_6_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_7_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_7_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_8_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_8_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_9_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_9_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_10_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_10_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_11_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_11_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_12_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_12_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_13_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_13_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_14_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 unable to connect anim. source "Hit" to hitpoint "Glass_14_hitpoint" in Land_i_House_Big_01_V2_F
17:44:30 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
17:44:30 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
17:44:31 Land_Cargo_House_V2_F: door_1_rot - unknown animation source door_1_sound_source
17:44:31 Land_Cargo_House_V2_F: door_1_locked_rot - unknown animation source door_1_locked_source
17:44:31 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire
17:44:31 Land_i_Garage_V2_F: door_1_rot - unknown animation source door_1_sound_source
17:44:31 Land_i_Garage_V2_F: door_1_handle_rot_1 - unknown animation source door_1_nosound_source
17:44:31 Land_i_Garage_V2_F: door_1_handle_rot_2 - unknown animation source door_1_nosound_source
17:44:31 Land_i_Garage_V2_F: door_1_locked_rot - unknown animation source door_1_locked_source
17:44:31 Land_i_Garage_V2_F: door_1_handle_locked_rot - unknown animation source door_1_locked_source
17:44:34 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
17:44:34 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
17:44:34 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
17:44:34 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
17:44:34 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
17:44:37 "arma3/BIS_fnc_log: [BIS_fnc_preload] ----- Initializing scripts in Exile -----"
17:44:37 "arma3/BIS_fnc_log: [recompile] recompile BIS_fnc_missionTasksLocal"
17:44:37 "arma3/BIS_fnc_log: [recompile] recompile BIS_fnc_missionConversationsLocal"
17:44:37 "arma3/BIS_fnc_log: [recompile] recompile BIS_fnc_missionFlow"
17:44:37 "arma3/BIS_fnc_log: [preInit] BIS_fnc_feedbackMain (0.999451 ms)"
17:44:37 "arma3/BIS_fnc_log: [preInit] BIS_fnc_missionHandlers (0 ms)"
17:44:37 "arma3/BIS_fnc_log: [preInit] BIS_fnc_storeParamsValues (0.999451 ms)"
17:44:37 "arma3/BIS_fnc_log: [preInit] ""DeltaTime computation started"""
17:44:37 "arma3/BIS_fnc_log: [preInit] BIS_fnc_keyframeAnimation_deltaTime (0 ms)"
17:44:37 CallExtension loaded: updatearmalog (C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@infiSTAR_Exile\updatearmalog.dll) [?????]

17:44:39 Warning: 1781 ms spent in callExtension calling name: "updatearmalog", function: "update"
17:44:39 "<infiSTAR.de> updatearmalog callExtension: [04.06.2018][17:44:39] Downloaded and installed new armalog.dll"
17:44:39 CallExtension loaded: armalog (C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@infiSTAR_Exile\armalog.dll) [????DԪ2??c]

17:44:39 "<infiSTAR.de> infiSTAR dll loaded successfully"
17:44:39 "<infiSTAR.de> [GER]ArmaFightClub.de|Exile1.0.4|10kStart|Revive|TowMod|Rappelling|Movement|AI-Mission|Base|Zombie"
17:44:39 "<infiSTAR.de> License accepted!"
17:44:39 "<infiSTAR.de> Loading infiSTAR code.."
17:44:39 CallExtension 'extDB3' could not be found
17:44:39 "<infiSTAR.de> 0 - checking for EXILE_SERVER.."
17:44:39 "<infiSTAR.de> 0 - EXILE_SERVER has been found."
17:44:39 "<infiSTAR.de> 0 - checking for Cfg_infiSTAR_settings.."
17:44:39 "<infiSTAR.de> 0 - Cfg_infiSTAR_settings has been found."
17:44:40 CallExtension loaded: extDB2 (C:\SERVICES\ni30670_1_SHARE\ftproot\arma3\@ExileServer\extDB2.dll) [????DԪ2??P]

17:44:40 "<infiSTAR.de> 0 - TESTING IF serverCommandPassword IS SET PROPERLY"
17:44:40 "<infiSTAR.de> 0 - serverCommandPassword IS FINE"
17:44:40 "<infiSTAR.de> 0 - STARTUP - including AdminTools"
17:44:40 "<infiSTAR.de> 0 - STARTUP - AdminTools included!"
17:44:40 "<infiSTAR.de> 0 - STARTUP - including AntiHack"
17:44:40 "<infiSTAR.de> 0 - VERSION: 16-04-2018 20-30-12 - v91"
17:44:40 "<infiSTAR.de> 0 - adding valid admin uid 76561198057603957"
17:44:40 "<infiSTAR.de> 0 - adding valid admin uid 76561198124890733"
17:44:40 "<infiSTAR.de> 0 - adding valid admin uid 76561198055349797"
17:44:40 "<infiSTAR.de> 0 - adding valid admin uid 76561198086921310"
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid UID1"
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid ..."
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid UID1"
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid UID2"
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid UID3"
17:44:40 "<infiSTAR.de> 0 - removing invalid admin uid ..."
17:44:40 "<infiSTAR.de> _fnc_RandomGen: {
private '_gen';
_fnc_actualGen = {
_start	= ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_main	= ['a','5','3','c','a','2','e','a','8','2','1','4','a','8','2','1','e','7','a','5','7','e','8','5','6','9','2','5','d','d','f','1','3'];
_filler	= ['1','2','3','4','5','6','7','8','9','0','_','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'];
_gen = selectRandom _start;
_randmax = {((round(random _randminval)) + (round(random _randmaxval))) max _randminval};
for '_i' from 0 to (call _randmax)do
{
_gen = _gen + (selectRandom _filler) + (selectRandom _main);
};
_gen
};
for '_i' from 0 to 10000 do
{
_gen = call _fnc_actualGen;
_index = _allRandomGenVars pushBackUnique _gen;
if(_index > -1)exitWith{_gen};
};
_gen
}"
17:44:40 "<infiSTAR.de> 0 - loading AntiHack.."
17:44:40 "<infiSTAR.de> 0 - Thread MAIN: none-threaded code compiled and/or sent!"
17:44:40 "<infiSTAR.de> 0 - VoteTimeServer compiled"
17:44:40 "<infiSTAR.de> 0 - Thread BEFORE MAIN: adding to main string.."
17:44:40 "<infiSTAR.de> 0 - Thread BEFORE MAIN: added !"
17:44:40 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: adding to main string.."
17:44:40 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: added !"
17:44:40 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: adding to main string.."
17:44:40 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: added !"
17:44:40 "<infiSTAR.de> 0 - fnc_AdminReqReal: adding to main string.."
17:44:40 "<infiSTAR.de> 0 - fnc_AdminReqReal: added !"
17:44:40 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: adding to main string.."
17:44:40 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: added !"
17:44:40 "<infiSTAR.de> 0 - adminStartupCode: adding to main string.."
17:44:40 "<infiSTAR.de> 0 - adminStartupCode: added !"
17:44:40 "<infiSTAR.de> 0 - Thread #1: Preparing Server Loop #1.."
17:44:40 "<infiSTAR.de> 0 - Thread #1: added !"
17:44:40 "<infiSTAR.de> 0 - compiling AntiHack"
17:44:40 "<infiSTAR.de> 0 - Thread BEFORE MAIN: still compiling..."
17:44:40 "<infiSTAR.de> 0 - infiSTAR_PlayerLog: still compiling..."
17:44:40 "<infiSTAR.de> 0 - fnc_server_handle_mpmessage: still compiling..."
17:44:40 "<infiSTAR.de> 0 - fnc_AdminReqReal: still compiling..."
17:44:40 "<infiSTAR.de> 0 - fnc_server_handle_pre_mpmessage: still compiling..."
17:44:40 "<infiSTAR.de> 0 - adminStartupCode: still compiling..."
17:44:40 "<infiSTAR.de> 0 - Thread MAIN: compiling adminStartupCode"
17:44:40 "<infiSTAR.de> 0 - AntiHack loaded!"
17:44:40 "<infiSTAR.de> 0 - STARTUP - AntiHack included!"
17:44:40 "arma3/BIS_fnc_log: [preInit] a3_infiSTAR_Exile_fnc_preInit (2532 ms)"
17:44:40 "Enigma Exile Revive: fn_init 0"
17:44:40 "Enigma Exile Revive: Compiles Started - 0"
17:44:40 "arma3/BIS_fnc_log: [preInit] EnigmaRevive_fnc_init (4.00162 ms)"
17:44:40 "arma3/BIS_fnc_log: [preInit] BIS_fnc_getServerVariable (0 ms)"
17:44:40 "arma3/BIS_fnc_log: [preInit] RyanZM_fnc_rzfunctionpreinit (1.9989 ms)"
17:44:40 "arma3/BIS_fnc_log: [preInit] ExileClient_fnc_preInit (679.001 ms)"
17:44:41 "ExileServer - Server is loading..."
17:44:41 Wrong init state
17:44:41 Client: Nonnetwork object 1edee500.
17:44:41 "ExileServer - Installed extDB2 version: 70"
17:44:41 "ExileServer - Connected to database!"
17:44:41 "ExileServer - Database protocol initialized!"
17:44:41 "arma3/BIS_fnc_log: [preInit] ExileServer_fnc_preInit (344.002 ms)"
17:44:41 "ExileZ Mod: Version v1.6.0 - 20/05/18 | Loading Configs at 0"
17:44:41 "ExileZ Mod: Version v1.6.0 - 20/05/18 | Loaded all Configs at 0"
17:44:41 "arma3/BIS_fnc_log: [preInit] exilez_mod_fnc_preInit (28.9993 ms)"
17:44:41 "DMS :: Initializing Static Mission Variables"
17:44:41 "DMS :: Initializing Dynamic Mission Variables"
17:44:41 "arma3/BIS_fnc_log: [preInit] DMS_fnc_DMS_preInit (38.9977 ms)"
17:44:41 "arma3/BIS_fnc_log: [preInit] apps_fnc_preInit (19.9966 ms)"
17:44:41 Connected to Steam servers
17:44:41 "<infiSTAR.de> 0 - Thread #1: Server Loop #1 starting"
17:44:41 "<infiSTAR.de> 0 - Thread #1: Server Loop #1 running now!"
17:44:41 "arma3/BIS_fnc_log: [script] initServer.sqf"
17:44:41 "arma3/BIS_fnc_log: [postInit] BIS_fnc_missionFlow (0 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] BIS_fnc_initParams (0 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] BIS_fnc_initRespawn (0 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] BIS_fnc_keyframeAnimation_init (13.9999 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] a3_infiSTAR_Exile_fnc_postInit (0 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] VEMFr_fnc_launch (0 ms)"
17:44:41 "Enigma Exile Revive: postinit 0"
17:44:41 "arma3/BIS_fnc_log: [postInit] EnigmaRevive_fnc_postinit (0.999451 ms)"
17:44:41 "Advanced Rappelling Loading..."
17:44:41 "Advanced Rappelling Loaded"
17:44:41 "arma3/BIS_fnc_log: [postInit] SA_fnc_advancedRappellingInit (0.999451 ms)"
17:44:41 "Advanced Towing Loading..."
17:44:41 "Advanced Towing Loaded"
17:44:41 "arma3/BIS_fnc_log: [postInit] SA_fnc_advancedTowingInit (0.999451 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] BIS_fnc_reviveInit (0 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] BABE_CORE_fnc_init (0 ms)"
17:44:41 "arma3/BIS_fnc_log: [postInit] ExileClient_fnc_postInit (0 ms)"
17:44:41 "ExileServer - Job with handle 10000 added."
17:44:41 "ExileServer - Job with handle 10001 added."
17:44:41 "ExileServer - Job with handle 10002 added."
17:44:41 Weather was forced to change
17:44:41 "ExileServer - Job with handle 10003 added."
17:44:41 "ExileServer - Job with handle 10004 added."
17:44:41 "ExileServer - Initializing game world..."
17:44:41 "ExileServer - Loading families from database..."
17:44:41 Successfull attempt to execute serverCommand '#exec users' by server.
17:44:41 Successfull attempt to execute serverCommand '#exec users' by server.
17:44:41 Successfull attempt to execute serverCommand '#lock' by server.
17:44:41 c:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
17:44:41  Mission id: 3451a30ab5d0f8eb6d9ac23f2599a6a248f843b6
17:44:41 "ExileServer - Done loading families!"
17:44:41 "ExileServer - Loading territories from database..."
17:44:41 "ExileServer - Done loading territories!"
17:44:41 "ExileServer - Loading constructions from database..."
17:44:41 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire
17:44:41 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire
17:44:41 Attempt to override final function - bis_fnc_storeparamsvalues_data
17:44:41 "ExileServer - Done loading constructions!"
17:44:41 "ExileServer - Loading vehicles from database..."
17:44:41 "ExileServer - Done loading vehicles!"
17:44:41 "ExileServer - Loading containers from database..."
17:44:41 "ExileServer - Done loading containers!"
17:44:41 "ExileServer - Creating spawn zone vehicles..."
17:44:41 "ExileServer - Spawning Dynamic Vehicles. GridSize: 2200 Vehs/Grid: 2"
17:44:41 Weather was forced to change
17:44:42 "Enigma Exile Revive: server_init 0.259"
17:44:42 "Enigma Exile Revive: publicEH 0.259"
17:44:42 "ENIGMA: Init PublicEH"
17:44:42 "Initializing Enigma Revive!"
17:44:42 IT07: [VEMFr] Launcher -- SYSTEM: /// booting up VEMFr v0752.5 (Exile) \\\
17:44:42 OfficeTable_01_new_F: drawer_1_move - unknown animation source drawer_1_source
17:44:42 OfficeTable_01_new_F: drawer_1_key_rot - unknown animation source drawer_1_key_source
17:44:42 OfficeTable_01_new_F: drawer_2_move - unknown animation source drawer_2_source
17:44:42 Exile_Cosmetic_MG: mainturret - unknown animation source mainturret
17:44:42 Exile_Cosmetic_MG: maingun - unknown animation source maingun
17:44:42 Exile_Cosmetic_MG: ammo_belt_rotation - unknown animation source reloadanim
17:44:42 Exile_Cosmetic_MG: barrel_recoil - unknown animation source reloadanim
17:44:42 Exile_Cosmetic_MG: bolt_recoil - unknown animation source reloadanim
17:44:42 Exile_Cosmetic_MG: turret_shake - unknown animation source reloadanim
17:44:42 Exile_Cosmetic_MG: turret_shake_backside - unknown animation source reloadanim
17:44:42 Exile_Cosmetic_MG: turret_shake_aside - unknown animation source reloadanim
17:44:42 Exile_Cosmetic_MG: bolt_reload_begin - unknown animation source reloadmagazine
17:44:42 Exile_Cosmetic_MG: bolt_reload_end - unknown animation source reloadmagazine
17:44:42 Exile_Cosmetic_MG: charging_handle_reload_begin - unknown animation source reloadmagazine
17:44:42 Exile_Cosmetic_MG: charging_handle_reload_end - unknown animation source reloadmagazine
17:44:42 Exile_Cosmetic_MG: magazine_hide - unknown animation source reloadmagazine
17:44:42 Exile_Cosmetic_MG: ammo_belt_hide - unknown animation source reloadmagazine
17:44:42 Exile_Cosmetic_MG: muzzleflash - unknown animation source muzzle_source
17:44:42 Exile_Cosmetic_MG: zaslehrot - unknown animation source muzzle_source_rot
17:44:42 Exile_Cosmetic_MG: addautonomous_unhide - unknown animation source autonomous_unhide
17:44:42 Exile_Cosmetic_MG: bullet001_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_MG: bullet002_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_MG: bullet003_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_MG: bullet004_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_MG: bullet005_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_MG: bullet006_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_MG: bullet007_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_MG: bullet008_reload_hide - unknown animation source revolving
17:44:42 Exile_Cosmetic_UAV: rotorimpacthide - unknown animation source rotorhfullydestroyed
17:44:42 Exile_Cosmetic_UAV: tailrotorimpacthide - unknown animation source tailrotorhfullydestroyed
17:44:42 Exile_Cosmetic_UAV: propeller1_rotation - unknown animation source rotorh
17:44:42 Exile_Cosmetic_UAV: propeller1_blur_rotation - unknown animation source rotorh
17:44:42 Exile_Cosmetic_UAV: propeller2_rotation - unknown animation source rotorv
17:44:42 Exile_Cosmetic_UAV: propeller2_blur_rotation - unknown animation source rotorv
17:44:42 Exile_Cosmetic_UAV: propeller3_rotation - unknown animation source rotorh
17:44:42 Exile_Cosmetic_UAV: propeller3_blur_rotation - unknown animation source rotorh
17:44:42 Exile_Cosmetic_UAV: propeller4_rotation - unknown animation source rotorv
17:44:42 Exile_Cosmetic_UAV: propeller4_blur_rotation - unknown animation source rotorv
17:44:42 Exile_Cosmetic_UAV: propeller1_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: propeller1_blur_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: propeller2_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: propeller2_blur_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: propeller3_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: propeller3_blur_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: propeller4_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: propeller4_blur_hide - unknown animation source rpm
17:44:42 Exile_Cosmetic_UAV: mainturret - unknown animation source mainturret
17:44:42 Exile_Cosmetic_UAV: maingun - unknown animation source maingun
17:44:42 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
17:44:42 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
17:44:42 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
17:44:42 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
17:44:42 IT07: [VEMFr] Launcher -- SYSTEM: Headless client support: DISABLED
17:44:42 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:42 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
17:44:43 Land_Box_AmmoOld_F: ammo_hide - unknown animation source ammo_source
17:44:43 Land_Box_AmmoOld_F: ammoord_hide - unknown animation source ammoord_source
17:44:43 Land_Box_AmmoOld_F: grenades_hide - unknown animation source grenades_source
17:44:43 Land_Box_AmmoOld_F: support_hide - unknown animation source support_source
17:44:43 Land_Cargo20_military_green_F: door_1_rot - unknown animation source door_1_sound_source
17:44:43 Land_Cargo20_military_green_F: door_1_locked_rot - unknown animation source door_1_locked_source
17:44:43 Land_Cargo20_military_green_F: door_2_rot - unknown animation source door_2_sound_source
17:44:43 Land_Cargo20_military_green_F: door_2_locked_rot - unknown animation source door_2_locked_source
17:44:43 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
17:44:43 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
17:44:43 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
17:44:43 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
17:44:43 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
17:44:43 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
17:44:43 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
17:44:43 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
17:44:44 Render target memory points PIP0_pos & PIP0_dir not found.
17:44:44 Exile_Car_Octavius_White: indicatoroil - unknown animation source oiltemp
17:44:44 Exile_Car_Octavius_White: fuel - unknown animation source fuel_1
17:44:44 IT07: [VEMFr] checkLoot -- INFO: validating VEMFr config classes...
17:44:45 IT07: [VEMFr] checkLoot -- INFO: All classnames are valid! :)
17:44:45 IT07: [VEMFr] missionTimer -- INFO: global mission-limit is set at: 10
17:44:45 psycho_towingtractor_skeleton: Invalid parent bone 'wheel_1_2' for 'wheel_1_2_hide'
17:44:45 psycho_towingtractor_skeleton: Invalid parent bone 'wheel_2_2' for 'wheel_2_2_hide'
17:44:45 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:45 Render target memory points m1p & m1d not found.
17:44:45 Render target memory points m2p & m2d not found.
17:44:45 Render target memory points m3p & m3d not found.
17:44:46 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:46 Render target memory points m1p & m1d not found.
17:44:46 Render target memory points m2p & m2d not found.
17:44:46 Render target memory points m3p & m3d not found.
17:44:46 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:46 Render target memory points m1p & m1d not found.
17:44:46 Render target memory points m2p & m2d not found.
17:44:46 Render target memory points m3p & m3d not found.
17:44:47 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
17:44:47 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
17:44:47 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
17:44:47 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
17:44:47 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
17:44:47 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
17:44:47 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:47 Render target memory points m1p & m1d not found.
17:44:47 Render target memory points m2p & m2d not found.
17:44:47 Render target memory points m3p & m3d not found.
17:44:47 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:47 Render target memory points m1p & m1d not found.
17:44:47 Render target memory points m2p & m2d not found.
17:44:47 Render target memory points m3p & m3d not found.
17:44:47 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:47 Render target memory points m1p & m1d not found.
17:44:47 Render target memory points m2p & m2d not found.
17:44:47 Render target memory points m3p & m3d not found.
17:44:47 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:47 Render target memory points m1p & m1d not found.
17:44:47 Render target memory points m2p & m2d not found.
17:44:47 Render target memory points m3p & m3d not found.
17:44:48 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:48 Render target memory points m1p & m1d not found.
17:44:48 Render target memory points m2p & m2d not found.
17:44:48 Render target memory points m3p & m3d not found.
17:44:48 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:48 Render target memory points m1p & m1d not found.
17:44:48 Render target memory points m2p & m2d not found.
17:44:48 Render target memory points m3p & m3d not found.
17:44:48 Warning Message: Cannot open object exile_psycho_lada\lada_lm.p3d
17:44:48 Render target memory points m1p & m1d not found.
17:44:48 Render target memory points m2p & m2d not found.
17:44:48 Render target memory points m3p & m3d not found.
17:44:49 "ExileServer - Dynamic vehicles spawned. Count : 233"
17:44:49 "ExileServer - Game world initialized! Let the fun begin!"
17:44:49 "ExileServer - Russian Roulette: Game initialized."
17:44:49 "ExileServer - Server is up and running! Version: 1.0.4"
17:44:49 "arma3/BIS_fnc_log: [postInit] ExileServer_fnc_postInit (7809 ms)"
17:44:49 "ExileServer - Job with handle 10005 added."
17:44:49 "ExileZ Mod: Added Zombie Monitor to ExileServer Thread"
17:44:49 "ExileServer - Job with handle 10006 added."
17:44:49 "ExileZ Mod: Added Dead Zombie Monitor to ExileServer Thread"
17:44:49 "ExileServer - Job with handle 10007 added."
17:44:49 "ExileZ Mod: Added Harassing Zombies Loop to ExileServer Thread"
17:44:49 "ExileServer - Job with handle 10008 added."
17:44:49 "ExileZ Mod: Added Horde Loop to ExileServer Thread"
17:45:05 "ExileServer - Main thread started"
17:45:06 Successfull attempt to execute serverCommand '#unlock' by server.
17:45:06 "arma3/BIS_fnc_log: [BIS_fnc_preload] ----- Scripts initialized at 28513 ms -----"
17:45:08 "ExileZ Mod: Turning off the lights.. SPOOKY!!"
17:45:08 "ExileZ Mod: Version v1.6.0 - 20/05/18 Started at (8.355)"
17:45:08 "arma3/BIS_fnc_log: [postInit] exilez_mod_fnc_postInit (19098 ms)"
17:45:08 "DMS DETECTED RyanZombies. Enabling ""DMS_ai_offload_Only_DMS_AI""!"
17:45:08 "ExileServer - Job with handle 10009 added."
17:45:08 Flag_CSAT_F: flag - unknown animation source flag
17:45:09 Land_Cargo40_light_green_F: door_1_rot - unknown animation source door_1_sound_source
17:45:09 Land_Cargo40_light_green_F: door_1_locked_rot - unknown animation source door_1_locked_source
17:45:09 Land_Cargo40_light_green_F: door_2_rot - unknown animation source door_2_sound_source
17:45:09 Land_Cargo40_light_green_F: door_2_locked_rot - unknown animation source door_2_locked_source
17:45:09 Strange convex component24 in a3\structures_f\households\house_small02\i_house_small_02_v3_dam_f.p3d:geometryView
17:45:10 "DMS_DEBUG :: DMS post-init complete. productVersion: [""Arma 3"",""Arma3"",182,144710,""Stable"",true,""Windows"",""x86""] | infiSTAR version: 16-04-2018 20-30-12 - v91 |::|::| (DMS_Version: ""September 7, 2017"" | time: 9.988 | diag_tickTime: 86.682 | 40.1003 FPS)"
17:45:10 "arma3/BIS_fnc_log: [postInit] DMS_fnc_DMS_postInit (1684.01 ms)"
17:45:10 "arma3/BIS_fnc_log: [postInit] yorkshire_fnc_YORKS_init (0 ms)"
17:45:10 "DMS :: Initializing FSM mission script"
17:45:10 "[OCCUPATION]:: Occupation V69 (21-07-2017) Giving the server time to start before starting [OCCUPATION] (10.099)"
17:45:20 "[OCCUPATION MOD]:: Occupation V69 (21-07-2017) Loading Config at 20.119"
17:45:20 "ExileServer - Job with handle 10010 added."
17:45:31 "[Display #24]"
17:45:35 "ExileServer - Job with handle 10011 added."
17:45:35 "ExileServer - Job with handle 10012 added."
17:45:40 "ExileZ Mod: Monitored Zombies	|	0	"
17:45:50 "ExileServer - Job with handle 10013 added."
17:46:06 "ExileServer - Job with handle 10014 added."
17:46:07 "ExileServer - Job with handle 10015 added."
17:46:07 "ExileServer - Job with handle 10016 added."
17:46:07 "ExileServer - Job with handle 10017 added."
17:46:07 "ExileServer - Job with handle 10018 added."
17:46:07 hidebullet_001 - unknown animation source codrivermuzzle_revolving
17:46:07 hidebullet_002 - unknown animation source codrivermuzzle_revolving
17:46:07 hidebullet2_001 - unknown animation source codrivermuzzle_revolving
17:46:07 hidebullet2_002 - unknown animation source codrivermuzzle_revolving
17:46:07 "ExileServer - Job with handle 10019 added."
17:46:07 "ExileServer - Job with handle 10020 added."
17:46:07 "ExileServer - Job with handle 10021 added."
17:46:09 "ExileServer - Job with handle 10022 added."
17:46:09 "ExileServer - Job with handle 10023 added."
17:46:09 "ExileServer - Job with handle 10024 added."
17:46:09 "ExileServer - Job with handle 10025 added."
17:46:09 "ExileServer - Job with handle 10026 added."
17:46:09 "ExileServer - Job with handle 10027 added."
17:46:09 "ExileServer - Job with handle 10028 added."
17:46:09 "ExileServer - Job with handle 10029 added."
17:46:11 "ExileZ Mod: Monitored Zombies	|	0	"
17:46:25 "ExileServer - Job with handle 10030 added."
17:46:25 "ExileServer - Job with handle 10031 added."
17:46:26 "ExileServer - Job with handle 10032 added."
17:46:26 "ExileServer - Job with handle 10033 added."
17:46:26 "ExileServer - Job with handle 10034 added."
17:46:26 "ExileServer - Job with handle 10035 added."
17:46:26 "ExileServer - Job with handle 10036 added."
17:46:26 "ExileServer - Job with handle 10037 added."
17:46:27 "ExileServer - Job with handle 10038 added."
17:46:27 "ExileServer - Job with handle 10039 added."
17:46:27 "ExileServer - Job with handle 10040 added."
17:46:27 "ExileServer - Job with handle 10041 added."
17:46:27 "ExileServer - Job with handle 10042 added."
17:46:27 "ExileServer - Job with handle 10043 added."
17:46:27 "ExileServer - Job with handle 10044 added."
17:46:27 "ExileServer - Job with handle 10045 added."
17:46:29 "ExileServer - Job with handle 10046 added."
17:46:29 "ExileServer - Job with handle 10047 added."
17:46:29 "ExileServer - Job with handle 10048 added."
17:46:29 "ExileServer - Job with handle 10049 added."
17:46:29 "ExileServer - Job with handle 10050 added."
17:46:29 "ExileServer - Job with handle 10051 added."
17:46:29 "ExileServer - Job with handle 10052 added."
17:46:29 "ExileServer - Job with handle 10053 added."
17:46:38 BEServer: registering a new player #336272825
17:46:41 "ExileZ Mod: Monitored Zombies	|	0	"
17:46:44 "ExileServer - Job with handle 10054 added."
17:46:58 Server: Object 0:0 not found (message Type_181)
17:46:59 "ExileServer - Job with handle 10055 added."
17:46:59 "ExileServer - Player Horst Gaskante (UID 76561198057603957) connected!"
17:47:03 IT07: [VEMFr] missionTimer -- INFO: enough players online (1) and server FPS (45.7143) is above 20. Starting missionTimer...
17:47:06 "ExileServer - Starting session for 'Horst Gaskante' with ID 'bcfpzzzy'..."
17:47:06 "ExileServer - Dispatching hasPlayerRequest for session 'bcfpzzzy'..."
17:47:11 "ExileZ Mod: Monitored Zombies	|	0	"
17:47:14 "ExileServer - Job with handle 10056 added."
17:47:30 "[OCCUPATION:transport] Running"
17:47:42 "ExileZ Mod: Monitored Zombies	|	0	"
17:47:44 "ExileServer - Job with handle 10057 added."
17:48:01 Ragdoll - loading of ragdoll source "Soldier" started.
17:48:01 Ragdoll - loading of ragdoll source "Soldier" finished successfully.
17:48:10 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Nifi...
17:48:12 "ExileServer - Dispatching hasPlayerRequest for session 'bcfpzzzy'..."
17:48:12 "ExileZ Mod: Monitored Zombies	|	0	"
17:48:12 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
17:48:12 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
17:48:44 "ExileZ Mod: Monitored Zombies	|	0	"
17:49:06 Scripting function 'fn_xm8apps_server' is not allowed to be remotely executed
17:49:14 "ExileZ Mod: Monitored Zombies	|	0	"
17:49:34 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Telos...
17:49:44 "ExileZ Mod: Monitored Zombies	|	0	"
17:50:09 "ExileZ Mod: Monitored Dead Zombies	|	0	"
17:50:14 "ExileZ Mod: Monitored Zombies	|	0	"
17:50:44 "ExileZ Mod: Monitored Zombies	|	0	"
17:51:02 Duplicate HitPoint name 'HitTurret' in 'B_T_VTOL_01_armed_olive_F'
17:51:02 Duplicate HitPoint name 'HitGun' in 'B_T_VTOL_01_armed_olive_F'
17:51:02 Duplicate HitPoint name 'HitTurret' in 'B_T_VTOL_01_armed_olive_F'
17:51:02 Duplicate HitPoint name 'HitGun' in 'B_T_VTOL_01_armed_olive_F'
17:51:02 Strange convex component19 in a3\air_f_exp\vtol_01\vtol_01_vehicle_wreck_f.p3d:geometryPhys
17:51:02 Strange convex component25 in a3\air_f_exp\vtol_01\vtol_01_vehicle_wreck_f.p3d:geometryPhys
17:51:11 "DMS_SpawnAIGroup :: Spawned 7 AI at [19259.3,17951.9,0]."
17:51:11 Duplicate HitPoint name 'HitGun' in 'O_HMG_01_high_F'
17:51:11 Duplicate HitPoint name 'HitTurret' in 'O_HMG_01_high_F'
17:51:11 Dimensions in class O_HMG_01_high_F should be an array of size 2.
17:51:14 "ExileZ Mod: Monitored Zombies	|	0	"
17:51:14 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
17:51:15 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
17:51:19 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Agios Dionysios...
17:51:20 Scripting function 'bis_fnc_effectkilledairdestruc...' is not allowed to be remotely executed
17:51:20 Client: Object 3:7 (type Type_93) not found.
17:51:20 Client: Object 3:7 (type Type_92) not found.
17:51:20 Client: Object 3:7 (type Type_454) not found.
17:51:22 Scripting function 'bis_fnc_effectkilledairdestruc...' is not allowed to be remotely executed
17:51:22 Client: Object 3:9 (type Type_92) not found.
17:51:22 Client: Object 3:9 (type Type_93) not found.
17:51:22 Client: Object 3:9 (type Type_454) not found.
17:51:46 "ExileZ Mod: Monitored Zombies	|	0	"
17:52:00 "[OCCUPATION:Vehicle] found position [23793.6,19493.9,0]"
17:52:00 Duplicate HitPoint name 'HitTurret' in 'C_Offroad_02_unarmed_F'
17:52:00 Duplicate HitPoint name 'HitGun' in 'C_Offroad_02_unarmed_F'
17:52:00 Duplicate HitPoint name 'HitTurret' in 'C_Offroad_02_unarmed_F'
17:52:00 Duplicate HitPoint name 'HitGun' in 'C_Offroad_02_unarmed_F'
17:52:00 "ExileServer - Job with handle 10058 added."
17:52:00 "ExileServer - Job with handle 10059 added."
17:52:00 "ExileServer - Job with handle 10060 added."
17:52:00 "ExileServer - Job with handle 10061 added."
17:52:16 "[OCCUPATION:Vehicle] found position [18599.7,17936.4,0]"
17:52:16 "ExileServer - Job with handle 10062 added."
17:52:16 "ExileServer - Job with handle 10063 added."
17:52:16 "ExileServer - Job with handle 10064 added."
17:52:16 "ExileServer - Job with handle 10065 added."
17:52:31 Array tex in bin\config.bin/CfgVehicles/UAV_05_Base_F/Damage/ not even
17:52:31 B_UAV_05_F: gear_front_hook_down - unknown animation source hook
17:52:34 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:34 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:34 "[OCCUPATION:Vehicle] found position [10145.1,16788.9,7.62939e-006]"
17:52:34 Duplicate HitPoint name 'HitTurret' in 'I_C_Offroad_02_unarmed_F'
17:52:34 Duplicate HitPoint name 'HitGun' in 'I_C_Offroad_02_unarmed_F'
17:52:34 Duplicate HitPoint name 'HitTurret' in 'I_C_Offroad_02_unarmed_F'
17:52:34 Duplicate HitPoint name 'HitGun' in 'I_C_Offroad_02_unarmed_F'
17:52:34 "ExileServer - Job with handle 10066 added."
17:52:34 "ExileServer - Job with handle 10067 added."
17:52:34 "ExileServer - Job with handle 10068 added."
17:52:35 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:35 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:36 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:36 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:37 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:37 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:38 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:38 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:52:42 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Kalochori...
17:52:47 "ExileZ Mod: Monitored Zombies	|	0	"
17:52:47 "_randomLocation: [[8197,9081,400],3000,""Tanoa""]"
17:52:47 "[OCCUPATION:Sky] found position [8197,9081,400]"
17:52:47 Warning: Convex component representing Skids not found
17:52:47 Array mat in bin\config.bin/CfgVehicles/UH1HL_base/Damage/ not multiply of 3
17:52:47 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Huey_Armed_Green'
17:52:47 Error: bin\config.bin/CfgVehicles/UH1H_M240/Turrets/RightDoorGun/: Turret body Turret2 not found while initializing the model exile_psycho_uh1h\psycho_uh1h_m240.p3d
17:52:47 Error: bin\config.bin/CfgVehicles/UH1H_M240/Turrets/CoPilotObs/: Turret body ObsTurret not found while initializing the model exile_psycho_uh1h\psycho_uh1h_m240.p3d
17:52:47 Error: bin\config.bin/CfgVehicles/UH1H_M240/Turrets/CoPilotObs/: Turret gun ObsGun not found while initializing the model exile_psycho_uh1h\psycho_uh1h_m240.p3d
17:52:47 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
uh1h
17:52:47 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
uh1h
17:52:47 "[occupationSky] _SC_vehicleSpawnLocation: [[8197,9081,400],3000,""Altis""]"
17:52:47 "ExileServer - Job with handle 10069 added."
17:52:47 "ExileServer - Job with handle 10070 added."
17:52:48 "ExileServer - Job with handle 10071 added."
17:52:48 "ExileServer - Job with handle 10072 added."
17:52:48 "ExileServer - Job with handle 10073 added."
17:52:48 "ExileServer - Job with handle 10074 added."
17:52:49 "[OCCUPATION]:: [12502,14337,-11.5868] is 69.0303m from blacklisted position [12571,14337,0] (blacklisted)"
17:52:49 Client: Local object 2:2320 not found
17:52:49 Server: OwnerChanged of 2:2320 arrived from non owner 2
17:52:49 "ExileServer - Job with handle 10075 added."
17:52:49 "ExileServer - Job with handle 10076 added."
17:52:50 "ExileServer - Job with handle 10077 added."
17:52:50 "ExileServer - Job with handle 10078 added."
17:52:50 "ExileServer - Job with handle 10079 added."
17:52:52 "ExileServer - Job with handle 10080 added."
17:52:52 "ExileServer - Job with handle 10081 added."
17:52:54 "ExileServer - Job with handle 10082 added."
17:52:54 "ExileServer - Job with handle 10083 added."
17:52:54 "ExileServer - Job with handle 10084 added."
17:52:54 "ExileServer - Job with handle 10085 added."
17:53:02 "ExileServer - Job with handle 10086 added."
17:53:03 "ExileServer - Job with handle 10087 added."
17:53:06 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
17:53:20 "ExileZ Mod: Monitored Zombies	|	0	"
17:53:28 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:28 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:29 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:29 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:30 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:30 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:31 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:31 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:32 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:32 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:43 Client: Local object 2:2565 not found
17:53:43 Server: OwnerChanged of 2:2565 arrived from non owner 2
17:53:46 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:46 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:47 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:47 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:48 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:48 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:49 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:49 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:50 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:50 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:50 "ExileZ Mod: Monitored Zombies	|	0	"
17:53:51 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:51 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:52 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:52 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:53 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:53 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:54 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:54 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:56 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:53:56 Script command setOwner cannot be used for object 'B_UAV_AI'. Use setGroupOwner instead.
17:54:01 Client: Local object 2:2573 not found
17:54:01 Server: OwnerChanged of 2:2573 arrived from non owner 2
17:54:06 Client: Local object 2:2581 not found
17:54:06 Server: OwnerChanged of 2:2581 arrived from non owner 2
17:54:17 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Stavros...
17:54:20 "ExileZ Mod: Monitored Zombies	|	0	"
17:54:20 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
17:54:21 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
17:54:52 "ExileZ Mod: Monitored Zombies	|	0	"
17:54:58 Scripting function 'bis_fnc_effectkilledairdestruc...' is not allowed to be remotely executed
17:54:58 Scripting function 'bis_fnc_effectkilledairdestruc...' is not allowed to be remotely executed
17:55:12 "ExileZ Mod: Monitored Dead Zombies	|	0	"
17:55:12 Loading movesType CfgMovesSheep_F
17:55:22 "ExileZ Mod: Monitored Zombies	|	0	"
17:55:52 "ExileZ Mod: Monitored Zombies	|	0	"
17:56:07 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Ekali...
17:56:07 Scripting function 'bis_fnc_effectkilledairdestruc...' is not allowed to be remotely executed
17:56:07 Client: Object 3:20 (type Type_93) not found.
17:56:07 Client: Object 3:20 (type Type_92) not found.
17:56:07 Client: Object 3:20 (type Type_454) not found.
17:56:17 "ExileServer - Dispatching hasPlayerRequest for session 'bcfpzzzy'..."
17:56:22 "ExileZ Mod: Monitored Zombies	|	0	"
17:56:52 "ExileZ Mod: Monitored Zombies	|	0	"
17:57:22 "ExileZ Mod: Monitored Zombies	|	0	"
17:57:22 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
17:57:33 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Frini...
17:57:53 "ExileZ Mod: Monitored Zombies	|	0	"
17:58:10 "ExileServer - Job with handle 10088 added."
17:58:10 "ExileServer - Job with handle 10089 added."
17:58:10 "ExileServer - Job with handle 10090 added."
17:58:10 "ExileServer - Job with handle 10091 added."
17:58:12 "ExileServer - Job with handle 10092 added."
17:58:12 "ExileServer - Job with handle 10093 added."
17:58:12 "ExileServer - Job with handle 10094 added."
17:58:12 "ExileServer - Job with handle 10095 added."
17:58:12 hidebullet_001 - unknown animation source codrivermuzzle_revolving
17:58:12 hidebullet_002 - unknown animation source codrivermuzzle_revolving
17:58:12 hidebullet2_001 - unknown animation source codrivermuzzle_revolving
17:58:12 hidebullet2_002 - unknown animation source codrivermuzzle_revolving
17:58:12 "ExileServer - Job with handle 10096 added."
17:58:17 Error: Object(3 : 26) not found
17:58:18 "ExileServer - Job with handle 10097 added."
17:58:18 "ExileServer - Job with handle 10098 added."
17:58:18 "ExileServer - Job with handle 10099 added."
17:58:18 "ExileServer - Job with handle 10100 added."
17:58:18 Client: Object 3:12 (type Type_93) not found.
17:58:18 hidebullet_001 - unknown animation source codrivermuzzle_revolving
17:58:18 hidebullet_002 - unknown animation source codrivermuzzle_revolving
17:58:18 hidebullet2_001 - unknown animation source codrivermuzzle_revolving
17:58:18 hidebullet2_002 - unknown animation source codrivermuzzle_revolving
17:58:18 "ExileServer - Job with handle 10101 added."
17:58:18 Client: Object 3:12 (type Type_93) not found.
17:58:19 Client: Object 3:12 (type Type_93) not found.
17:58:19 "ExileServer - Job with handle 10102 added."
17:58:19 "ExileServer - Job with handle 10103 added."
17:58:21 "ExileServer - Job with handle 10104 added."
17:58:24 "ExileServer - Job with handle 10105 added."
17:58:24 "ExileServer - Job with handle 10106 added."
17:58:24 "ExileServer - Job with handle 10107 added."
17:58:30 "ExileServer - Job with handle 10108 added."
17:58:30 "ExileServer - Job with handle 10109 added."
17:58:33 "ExileServer - Job with handle 10110 added."
17:58:33 "ExileServer - Job with handle 10111 added."
17:58:35 "ExileServer - Job with handle 10112 added."
17:58:35 "ExileServer - Job with handle 10113 added."
17:58:35 "ExileServer - Job with handle 10114 added."
17:58:35 "ExileServer - Job with handle 10115 added."
17:58:38 "ExileZ Mod: Monitored Zombies	|	0	"
17:58:40 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
17:59:08 "ExileZ Mod: Monitored Zombies	|	0	"
17:59:35 hidebullet_001 - unknown animation source codrivermuzzle_revolving
17:59:35 hidebullet_002 - unknown animation source codrivermuzzle_revolving
17:59:35 hidebullet2_001 - unknown animation source codrivermuzzle_revolving
17:59:35 hidebullet2_002 - unknown animation source codrivermuzzle_revolving
17:59:38 hidebullet_001 - unknown animation source codrivermuzzle_revolving
17:59:38 hidebullet_002 - unknown animation source codrivermuzzle_revolving
17:59:38 hidebullet2_001 - unknown animation source codrivermuzzle_revolving
17:59:38 hidebullet2_002 - unknown animation source codrivermuzzle_revolving
17:59:38 "ExileZ Mod: Monitored Zombies	|	0	"
17:59:41 Error: Object(3 : 39) not found
17:59:52 Scripting function 'bis_fnc_effectkilledairdestruc...' is not allowed to be remotely executed
17:59:52 Client: Object 3:42 (type Type_92) not found.
17:59:52 Client: Object 3:42 (type Type_93) not found.
17:59:52 Client: Object 3:42 (type Type_454) not found.
18:00:09 "ExileZ Mod: Monitored Zombies	|	0	"
18:00:14 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:00:27 Successfull attempt to execute serverCommand '#kick 3' by server.
18:00:27 Client: Remote object 3:0 not found
18:00:27 "arma3/BIS_fnc_log: HandleDisconnect : 6208c080# 1817981: coveralls.p3d"
18:00:27 "ExileZ Mod: Spawning 2 Harassing Zombie(s) for Horst Gaskante."
18:00:43 "ExileZ Mod: Monitored Zombies	|	0	"
18:01:13 "ExileZ Mod: Monitored Zombies	|	0	"
18:01:43 "ExileZ Mod: Monitored Zombies	|	0	"
18:02:13 "ExileZ Mod: Monitored Zombies	|	0	"
18:02:43 "ExileZ Mod: Monitored Zombies	|	0	"
18:03:13 "ExileZ Mod: Monitored Zombies	|	0	"
18:03:43 "ExileZ Mod: Monitored Zombies	|	0	"
18:03:50 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:04:16 "ExileZ Mod: Monitored Zombies	|	0	"
18:04:46 "ExileZ Mod: Monitored Zombies	|	0	"
18:05:11 "DMS_SpawnAIGroup :: Spawned 6 AI at [20795.4,13062.1,0]."
18:05:17 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:05:22 "ExileZ Mod: Monitored Zombies	|	0	"
18:05:52 "ExileZ Mod: Monitored Zombies	|	0	"
18:06:22 "ExileZ Mod: Monitored Zombies	|	0	"
18:06:52 "ExileZ Mod: Monitored Zombies	|	0	"
18:07:22 "ExileZ Mod: Monitored Zombies	|	0	"
18:07:52 "ExileZ Mod: Monitored Zombies	|	0	"
18:08:22 "ExileZ Mod: Monitored Zombies	|	0	"
18:08:52 "ExileZ Mod: Monitored Zombies	|	0	"
18:08:59 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:09:25 "ExileZ Mod: Monitored Zombies	|	0	"
18:09:55 "ExileZ Mod: Monitored Zombies	|	0	"
18:10:20 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:10:25 "ExileZ Mod: Monitored Zombies	|	0	"
18:10:56 "ExileZ Mod: Monitored Zombies	|	0	"
18:11:26 "ExileZ Mod: Monitored Zombies	|	0	"
18:11:56 "ExileZ Mod: Monitored Zombies	|	0	"
18:12:26 "ExileZ Mod: Monitored Zombies	|	0	"
18:12:56 "ExileZ Mod: Monitored Zombies	|	0	"
18:13:14 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Nifi @ 194154 timed out.
18:13:26 "ExileZ Mod: Monitored Zombies	|	0	"
18:13:56 "ExileZ Mod: Monitored Zombies	|	0	"
18:14:08 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:14:29 "ExileZ Mod: Monitored Zombies	|	0	"
18:14:39 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Telos @ 162172 timed out.
18:14:59 "ExileZ Mod: Monitored Zombies	|	0	"
18:15:24 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:15:29 "ExileZ Mod: Monitored Zombies	|	0	"
18:15:39 BEServer: registering a new player #2077547796
18:15:59 "ExileZ Mod: Monitored Zombies	|	0	"
18:16:01 Server: Object 0:0 not found (message Type_181)
18:16:02 "ExileServer - Player Horst Gaskante (UID 76561198057603957) connected!"
18:16:09 "ExileServer - Starting session for 'Horst Gaskante' with ID 'ryyzhckt'..."
18:16:09 "ExileServer - Dispatching hasPlayerRequest for session 'ryyzhckt'..."
18:16:23 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Agios Dionysios @ 091159 timed out.
18:16:29 "ExileZ Mod: Monitored Zombies	|	0	"
18:16:30 Server: Object 2:3002 not found (message Type_454)
18:16:30 Server: Object 2:3002 not found (message Type_121)
18:16:48 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Agia Triada...
18:17:00 "ExileZ Mod: Monitored Zombies	|	0	"
18:17:10 Error: Object(4 : 10) not found
18:17:30 "ExileZ Mod: Monitored Zombies	|	0	"
18:17:47 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Kalochori @ 213163 timed out.
18:18:00 "ExileZ Mod: Monitored Zombies	|	0	"
18:18:30 "ExileZ Mod: Monitored Zombies	|	0	"
18:18:40 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:18:40 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:18:44 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Telos...
18:19:01 "ExileZ Mod: Monitored Zombies	|	0	"
18:19:18 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:19:22 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Stavros @ 129150 timed out.
18:19:35 "ExileZ Mod: Monitored Zombies	|	0	"
18:20:05 "ExileZ Mod: Monitored Zombies	|	0	"
18:20:09 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Abdera...
18:20:11 "DMS_SpawnAIGroup :: Spawned 10 AI at [10271.2,8240.59,0]."
18:20:11 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Covered_Blue'
18:20:11 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Covered_Blue'
18:20:25 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:20:40 "ExileZ Mod: Monitored Zombies	|	0	"
18:21:10 "ExileZ Mod: Monitored Zombies	|	0	"
18:21:10 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Ekali @ 170099 timed out.
18:21:40 "ExileZ Mod: Monitored Zombies	|	0	"
18:21:45 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:21:45 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:22:03 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Alikampos...
18:22:11 "ExileZ Mod: Monitored Zombies	|	0	"
18:22:36 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Frini @ 146207 timed out.
18:22:42 "ExileZ Mod: Monitored Zombies	|	0	"
18:23:12 "ExileZ Mod: Monitored Zombies	|	0	"
18:23:42 "ExileZ Mod: Monitored Zombies	|	0	"
18:23:56 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Agios Petros...
18:24:12 "ExileZ Mod: Monitored Zombies	|	0	"
18:24:29 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:24:45 "ExileZ Mod: Monitored Zombies	|	0	"
18:24:50 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:24:50 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:25:16 "ExileZ Mod: Monitored Zombies	|	0	"
18:25:26 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:25:47 "ExileZ Mod: Monitored Zombies	|	0	"
18:26:01 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Orino...
18:26:17 "ExileZ Mod: Monitored Zombies	|	0	"
18:26:47 "ExileZ Mod: Monitored Zombies	|	0	"
18:27:17 "ExileZ Mod: Monitored Zombies	|	0	"
18:27:47 "ExileZ Mod: Monitored Zombies	|	0	"
18:27:52 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:27:52 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:27:53 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Kalochori...
18:28:18 "ExileZ Mod: Monitored Zombies	|	0	"
18:28:49 "ExileZ Mod: Monitored Zombies	|	0	"
18:29:19 "ExileZ Mod: Monitored Zombies	|	0	"
18:29:41 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:29:52 "ExileZ Mod: Monitored Zombies	|	0	"
18:30:22 "ExileZ Mod: Monitored Zombies	|	0	"
18:30:27 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:30:52 "ExileZ Mod: Monitored Zombies	|	0	"
18:30:57 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:30:57 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:31:24 "ExileZ Mod: Monitored Zombies	|	0	"
18:31:54 "ExileZ Mod: Monitored Zombies	|	0	"
18:32:24 "ExileZ Mod: Monitored Zombies	|	0	"
18:32:54 "ExileZ Mod: Monitored Zombies	|	0	"
18:33:11 "DMS_SpawnAIGroup :: Spawned 12 AI at [5907.27,15800.2,0]."
18:33:29 "ExileZ Mod: Monitored Zombies	|	0	"
18:33:59 "ExileZ Mod: Monitored Zombies	|	0	"
18:33:59 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:33:59 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:34:31 "ExileZ Mod: Monitored Zombies	|	0	"
18:34:53 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:35:04 "ExileZ Mod: Monitored Zombies	|	0	"
18:35:29 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:35:34 "ExileZ Mod: Monitored Zombies	|	0	"
18:36:04 "ExileZ Mod: Monitored Zombies	|	0	"
18:36:34 "ExileZ Mod: Monitored Zombies	|	0	"
18:37:04 "ExileZ Mod: Monitored Zombies	|	0	"
18:37:04 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:37:05 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:37:36 "ExileZ Mod: Monitored Zombies	|	0	"
18:38:06 "ExileZ Mod: Monitored Zombies	|	0	"
18:38:36 "ExileZ Mod: Monitored Zombies	|	0	"
18:39:06 "ExileZ Mod: Monitored Zombies	|	0	"
18:39:36 "ExileZ Mod: Monitored Zombies	|	0	"
18:40:03 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:40:14 "ExileZ Mod: Monitored Zombies	|	0	"
18:40:14 "ExileZ Mod: Horst Gaskante is in a Blacklisted area, no Harassing Zombie for them."
18:40:15 "ExileZ Mod: Horst Gaskante is in a SafeZone, no Harassing Zombie for them."
18:40:31 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:40:46 "ExileZ Mod: Monitored Zombies	|	0	"
18:41:16 "ExileZ Mod: Monitored Zombies	|	0	"
18:41:46 "ExileZ Mod: Monitored Zombies	|	0	"
18:41:51 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Agia Triada @ 166204 timed out.
18:41:51 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invading Athira...
18:42:16 "ExileZ Mod: Monitored Zombies	|	0	"
18:42:22 Client: Remote object 4:0 not found
18:42:22 "arma3/BIS_fnc_log: HandleDisconnect : 78e52040# 1824945: coveralls.p3d"
18:42:23 Warning: Cleanup player - person 2:3003 not found
18:42:46 "ExileZ Mod: Monitored Zombies	|	0	"
18:43:16 "ExileZ Mod: Monitored Zombies	|	0	"
18:43:46 "ExileZ Mod: Monitored Zombies	|	0	"
18:43:48 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Telos @ 162172 timed out.
18:44:11 "DMS_SpawnAIGroup :: Spawned 6 AI at [12285.4,20587,0]."
18:44:11 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Ural_Covered_Worker'
18:44:11 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Ural_Covered_Worker'
18:44:21 "ExileZ Mod: Monitored Zombies	|	0	"
18:44:51 "ExileZ Mod: Monitored Zombies	|	0	"
18:45:13 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Abdera @ 094202 timed out.
18:45:13 "[occupationMonitor] _tempLocation: [[8197,9081,400],3000,""Altis""] _originalSpawnLocation: [8197,9081,400]"
18:45:24 "ExileZ Mod: Monitored Zombies	|	0	"
18:45:35 "ExileZ Mod: Monitored Dead Zombies	|	0	"
18:45:55 "ExileZ Mod: Monitored Zombies	|	0	"
18:46:25 "ExileZ Mod: Monitored Zombies	|	0	"
18:46:55 "ExileZ Mod: Monitored Zombies	|	0	"
18:47:06 IT07: [VEMFr] DynamicLocationInvasion -- INFO: invasion of Alikampos @ 111145 timed out.

 

so i hope anyone can help ;)

20180604183744_1.jpg

20180604184155_1.jpg

Share this post


Link to post
Share on other sites
Advertisement

Create an account or sign in to comment

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

Create an account

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

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.