joew00

Real Time Server Restart Warnings [1.0.4 WORKING]

10 posts in this topic

STILL COMPATIBLE WITH EXILE 1.0.4 PINEAPPLE AND 64-BIT WINDOWS SERVERS!

Hi!
I was looking foir this for much time, now i can find one script that really do what i want.
I just modify small things to make it compatible with Exile mod.

Whats this script do?
You config REAL TIME to server shows warnings telling how much time to server restart. It will pick the server's OS (windows) time and uses it. Don't matter what time you started your server, or how much time the server is online. It will always show the warnings at the real times you choose.
This script ONLY SHOWS THE WARNINGS before server restarts. It will show in 2 hours, 1 hour, 30 min, 20 min, 10 min, 5 min, 1 min and it could show a countdown from 60 secs to 0 if you want.
If you want, it will lock the server 5 minutes before server restart, so no one more can log in untill the restart.

THIS SCRIPT DON'T RESTART THE SERVER. You will have to use another way to do it.

I need it because i want my server to restart with 4 hours cycle. But i really want it to restart at: 08:00, 12:00, 16:00, 20:00, 00:00, 04:00 hours. So the players can manage the time and don't be angry for restarts.

I don't have infiStar so it don't uses it, i knew that a lot of people don't like BE so it don't uses it too.

It requires real_date.dll v3.0 by killzonekid:
- 32 bits: http://killzonekid.com/pub/real_date_v3.0.zip

- 64 bits: http://killzonekid.com/pub/real_date_x64_v3.0.zip

PS: I tested only with 32 bits server, but i think it would works with 64 bits too, because killzonekid release one dll for 64 bit too.
UPDATE (2018-07-16): Tested today with Exile Pineapple 1.0.4 64 bits server and its working.


[ x ] Installation:

1) Download real_date.dll by killzonekid and extract it inside the same folder as your arma3server.exe or arma3server_x64.exe
2) In the same folder as your dedicated exe file, create another folder: ExileScripts
3) Inside ExileScripts folder, create the file serverRestartMessages.sqf :

Spoiler

/*
	----------------------------------------------------------------------------------------------
	
	Copyright © 2016 soulkobk (soulkobk.blogspot.com)

	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU Affero General Public License as
	published by the Free Software Foundation, either version 3 of the
	License, or (at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU Affero General Public License for more details.

	You should have received a copy of the GNU Affero General Public License
	along with this program. If not, see <http://www.gnu.org/licenses/>.

	----------------------------------------------------------------------------------------------
	
	Name: serverRestartMessages.sqf
	Version: 1.2
	Author: soulkobk (soulkobk.blogspot.com)
	Creation Date: 12:00 PM 01/01/2016
	Modification Date: 5:09 PM 18/06/2016
	Edited by joew00 to make it compatible for Exile Version.
	
	Description:
	This script must be used with real_date 3.0 (http://killzonekid.com/pub/real_date_v3.0.zip)
	extention to get the server time on script execution, and must also be executed server side only!
	(place the real_date.dll in the same directory where your arma3server.exe is).

	This script needs to be placed in the SERVER SIDE folder...
	'A3Wasteland_Settings\scripts\serverRestartMessages\serverRestartMessages.sqf'
	
	The following line needs to be placed in the SERVER SIDE init.sqf (found in A3Wasteland_Settings folder).
	execVM (externalConfigFolder + "\scripts\serverRestartMessages\serverRestartMessages.sqf");
	
	The following line needs to be placed in the MISSION init.sqf file (then re-pack the mission.pbo).
	"RM_DISPLAYTEXT_PUBVAR" addPublicVariableEventHandler {(_this select 1) spawn BIS_fnc_dynamicText;};

	The script is informative only and will display messages on all clients when the server is due
	to restart. Please note, this script does NOT restart the server, you will need to sync this
	script up with your own	restart times (bec client/batch file/hosted restart/script restart).
	
	Parameter(s): none

	Example: none
	
	Change Log:
	1.0	-	original base script.
	1.1	-	fixed client messages to reflect if server is locked at 5 minutes until restart or not.
	1.2	-	created new call routines for time checking and formatting output. fixed error when using
			time string 00:00:00 in _hardResetTimes, it now accepts 00:00:00 or 24:00:00 for midnight.
			script now also allows 24 hour roll-over. tidied up some code structure.
	
	----------------------------------------------------------------------------------------------
*/

_hardResetTimes = ["04:00:00","08:00:00","12:00:00","16:00:00","20:00:00","00:00:00"]; // HARD RESET TIMES IN HH:MM:SS
_lastMinuteCountDown = true; // COUNTS DOWN ON SCREEN FROM 60 SECONDS TO 0 SECONDS
_lockServerAt5Minutes = true; // LOCK THE SERVER 5 MINUTES BEFORE RESTART?

/*	------------------------------------------------------------------------------------------
	DO NOT EDIT BELOW HERE!
	------------------------------------------------------------------------------------------	*/

#define SECSPERHOUR 3600
#define SECSPERMIN 60

_doubleDigits = {
    if (_this < 10) exitWith {"0"+str _this};
    str _this
};

_isTime = false;
_checkTimeRange = {
	_nowTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTime = _hardSecondsTime - ((_this * 60) - 60);

	if (_startTime <= 0) then {_startTime = (86400 + _startTime);};
	if (_endTime <= 0) then {_endTime = (86400 + _endTime);};
	if ((_endTime - _startTime) < 0) then
	{
		_startTime = ((_endTime - _startTime) + (86400 - 60));
	};
	if ((_nowTime >= _startTime) && (_nowTime <= _endTime)) then {_isTime = true;} else {_isTime = false;};
	_isTime
};

_outputServerTime = "";
_checkServerTime = {
	_currServerTime = call compile ("real_date" callExtension "+"); _currServerTimeHour = _currServerTime select 3; _currServerTimeMin = _currServerTime select 4; _currServerTimeSec = _currServerTime select 5;
	if (_this == "HHMMSS") then {
		_outputServerTime = format ["%1:%2:%3", _currServerTimeHour call _doubleDigits, _currServerTimeMin call _doubleDigits, _currServerTimeSec call _doubleDigits];
	}
	else
	{
		_outputServerTime = [_currServerTimeHour, _currServerTimeMin, _currServerTimeSec];
	};
	_outputServerTime
};

diag_log format ["[SERVER RESTART] -> RESTART TIMES ARE %1 - CURRENT SERVER TIME IS %2", _hardResetTimes, 'HHMMSS' call _checkServerTime];

_realServerTime = "" call _checkServerTime; _realSecondsTime = (((_realServerTime select 0) * SECSPERHOUR) + ((_realServerTime select 1) * SECSPERMIN) + (_realServerTime select 2));
_120minCheck = false; _60minCheck = false; _30minCheck = false; _20minCheck = false; _10minCheck = false; _5minCheck = false; _2minCheck = false; _1minCheck = false;

checkServerTime = true;
while {checkServerTime} do
{
	_ticksLoop = round(diag_TickTime);
	{
		_hardServerTime = _x splitString ":";
		_hardServerTimeHour = parseNumber (_hardServerTime select 0);
		_hardServerTimeMin = parseNumber (_hardServerTime select 1);
		_hardServerTimeSec = parseNumber (_hardServerTime select 2);
		_hardSecondsTime = (_hardServerTimeHour * SECSPERHOUR);
		_hardSecondsTime = (_hardSecondsTime + (_hardServerTimeMin * SECSPERMIN));
		_hardSecondsTime = (_hardSecondsTime + _hardServerTimeSec);
		switch true do
		{
			case ((120 call _checkTimeRange) && !_120minCheck) :
			{
				_120minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#008000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 2 HOURS",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 2 HOURS UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((60 call _checkTimeRange) && !_60minCheck) :
			{
				_60minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#008000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 1 HOUR",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 1 HOUR UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((30 call _checkTimeRange) && !_30minCheck) :
			{
				_30minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FFFF00' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 30 MINUTES",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 30 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((20 call _checkTimeRange) && !_20minCheck) :
			{
				_30minCheck = true; _20minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FFFF00' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 20 MINUTES",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 20 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((10 call _checkTimeRange) && !_10minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FFFF00' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 10 MINUTES",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 10 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((5 call _checkTimeRange) && !_5minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true; _5minCheck = true;
				if (_lockServerAt5Minutes) then
				{
					_lockServer = "[]" serverCommand "#lock";
					RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF5500' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 5 MINUTES<br/><t color='#FF5500' size='0.65'>THE SERVER IS NOW LOCKED UNTIL RESTART",0,0.7,10,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> 5 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1 - SERVER LOCKED!", 'HHMMSS' call _checkServerTime];
				}
				else
				{
					RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF5500' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 5 MINUTES",0,0.7,10,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> 5 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
				};
			};
			case ((2 call _checkTimeRange) && !_2minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true; _5minCheck = true; _2minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF5500' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 2 MINUTES<br/><t color='#FF5500'>LOG OUT NOW!</t>",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 2 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((1 call _checkTimeRange) && !_1minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true; _5minCheck = true; _2minCheck = true; _1minCheck = true;
				if (_lastMinuteCountDown) then 
				{
					diag_log format ["[SERVER RESTART] -> 60 SECONDS UNTIL SERVER RESTART (COUNTING DOWN) - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
					for [{_s = (_hardSecondsTime - _realSecondsTime)},{_s > 0},{_s = _s - 1}] do
					{
						if (_s > 1) then
						{
							RM_DISPLAYTEXT_PUBVAR = [format["<t color='#FF0000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN %1 SECONDS<br/><t color='#FF0000'>LOG OUT NOW!</t>",_s],0,0.7,1,0];
							publicVariable "RM_DISPLAYTEXT_PUBVAR";
						}
						else
						{
							RM_DISPLAYTEXT_PUBVAR = [format["<t color='#FF0000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN %1 SECOND<br/><t color='#FF0000'>LOG OUT NOW!</t>",_s],0,0.7,1,0];
							publicVariable "RM_DISPLAYTEXT_PUBVAR";
						};
						uiSleep 1;
					};
					RM_DISPLAYTEXT_PUBVAR = ["",0,0.7,1,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
				}
				else
				{
					RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF0000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 60 SECONDS<br/><t color='#FF0000'>LOG OUT NOW!</t>",0,0.7,10,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> 60 SECONDS UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
					uiSleep 60;
					diag_log format ["[SERVER RESTART] -> SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
				};
				checkServerTime = false;
			};
		};
	} forEach _hardResetTimes;
	uiSleep 1;
	_ticksEnd = round(diag_TickTime);
	_ticksEndLoop = round(_ticksEnd - _ticksLoop);
	if (_realSecondsTime >= 86400) then
	{
		_realSecondsTime = 0;
	};
	_realSecondsTime = _realSecondsTime + _ticksEndLoop;
};

 

4) Open your mpmission folder, edit the file: initServer.sqf and add the code:

///////////////////////////////////////////////////////////////////////////////////////////////////
// Server Restart Warning
///////////////////////////////////////////////////////////////////////////////////////////////////

if (isServer) then
{
	externalConfigFolder = "\ExileScripts";
	if (loadFile (externalConfigFolder + "\serverRestartMessages.sqf") != "") then
	{
		[] execVM (externalConfigFolder + "\serverRestartMessages.sqf");
	};
};

5) Open your mpmission folder, edit the file: init.sqf and add the code:

//////////////////////////////////////////////////////////////////////////// 
// Server Restart Warning
////////////////////////////////////////////////////////////////////////////

"RM_DISPLAYTEXT_PUBVAR" addPublicVariableEventHandler {(_this select 1) spawn BIS_fnc_dynamicText;};

6) Re-pack your mission pbo and done!

[ x ] Config:
Edit the file: serverRestartMessages.sqf

1) Server restart times:

_hardResetTimes = ["04:00:00","08:00:00","12:00:00","16:00:00","20:00:00","00:00:00"]; // HARD RESET TIMES IN HH:MM:SS

2) Countdown while last minute:

_lastMinuteCountDown = true; // COUNTS DOWN ON SCREEN FROM 60 SECONDS TO 0 SECONDS

3) Lock server at 5 minutes from restart (block new players connect to server):

_lockServerAt5Minutes = true; // LOCK THE SERVER 5 MINUTES BEFORE RESTART?


[ x ] Screen Shots:

Spoiler

Screenshot+2016-01-09+13.28.53_cr.jpg          Screenshot+2016-01-09+13.31.37_cr.jpg

UPDATE 2018-07-16: Screen Shots of Exile 1.0.4 Pineapple Server:

Spoiler

 

nbbiRlG.jpg

KCyZzIV.jpg

a6OsUD4.jpg

iUO6Gnm.jpg

eSceN9t.jpg


[ x ] Credits:
- soul: http://soulkobk.blogspot.com.br/2016/01/arma-3-custom-scripting-server-restart.html
Author of the file: serverRestartMessages.sqf . I edited it to make compatible with Exile mod.

- killzonekid:  http://killzonekid.com/
Author of real_date.dll

I wish it could help you like as helped me ;)

Edited by joew00
Confirmed works with Exile 1.0.4 Pineapple
  • Like 2

Share this post


Link to post
Share on other sites
Advertisement

I Adapt this to Linux/Windows 86/64 bit with ExtDB 2/3

Reports come this day after many Tests

 

 

I Dont Know what is wrong

 

/*
	----------------------------------------------------------------------------------------------
	
	Copyright © 2016 soulkobk (soulkobk.blogspot.com)
	--> Mod by H3llBz adapt to Linux with ExtDB 2/3 <--

	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU Affero General Public License as
	published by the Free Software Foundation, either version 3 of the
	License, or (at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU Affero General Public License for more details.

	You should have received a copy of the GNU Affero General Public License
	along with this program. If not, see <http://www.gnu.org/licenses/>.

	----------------------------------------------------------------------------------------------
	
	Name: serverRestartMessages.sqf
	Version: 1.2
	Author: soulkobk (soulkobk.blogspot.com)
	Creation Date: 12:00 PM 01/01/2016
	Modification Date: 5:09 PM 18/06/2016
	Edited by joew00 to make it compatible for Exile Version.
	
	Description:
	This script must be used with real_date 3.0 (http://killzonekid.com/pub/real_date_v3.0.zip)
	extention to get the server time on script execution, and must also be executed server side only!
	(place the real_date.dll in the same directory where your arma3server.exe is).

	This script needs to be placed in the SERVER SIDE folder...
	'A3Wasteland_Settings\scripts\serverRestartMessages\serverRestartMessages.sqf'
	
	The following line needs to be placed in the SERVER SIDE init.sqf (found in A3Wasteland_Settings folder).
	execVM (externalConfigFolder + "\scripts\serverRestartMessages\serverRestartMessages.sqf");
	
	The following line needs to be placed in the MISSION init.sqf file (then re-pack the mission.pbo).
	"RM_DISPLAYTEXT_PUBVAR" addPublicVariableEventHandler {(_this select 1) spawn BIS_fnc_dynamicText;};

	The script is informative only and will display messages on all clients when the server is due
	to restart. Please note, this script does NOT restart the server, you will need to sync this
	script up with your own	restart times (bec client/batch file/hosted restart/script restart).
	
	Parameter(s): none

	Example: none
	
	Change Log:
	1.0	-	original base script.
	1.1	-	fixed client messages to reflect if server is locked at 5 minutes until restart or not.
	1.2	-	created new call routines for time checking and formatting output. fixed error when using
			time string 00:00:00 in _hardResetTimes, it now accepts 00:00:00 or 24:00:00 for midnight.
			script now also allows 24 hour roll-over. tidied up some code structure.
	
	----------------------------------------------------------------------------------------------
*/

_hardResetTimes = ["04:00:00","08:00:00","12:00:00","16:00:00","20:00:00","00:00:00"]; // HARD RESET TIMES IN HH:MM:SS
_realTimeOffset = 2; // Offset to Real Time
_lastMinuteCountDown = true; // COUNTS DOWN ON SCREEN FROM 60 SECONDS TO 0 SECONDS
_lockServerAt5Minutes = true; // LOCK THE SERVER 5 MINUTES BEFORE RESTART?

/*	------------------------------------------------------------------------------------------
	DO NOT EDIT BELOW HERE!
	------------------------------------------------------------------------------------------	*/

#define SECSPERHOUR 3600
#define SECSPERMIN 60

_doubleDigits = {
    if (_this < 10) exitWith {"0"+str _this};
    str _this
};

_isTime = false;
_checkTimeRange = {
	_nowTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTime = _hardSecondsTime - ((_this * 60) - 60);

	if (_startTime <= 0) then {_startTime = (86400 + _startTime);};
	if (_endTime <= 0) then {_endTime = (86400 + _endTime);};
	if ((_endTime - _startTime) < 0) then
	{
		_startTime = ((_endTime - _startTime) + (86400 - 60));
	};
	if ((_nowTime >= _startTime) && (_nowTime <= _endTime)) then {_isTime = true;} else {_isTime = false;};
	_isTime
};

_checkdb = "extDB3" callExtension "9:VERSION";
if (_checkdb == "") then
{
	FN_CALL_ExtDB_TIME = {"extDB2" callExtension format["9:TIME:%1",_realTimeOffset] };
} else {
	FN_CALL_ExtDB_TIME = {"extDB3" callExtension format["9:UTC_TIME:%1",_realTimeOffset] };
};

_outputServerTime = "";
_checkServerTime = {
	_currServerTime = call compile ("" call FN_CALL_ExtDB_TIME);
	_currServerTimeArray = _currServerTime select 1;
	_currServerTimeHour = _currServerTimeArray select 3; 
	_currServerTimeMin  = _currServerTimeArray select 4; 
	_currServerTimeSec  = _currServerTimeArray select 5;		
	if (_this == "HHMMSS") then {
		_outputServerTime = format ["%1:%2:%3", _currServerTimeHour call _doubleDigits, _currServerTimeMin call _doubleDigits, _currServerTimeSec call _doubleDigits];
	}
	else
	{
		_outputServerTime = [_currServerTimeHour, _currServerTimeMin, _currServerTimeSec];
	};
	_outputServerTime
};

diag_log format ["[SERVER RESTART] -> RESTART TIMES ARE %1 - CURRENT SERVER TIME IS %2", _hardResetTimes, 'HHMMSS' call _checkServerTime];

_realServerTime = "" call _checkServerTime; _realSecondsTime = (((_realServerTime select 0) * SECSPERHOUR) + ((_realServerTime select 1) * SECSPERMIN) + (_realServerTime select 2));
_120minCheck = false; _60minCheck = false; _30minCheck = false; _20minCheck = false; _10minCheck = false; _5minCheck = false; _2minCheck = false; _1minCheck = false;

checkServerTime = true;
while {checkServerTime} do
{
	_ticksLoop = round(diag_TickTime);
	{
		_hardServerTime = _x splitString ":";
		_hardServerTimeHour = parseNumber (_hardServerTime select 3);
		_hardServerTimeMin  = parseNumber (_hardServerTime select 4);
		_hardServerTimeSec  = parseNumber (_hardServerTime select 5);
		_hardSecondsTime = (_hardServerTimeHour * SECSPERHOUR);
		_hardSecondsTime = (_hardSecondsTime + (_hardServerTimeMin * SECSPERMIN));
		_hardSecondsTime = (_hardSecondsTime + _hardServerTimeSec);
		switch true do
		{
			case ((120 call _checkTimeRange) && !_120minCheck) :
			{
				_120minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#008000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 2 HOURS",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 2 HOURS UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((60 call _checkTimeRange) && !_60minCheck) :
			{
				_60minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#008000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 1 HOUR",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 1 HOUR UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((30 call _checkTimeRange) && !_30minCheck) :
			{
				_30minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FFFF00' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 30 MINUTES",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 30 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((20 call _checkTimeRange) && !_20minCheck) :
			{
				_30minCheck = true; _20minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FFFF00' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 20 MINUTES",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 20 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((10 call _checkTimeRange) && !_10minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FFFF00' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 10 MINUTES",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 10 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((5 call _checkTimeRange) && !_5minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true; _5minCheck = true;
				if (_lockServerAt5Minutes) then
				{
					_lockServer = "[]" serverCommand "#lock";
					RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF5500' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 5 MINUTES<br/><t color='#FF5500' size='0.65'>THE SERVER IS NOW LOCKED UNTIL RESTART",0,0.7,10,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> 5 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1 - SERVER LOCKED!", 'HHMMSS' call _checkServerTime];
				}
				else
				{
					RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF5500' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 5 MINUTES",0,0.7,10,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> 5 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
				};
			};
			case ((2 call _checkTimeRange) && !_2minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true; _5minCheck = true; _2minCheck = true;
				RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF5500' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 2 MINUTES<br/><t color='#FF5500'>LOG OUT NOW!</t>",0,0.7,10,0];
				publicVariable "RM_DISPLAYTEXT_PUBVAR";
				diag_log format ["[SERVER RESTART] -> 2 MINUTES UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
			};
			case ((1 call _checkTimeRange) && !_1minCheck) :
			{
				_30minCheck = true; _20minCheck = true; _10minCheck = true; _5minCheck = true; _2minCheck = true; _1minCheck = true;
				if (_lastMinuteCountDown) then 
				{
					diag_log format ["[SERVER RESTART] -> 60 SECONDS UNTIL SERVER RESTART (COUNTING DOWN) - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
					for [{_s = (_hardSecondsTime - _realSecondsTime)},{_s > 0},{_s = _s - 1}] do
					{
						if (_s > 1) then
						{
							RM_DISPLAYTEXT_PUBVAR = [format["<t color='#FF0000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN %1 SECONDS<br/><t color='#FF0000'>LOG OUT NOW!</t>",_s],0,0.7,1,0];
							publicVariable "RM_DISPLAYTEXT_PUBVAR";
						}
						else
						{
							RM_DISPLAYTEXT_PUBVAR = [format["<t color='#FF0000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN %1 SECOND<br/><t color='#FF0000'>LOG OUT NOW!</t>",_s],0,0.7,1,0];
							publicVariable "RM_DISPLAYTEXT_PUBVAR";
						};
						uiSleep 1;
					};
					RM_DISPLAYTEXT_PUBVAR = ["",0,0.7,1,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
				}
				else
				{
					RM_DISPLAYTEXT_PUBVAR = ["<t color='#FF0000' size='0.65'>SERVER RESTART</t><br/><t size='0.65'>THE SERVER WILL RESTART IN 60 SECONDS<br/><t color='#FF0000'>LOG OUT NOW!</t>",0,0.7,10,0];
					publicVariable "RM_DISPLAYTEXT_PUBVAR";
					diag_log format ["[SERVER RESTART] -> 60 SECONDS UNTIL SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
					uiSleep 60;
					diag_log format ["[SERVER RESTART] -> SERVER RESTART - CURRENT SERVER TIME IS %1", 'HHMMSS' call _checkServerTime];
				};
				checkServerTime = false;
			};
		};
	} forEach _hardResetTimes;
	uiSleep 1;
	_ticksEnd = round(diag_TickTime);
	_ticksEndLoop = round(_ticksEnd - _ticksLoop);
	if (_realSecondsTime >= 86400) then
	{
		_realSecondsTime = 0;
	};
	_realSecondsTime = _realSecondsTime + _ticksEndLoop;
};



Errors:

 


_hardServerTimeSec  = parseNu>
16:37:56   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:56   Error Zero divisor
16:37:56 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <TimeMin  = parseNumber (_hardServerTime select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error Zero divisor
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <TimeMin  = parseNumber (_hardServerTime select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error Zero divisor
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <TimeMin  = parseNumber (_hardServerTime select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error Zero divisor
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <TimeMin  = parseNumber (_hardServerTime select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error Zero divisor
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <TimeMin  = parseNumber (_hardServerTime select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error Zero divisor
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <TimeMin  = parseNumber (_hardServerTime select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:57   Error Zero divisor
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:57   Error Undefined variable in expression: _hardsecondstime
16:37:57 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:57 "[OCCUPATION:Vehicle] found position [19357.4,8411.3,0]"
16:37:57 "ExileServer - Job with handle 10043 added."
16:37:57 "ExileServer - Job with handle 10044 added."
16:37:57 "ExileServer - Job with handle 10045 added."
16:37:57 "<infiSTAR.de>A3_EXILE_OCCUPATION| V66 (23-03-2017) [OCCUPATION:Vehicle] bandit vehicle C_Offroad_02_unarmed_F spawned @ [19357.4,8411.3,0]   [23-Mar-2017 18-41-04 - v0074]"
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error Undefined variable in expression: _hardsecondstime
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 81
16:37:58 Error in expression <TimeMin  = parseNumber (_hardServerTime select 4);
_hardServerTimeSec  = parseNu>
16:37:58   Error position: <select 4);
_hardServerTimeSec  = parseNu>
16:37:58   Error Zero divisor
16:37:58 File mpmissions\__cur_mp.Altis\custom\scripts\serverRestartMessages.sqf, line 130
16:37:58 Error in expression <owTime = _realSecondsTime; _startTime = _hardSecondsTime - (_this * 60); _endTim>
16:37:58   Error position: <_hardSecondsTime - (_this * 60); _endTim>

 

Edited by HellBz

Share this post


Link to post
Share on other sites
On 2.5.2017 at 8:43 AM, M-RYS said:

Did you try this script on an Exile server?

  Reveal hidden contents

Screenshot+2016-01-09+13.28.53_cr.jpg

 

 

I Try this, only Works on Windows

Share this post


Link to post
Share on other sites

@HellBz... 

I guess you did not understand my question! I am not asking what operating system is used but rather what is the mode. The screenshot reveals that of wasteland ... is not it?

Share this post


Link to post
Share on other sites

@joew00 i put it on my server (Gameserver on Windows) and it dont make a error i think.

 

Error:

2:56:24 Could not load '\ExileScripts\serverRestartMessages.sqf'. Extension not listed in allowedLoadFileExtensions

Logfile:

Spoiler

=====================================================================
== E:\cygwin\home\zap328164\g16762\a3exile\arma3server.exe
== E:\cygwin\home\zap328164\g16762\a3exile\arma3server.exe -ip=134.255.252.93 -port=2344 -config=config\server.cfg -cfg=config\basic.cfg -mod=@Exile;@ZombiesandDemons -servermod=@ExileServer;@AdminToolkitServer -profiles=config -loadMissionToMemory -enableHT

Original output filename: Arma3Retail_Server
Exe timestamp: 2017/10/04 15:05:28
Current time:  2017/10/23 09:03:21

Type: Public
Build: Stable
Version: 1.76.143187

Allocator: E:\cygwin\home\zap328164\g16762\a3exile\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0]
PhysMem: 160 GiB, VirtMem : 4.0 GiB, AvailPhys : 79 GiB, AvailVirt : 3.9 GiB, AvailPage : 85 GiB
=====================================================================

 9:03:21 Unable to initialize Steam API.
 9:03:21 SteamAPI initialization failed. Steam features won't be accessible!
 9:03:21 Cannot register unknown string STR_3DEN_CAMERA_NAME
 9:03:21 Initializing stats manager.
 9:03:21 Stats config disabled.
 9:03:21 sessionID: d7d58701a1854045f97335b551ebf7d00fe3246b
 9:03:45 Updating base class ->Wreck, by a3\data_f\config.bin/CfgVehicles/PlaneWreck/ (original a3\data_f\config.bin)
 9:03:45 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin)
 9:03:45 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin)
 9:03:45 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin)
 9:03:45 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin)
 9:03:45 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin)
 9:03:46 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin)
 9:03:46 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin)
 9:03:46 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin)
 9:03:46 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin)
 9:03:46 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin)
 9:03:46 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin)
 9:03:46 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin)
 9:03:46 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
 9:03:46 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin)
 9:03:46 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin)
 9:03:46 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin)
 9:03:46 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin)
 9:03:46 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin)
 9:03:46 Updating base class ->VehicleMagazine, by a3\weapons_f\config.bin/CfgMagazines/24Rnd_missiles/ (original a3\weapons_f\config.bin)
 9:03:46 Updating base class ->RocketPods, by a3\weapons_f\config.bin/CfgWeapons/missiles_DAR/ (original a3\weapons_f\config.bin)
 9:03:47 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin)
 9:03:47 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin)
 9:03:47 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin)
 9:03:47 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin)
 9:03:47 Updating base class ListRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 Updating base class ListPrevRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 Updating base class CloseRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 Updating base class NextModeRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 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)
 9:03:47 Cannot delete class BackgroundSlotPrimary, it is referenced somewhere (used as a base class probably).
 9:03:47 Updating base class RscStandardDisplay->, by exile_client\config.bin/RscDisplayMain/ (original bin\config.bin)
 9:03:47 Updating base class RscPicture->RscText, by exile_client\config.bin/RscDisplayVoiceChat/controls/Picture/ (original a3\ui_f\config.bin)
 9:03:47 Updating base class ->Plane, by exile_psycho_an2\config.bin/CfgVehicles/an2_base/ (original exile_psycho_an2\config.bin)
 9:03:47 Updating base class ->BRDM2_HQ_Base, by exile_psycho_brdm\config.bin/CfgVehicles/BRDM2_HQ_CHDKZ/ (original exile_psycho_brdm\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_MG_base_EP1/ (original exile_psycho_btr40\config.bin)
 9:03:47 Updating base class ->BTR40_MG_base_EP1, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_base_EP1/ (original exile_psycho_btr40\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_gaz_volha\config.bin/CfgVehicles/volha_Base/ (original exile_psycho_gaz_volha\config.bin)
 9:03:47 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M2/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M134/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_UNA/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->HMMWV_UNA, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_MEV/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->Ikarus_Base, by exile_psycho_ikarus\config.bin/CfgVehicles/Ikarus_Civ_02/ (original exile_psycho_ikarus\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_lada\config.bin/CfgVehicles/Lada_Base/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/Landrover_Civ_02/ (original exile_psycho_lrc\config.bin)
 9:03:47 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/LR_Ambulance_Base/ (original exile_psycho_lrc\config.bin)
 9:03:47 Updating base class ->Octavia_Base, by exile_psycho_octavia\config.bin/CfgVehicles/Octavia_Civ_01/ (original exile_psycho_octavia\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_suv_a3\config.bin/CfgVehicles/SUV_Base/ (original exile_psycho_suv_a3\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_suvarm_a3\config.bin/cfgVehicles/SUV_armored_Base/ (original exile_psycho_suvarm_a3\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_tractor\config.bin/CfgVehicles/Tractor_Base/ (original exile_psycho_tractor\config.bin)
 9:03:47 Updating base class ->Tractor_Base, by exile_psycho_tractor\config.bin/CfgVehicles/tractorOld/ (original exile_psycho_tractor\config.bin)
 9:03:47 Updating base class ->Offroad_01_base_F, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Base/ (original exile_psycho_uaz\config.bin)
 9:03:47 Updating base class ->UAZ_Base, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Open_Base/ (original exile_psycho_uaz\config.bin)
 9:03:47 Updating base class ->UH1H_Closed, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_Clo/ (original exile_psycho_uh1h\config.bin)
 9:03:47 Updating base class ->UH1HL_base, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_M240/ (original exile_psycho_uh1h\config.bin)
 9:03:47 Updating base class ->Ural_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_RU/ (original exile_psycho_ural\config.bin)
 9:03:47 Updating base class ->Ural_Open_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_Open_RU/ (original exile_psycho_ural\config.bin)
 9:03:47 Updating base class ->Truck_F, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_base/ (original exile_psycho_v3s\config.bin)
 9:03:47 Updating base class ->V3S_base, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_Base_EP1/ (original exile_psycho_v3s\config.bin)
 9:03:47 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo01/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo02/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo03/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class ->Golf_Base, by exile_psycho_vwgolf\config.bin/CfgVehicles/Golf_Civ_Base/ (original exile_psycho_vwgolf\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->arifle_AKM, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS/ (original exile_psycho_weapons\arifle\ak\config.bin)
 9:03:47 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)
 9:03:47 Updating base class ->arifle_AK74, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_RPK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/10Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
 9:03:47 Updating base class ->10Rnd_765x17ball, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/20Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->PKP, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/Pecheneg/ (original exile_psycho_weapons\mgun\pk\config.bin)
 9:03:47 Updating base class ShotgunBase->BulletBase, by exile_psycho_weapons\other\m1014\config.bin/CfgAmmo/B_12Gauge_Pellets/ (original a3\weapons_f\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\other\m1014\config.bin/CfgWeapons/M1014/ (original exile_psycho_weapons\other\m1014\config.bin)
 9:03:47 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)
 9:03:47 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgWeapons/Colt1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
 9:03:47 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)
 9:03:47 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\makarov\config.bin/CfgWeapons/Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
 9:03:47 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\revolver\config.bin/CfgMagazines/6Rnd_45ACP/ (original exile_psycho_weapons\pistol\revolver\config.bin)
 9:03:47 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455/ (original exile_psycho_weapons\pistol\revolver\config.bin)
 9:03:47 Updating base class ->TaurusTracker455, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455_gold/ (original exile_psycho_weapons\pistol\revolver\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgWeapons/ksvk/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin)
 9:03:48 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin)
 9:03:49 Initializing Steam Manager
 9:03:49 unable to load subscribed content list. list will be updated from steam
 9:03:49 unable to load published content list. list will be updated from steam
 9:03:49 unable to load cached items meta info. save and update functionality will be broken
 9:03:49 Steam Manager initialized.
 9:03:49
 9:03:49 ==== Loaded addons ====
 9:03:49
 9:03:49 dta\bin.pbo - 143187
 9:03:49 dta\core.pbo - 109319
 9:03:49 dta\languagecore_f.pbo - 121648
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ZombiesandDemons\addons\ryanzombies.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\dbo_old_bike.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_assets.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_client.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_danny_items.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_an2.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_brdm.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_btr40.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_gaz_volha.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_hmmw.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_ikarus.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_lada.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_lrc.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_octavia.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_suvarm_a3.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_suv_a3.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_towtractor.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_tractor.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_uaz.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_uh1h.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_ural.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_v3s.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_vwgolf.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_weapons.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\gnt_c185.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\air_f_orange.ebo - 120908
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\cargoposes_f_orange.ebo - 119856
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\characters_f_orange.ebo - 120638
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\data_f_orange.ebo - 121000
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\dubbing_f_orange.ebo - 120451
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\editorpreviews_f_orange.ebo - 120509
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\functions_f_orange.ebo - 120507
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\languagemissions_f_orange.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\language_f_orange.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\missions_f_orange.ebo - 121000
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\modules_f_orange.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\music_f_orange.ebo - 120725
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\props_f_orange.ebo - 120507
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\soft_f_orange.ebo - 120850
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\sounds_f_orange.ebo - 120744
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\structures_f_orange.ebo - 120466
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\supplies_f_orange.ebo - 120744
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\ui_f_orange.ebo - 121000
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\weapons_f_orange.ebo - 120800
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\armor_f_argo.pbo - 119456
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\characters_f_patrol.pbo - 120167
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\data_f_argo.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\data_f_patrol.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\editorpreviews_f_argo.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\functions_f_patrol.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\languagemissions_f_patrol.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\language_f_argo.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\language_f_patrol.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden.pbo - 119509
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden_data_layers.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden_scenes_f.pbo - 120026
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\missions_f_patrol.pbo - 120235
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\modules_f_patrol.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\props_f_argo.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\rocks_f_argo.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\sounds_f_patrol.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\structures_f_argo.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\ui_f_patrol.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\vegetation_f_argo.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\weapons_f_patrol.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\air_f_jets.ebo - 120400
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\anims_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\boat_f_jets.ebo - 120467
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\cargoposes_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\characters_f_jets.ebo - 120162
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\data_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\dubbing_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\editorpreviews_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\functions_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\languagemissions_f_jets.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\language_f_jets.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\missions_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\modules_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\music_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\props_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\sounds_f_jets.ebo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\static_f_jets.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\ui_f_jets.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\weapons_f_jets.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\air_f_exp.pbo - 120400
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\anims_f_exp.pbo - 119456
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\armor_f_exp.pbo - 119456
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\boat_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\cargoposes_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\characters_f_exp.pbo - 120215
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\data_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp.pbo - 119458
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\editorpreviews_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\functions_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\languagemissions_f_exp.pbo - 120957
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\language_f_exp.pbo - 120957
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_data_exp.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka.ebo - 119502
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka_data.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka_data_layers.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka_data_layers_00_00.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoa_scenes_f.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\missions_f_exp.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\missions_f_exp_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\missions_f_exp_video.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\modules_f_exp.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\music_f_exp.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\music_f_exp_music.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\props_f_exp.pbo - 119920
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\rocks_f_exp.ebo - 119519
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\soft_f_exp.pbo - 120293
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\sounds_f_exp.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\static_f_exp.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp.ebo - 119491
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_civilian.ebo - 119500
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_commercial.ebo - 120412
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_cultural.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_data.ebo - 119491
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_industrial.ebo - 119492
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_infrastructure.ebo - 119491
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\supplies_f_exp.pbo - 119865
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\ui_f_exp.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\vegetation_f_exp.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\weapons_f_exp.pbo - 120461
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\anims_f_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\characters_f_mark.pbo - 120163
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\data_f_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\dubbing_f_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\dubbing_f_mp_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\functions_f_mark.pbo - 120411
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\functions_f_mp_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\languagemissions_f_mark.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\languagemissions_f_mp_mark.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\language_f_mark.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\language_f_mp_mark.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mark_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mark_video.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mp_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mp_mark_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\modules_f_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\modules_f_mp_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\music_f_mark.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\music_f_mark_music.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\sounds_f_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\static_f_mark.pbo - 120168
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\structures_f_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\supplies_f_mark.pbo - 120112
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\ui_f_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\ui_f_mp_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\weapons_f_mark.pbo - 119728
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\air_f_heli.pbo - 120400
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\anims_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\boat_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\cargoposes_f_heli.pbo - 119551
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\data_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\dubbing_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\functions_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\languagemissions_f_heli.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\language_f_heli.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\missions_f_heli.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\missions_f_heli_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\missions_f_heli_video.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\modules_f_heli.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\music_f_heli.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\music_f_heli_music.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\soft_f_heli.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\sounds_f_heli.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\structures_f_heli.pbo - 120392
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\supplies_f_heli.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\ui_f_heli.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\anims_f_kart.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\characters_f_kart.pbo - 120162
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\data_f_kart.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\languagemissions_f_kart.pbo - 120957
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\language_f_kart.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\missions_f_kart.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\missions_f_kart_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\modules_f_kart.pbo - 119510
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\modules_f_kart_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\soft_f_kart.pbo - 120078
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\sounds_f_kart.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\structures_f_kart.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\ui_f_kart.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\weapons_f_kart.pbo - 120217
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\data_f_curator.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\data_f_curator_music.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\functions_f_curator.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\language_f_curator.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\missions_f_curator.pbo - 120280
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\modules_f_curator.pbo - 120244
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\ui_f_curator.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@AdminToolkitServer\addons\admintoolkit_server.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@AdminToolkitServer\addons\admintoolkit_servercfg.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\addons\exilez_mod.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\addons\exile_server.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\addons\exile_server_config.pbo - unknown
 9:03:49 addons\3den.pbo - 120847
 9:03:49 addons\3den_language.pbo - 120957
 9:03:49 addons\a3.pbo - unknown
 9:03:49 addons\air_f.pbo - 120400
 9:03:49 addons\air_f_beta.pbo - 120400
 9:03:49 addons\air_f_epb.pbo - 120400
 9:03:49 addons\air_f_epc.pbo - 120400
 9:03:49 addons\air_f_gamma.pbo - 120400
 9:03:49 addons\animals_f.pbo - 120965
 9:03:49 addons\animals_f_beta.pbo - 119502
 9:03:49 addons\anims_f.pbo - 119864
 9:03:49 addons\anims_f_bootcamp.pbo - 119456
 9:03:49 addons\anims_f_data.pbo - 119456
 9:03:49 addons\anims_f_epa.pbo - 119456
 9:03:49 addons\anims_f_epc.pbo - 119456
 9:03:49 addons\anims_f_exp_a.pbo - 119456
 9:03:49 addons\armor_f.pbo - 119457
 9:03:49 addons\armor_f_beta.pbo - 119632
 9:03:49 addons\armor_f_epb.pbo - 119456
 9:03:49 addons\armor_f_epc.pbo - 119456
 9:03:49 addons\armor_f_gamma.pbo - 119456
 9:03:49 addons\baseconfig_f.pbo - 119457
 9:03:49 addons\boat_f.pbo - 119457
 9:03:49 addons\boat_f_beta.pbo - 119457
 9:03:49 addons\boat_f_epc.pbo - 119457
 9:03:49 addons\boat_f_gamma.pbo - 119864
 9:03:49 addons\cargoposes_f.pbo - 119457
 9:03:49 addons\characters_f.pbo - 120215
 9:03:49 addons\characters_f_beta.pbo - 119457
 9:03:49 addons\characters_f_bootcamp.pbo - 120161
 9:03:49 addons\characters_f_epa.pbo - 120161
 9:03:49 addons\characters_f_epb.pbo - 120161
 9:03:49 addons\characters_f_epc.pbo - 120161
 9:03:49 addons\characters_f_gamma.pbo - 120293
 9:03:49 addons\data_f.pbo - 120392
 9:03:49 addons\data_f_bootcamp.pbo - 119457
 9:03:49 addons\data_f_exp_a.pbo - 119457
 9:03:49 addons\data_f_exp_b.pbo - 119457
 9:03:49 addons\drones_f.pbo - 120774
 9:03:49 addons\dubbing_f.pbo - 119457
 9:03:49 addons\dubbing_f_beta.pbo - 119457
 9:03:49 addons\dubbing_f_bootcamp.pbo - 119457
 9:03:49 addons\dubbing_f_epa.pbo - 119457
 9:03:49 addons\dubbing_f_epb.pbo - 119457
 9:03:49 addons\dubbing_f_epc.pbo - 119457
 9:03:49 addons\dubbing_f_gamma.pbo - 119457
 9:03:49 addons\dubbing_radio_f.pbo - 119457
 9:03:49 addons\dubbing_radio_f_data_eng.pbo - 119457
 9:03:49 addons\dubbing_radio_f_data_engb.pbo - 119458
 9:03:49 addons\dubbing_radio_f_data_gre.pbo - 119458
 9:03:49 addons\dubbing_radio_f_data_per.pbo - 119458
 9:03:49 addons\dubbing_radio_f_data_vr.pbo - 119458
 9:03:49 addons\editorpreviews_f.pbo - 120010
 9:03:49 addons\editor_f.pbo - 119458
 9:03:49 addons\functions_f.pbo - 120853
 9:03:49 addons\functions_f_bootcamp.pbo - 119457
 9:03:49 addons\functions_f_epa.pbo - 119458
 9:03:49 addons\functions_f_epc.pbo - 119458
 9:03:49 addons\functions_f_exp_a.pbo - 119457
 9:03:49 addons\languagemissions_f.pbo - 120957
 9:03:49 addons\languagemissions_f_beta.pbo - 120957
 9:03:49 addons\languagemissions_f_bootcamp.pbo - 120958
 9:03:49 addons\languagemissions_f_epa.pbo - 120958
 9:03:49 addons\languagemissions_f_epb.pbo - 120957
 9:03:49 addons\languagemissions_f_epc.pbo - 120957
 9:03:49 addons\languagemissions_f_exp_a.pbo - 120959
 9:03:49 addons\languagemissions_f_gamma.pbo - 120958
 9:03:49 addons\language_f.pbo - 120958
 9:03:49 addons\language_f_beta.pbo - 120959
 9:03:49 addons\language_f_bootcamp.pbo - 120958
 9:03:49 addons\language_f_epa.pbo - 120957
 9:03:49 addons\language_f_epb.pbo - 120958
 9:03:49 addons\language_f_epc.pbo - 120957
 9:03:49 addons\language_f_exp_a.pbo - 120957
 9:03:49 addons\language_f_exp_b.pbo - 120957
 9:03:49 addons\language_f_gamma.pbo - 120958
 9:03:49 addons\map_altis.pbo - 0000
 9:03:49 addons\map_altis_data.pbo - 119509
 9:03:49 addons\map_altis_data_layers.pbo - 119459
 9:03:49 addons\map_altis_data_layers_00_00.pbo - 0000
 9:03:49 addons\map_altis_data_layers_00_01.pbo - 0000
 9:03:49 addons\map_altis_data_layers_01_00.pbo - 0000
 9:03:49 addons\map_altis_data_layers_01_01.pbo - 0000
 9:03:49 addons\map_altis_scenes_f.pbo - 119459
 9:03:49 addons\map_data.pbo - 119459
 9:03:49 addons\map_stratis.pbo - 119508
 9:03:49 addons\map_stratis_data.pbo - 119459
 9:03:49 addons\map_stratis_data_layers.pbo - 119459
 9:03:49 addons\map_stratis_scenes_f.pbo - 119459
 9:03:49 addons\map_vr.pbo - 105264
 9:03:49 addons\map_vr_scenes_f.pbo - 119459
 9:03:49 addons\misc_f.pbo - 119459
 9:03:49 addons\missions_f.pbo - 119459
 9:03:49 addons\missions_f_beta.pbo - 119616
 9:03:49 addons\missions_f_beta_data.pbo - 119459
 9:03:49 addons\missions_f_beta_video.pbo - 119459
 9:03:49 addons\missions_f_bootcamp.pbo - 119459
 9:03:49 addons\missions_f_bootcamp_data.pbo - 119459
 9:03:49 addons\missions_f_bootcamp_video.pbo - 119459
 9:03:49 addons\missions_f_data.pbo - 119459
 9:03:49 addons\missions_f_epa.pbo - 120704
 9:03:49 addons\missions_f_epa_data.pbo - 119459
 9:03:49 addons\missions_f_epa_video.pbo - 119459
 9:03:49 addons\missions_f_epb.pbo - 119459
 9:03:49 addons\missions_f_epc.pbo - 119459
 9:03:49 addons\missions_f_exp_a.pbo - 119459
 9:03:49 addons\missions_f_exp_a_data.pbo - 119459
 9:03:49 addons\missions_f_gamma.pbo - 119459
 9:03:49 addons\missions_f_gamma_data.pbo - 119459
 9:03:49 addons\missions_f_gamma_video.pbo - 119459
 9:03:49 addons\missions_f_video.pbo - 119459
 9:03:49 addons\modules_f.pbo - 120638
 9:03:49 addons\modules_f_beta.pbo - 119459
 9:03:49 addons\modules_f_beta_data.pbo - 119459
 9:03:49 addons\modules_f_bootcamp.pbo - 119459
 9:03:49 addons\modules_f_data.pbo - 119876
 9:03:49 addons\modules_f_epb.pbo - 119459
 9:03:49 addons\modules_f_exp_a.pbo - 119459
 9:03:49 addons\music_f.pbo - 119459
 9:03:49 addons\music_f_bootcamp.pbo - 119459
 9:03:49 addons\music_f_bootcamp_music.pbo - 119459
 9:03:49 addons\music_f_epa.pbo - 119459
 9:03:49 addons\music_f_epa_music.pbo - 119459
 9:03:49 addons\music_f_epb.pbo - 119459
 9:03:49 addons\music_f_epb_music.pbo - 119459
 9:03:49 addons\music_f_epc.pbo - 119459
 9:03:49 addons\music_f_epc_music.pbo - 119477
 9:03:49 addons\music_f_music.pbo - 119477
 9:03:49 addons\plants_f.pbo - 119459
 9:03:49 addons\props_f_exp_a.pbo - 119459
 9:03:49 addons\roads_f.pbo - 119459
 9:03:49 addons\rocks_f.pbo - 119459
 9:03:49 addons\signs_f.pbo - 119830
 9:03:49 addons\soft_f.pbo - 120215
 9:03:49 addons\soft_f_beta.pbo - 120215
 9:03:49 addons\soft_f_bootcamp.pbo - 119477
 9:03:49 addons\soft_f_epc.pbo - 119477
 9:03:49 addons\soft_f_gamma.pbo - 119477
 9:03:49 addons\sounds_f.pbo - 120111
 9:03:49 addons\sounds_f_arsenal.pbo - 119477
 9:03:49 addons\sounds_f_bootcamp.pbo - 119477
 9:03:49 addons\sounds_f_characters.pbo - 120908
 9:03:49 addons\sounds_f_environment.pbo - 120046
 9:03:49 addons\sounds_f_epb.pbo - 119864
 9:03:49 addons\sounds_f_epc.pbo - 119477
 9:03:49 addons\sounds_f_exp_a.pbo - 119477
 9:03:49 addons\sounds_f_sfx.pbo - 119477
 9:03:49 addons\sounds_f_vehicles.pbo - 119477
 9:03:49 addons\static_f.pbo - 119477
 9:03:49 addons\static_f_beta.pbo - 119478
 9:03:49 addons\static_f_gamma.pbo - 119478
 9:03:49 addons\structures_f.pbo - 120774
 9:03:49 addons\structures_f_bootcamp.pbo - 119478
 9:03:49 addons\structures_f_data.pbo - 119478
 9:03:49 addons\structures_f_epa.pbo - 119478
 9:03:49 addons\structures_f_epb.pbo - 119876
 9:03:49 addons\structures_f_epc.pbo - 119696
 9:03:49 addons\structures_f_exp_a.pbo - 119478
 9:03:49 addons\structures_f_households.pbo - 120412
 9:03:49 addons\structures_f_ind.pbo - 120412
 9:03:49 addons\structures_f_mil.pbo - 120412
 9:03:49 addons\structures_f_wrecks.pbo - 119478
 9:03:49 addons\uifonts_f.pbo - 119478
 9:03:49 addons\uifonts_f_data.pbo - 119478
 9:03:49 addons\ui_f.pbo - 120908
 9:03:49 addons\ui_f_bootcamp.pbo - 119478
 9:03:49 addons\ui_f_data.pbo - 120853
 9:03:49 addons\ui_f_exp_a.pbo - 119478
 9:03:49 addons\weapons_f.pbo - 120564
 9:03:49 addons\weapons_f_beta.pbo - 120252
 9:03:49 addons\weapons_f_bootcamp.pbo - 119478
 9:03:49 addons\weapons_f_epa.pbo - 120169
 9:03:49 addons\weapons_f_epb.pbo - 119478
 9:03:49 addons\weapons_f_epc.pbo - 119478
 9:03:49 addons\weapons_f_gamma.pbo - 120217
 9:03:49
 9:03:49 =======================
 9:03:49
 9:03:49 ============================================================================================= List of mods ===============================================================================================
 9:03:49 modsReadOnly = true
 9:03:49 safeModsActivated = false
 9:03:49 customMods = true
 9:03:49 hash = '4E2DA2DDAF1176B6797658D7DDE258356268C742'
 9:03:49 hashShort = 'ff32ba45'
 9:03:49                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath
 9:03:49 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 9:03:49                                  @ZombiesandDemons |    @ZombiesandDemons |      false |             GAME DIR | a8e40ba92bbdc0eed3beaad1536a841396a2083d |  62057cac | E:\cygwin\home\zap328164\g16762\a3exile\@ZombiesandDemons
 9:03:49                                          Exile Mod |               @Exile |      false |             GAME DIR | 4889db0a63d731985e5387b33e6e245812442446 |   16019b2 | E:\cygwin\home\zap328164\g16762\a3exile\@Exile
 9:03:49                                Arma 3 DLC Bundle 2 |           dlcbundle2 |       true |            NOT FOUND |                                          |           |
 9:03:49                                Arma 3 DLC Bundle 1 |            dlcbundle |       true |            NOT FOUND |                                          |           |
 9:03:49                                 Arma 3 Laws of War |               orange |       true |             GAME DIR | 7e920f8e3406b3afda01f707343b50e0dd863223 |  d8424fb9 | E:\cygwin\home\zap328164\g16762\a3exile\orange
 9:03:49                                      Arma 3 Malden |                 argo |       true |             GAME DIR | 2c7f31fc1da4a8ab70e1ee4ddeda7346a07966a8 |  e6b32192 | E:\cygwin\home\zap328164\g16762\a3exile\argo
 9:03:49                                        Arma 3 Jets |                 jets |       true |             GAME DIR | f20c53ebf56568e6db8fe4af12e8be24082aed8f |  2a31e008 | E:\cygwin\home\zap328164\g16762\a3exile\jets
 9:03:49                                        Arma 3 Apex |            expansion |       true |             GAME DIR | d74ba67e9d350ac1a7c1cd8f3d9cb090f4d93bfa |  4b654910 | E:\cygwin\home\zap328164\g16762\a3exile\expansion
 9:03:49                                    Arma 3 Marksmen |                 mark |       true |             GAME DIR | 45d1dd5383cf3b0fbea17a0fd8bcaeacf94d35d0 |  c29e927e | E:\cygwin\home\zap328164\g16762\a3exile\mark
 9:03:49                                 Arma 3 Helicopters |                 heli |       true |             GAME DIR | 4c9d33812524dd6667e778324eca8c03dcd45a58 |  26915ff6 | E:\cygwin\home\zap328164\g16762\a3exile\heli
 9:03:49                                       Arma 3 Karts |                 kart |       true |             GAME DIR | f23d62c84533cd2e072b9df19e13f2946db7c9a5 |  ce467b7a | E:\cygwin\home\zap328164\g16762\a3exile\kart
 9:03:49                                        Arma 3 Zeus |              curator |       true |             GAME DIR | c0fc624e3e7d3fa797929d3e19aaabe812299497 |  57f48148 | E:\cygwin\home\zap328164\g16762\a3exile\curator
 9:03:49                                             Arma 3 |                   A3 |       true |            NOT FOUND |                                          |           |
 9:03:49                                @AdminToolkitServer |  @AdminToolkitServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | E:\cygwin\home\zap328164\g16762\a3exile\@AdminToolkitServer
 9:03:49                                       @ExileServer |         @ExileServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer
 9:03:49 ==========================================================================================================================================================================================================
 9:03:49 InitSound ...
 9:03:49 InitSound - complete
 9:03:49 PhysX3 SDK Init started ...
 9:03:49 PhysX3 SDK Init ended.
 9:03:54 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
a3_characters_f
 9:03:54 Loading movesType CfgGesturesMale
 9:03:54 Creating action map cache
 9:03:54 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
 9:03:55 MovesType CfgGesturesMale load time 268 ms
 9:03:55 Loading movesType CfgMovesMaleSdr
 9:03:55 Reading cached action map data
 9:03:57 Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\sittingchair\hubsittingchaira_idle1.rtm differs (looped now 0)! MoveName: hubsittingchaira_idle1
 9:03:59 MovesType CfgMovesMaleSdr load time 4760 ms
 9:04:00 VoteThreshold must be in 0..1 range. Defaulting to 0.5
 9:04:00 Initializing Steam server - Game Port: 2344, Steam Query Port: 2345
 9:04:00 Steam AppId in current environment:
 9:04:00 Warning: Current Steam AppId:  doesn't match expected value: 107410
 9:04:01 Connected to Steam servers
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:33 Starting mission:
 9:04:33  Mission file: Exile (__cur_mp)
 9:04:33  Mission world: Altis
 9:04:33  Mission directory: mpmissions\__cur_mp.Altis\
 9:04:46 Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
 9:04:46 Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
 9:04:46 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
 9:04:46 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
 9:04:47 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire
 9:04:54 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:04:54 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:04:54 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:04:54 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [BIS_fnc_preload] ----- Initializing scripts in Exile -----"
 9:05:00 No speaker given for
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [recompile] recompile BIS_fnc_missionTasksLocal"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [recompile] recompile BIS_fnc_missionConversationsLocal"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [recompile] recompile BIS_fnc_missionFlow"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_feedbackMain (0.999451 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_missionHandlers (0 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_storeParamsValues (0.999451 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_getServerVariable (0 ms)"
 9:05:00 "[ADMINTOOLKIT] Initializing"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] AdminToolkit_fnc_preInit (4.00543 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] RyanZM_fnc_rzfunctionpreinit (2.99835 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [preInit] ExileClient_fnc_preInit (291 ms)"
 9:05:01 "ExileServer - Server is loading..."
 9:05:01 Client: Nonnetwork object 5d2c1300.
 9:05:01 CallExtension loaded: extDB2 (E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\extDB2.dll) [h%_]

 9:05:01 "ExileServer - Installed extDB2 version: 70"
 9:05:01 "ExileServer - Connected to database!"
 9:05:01 "ExileServer - Database protocol initialized!"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [preInit] ExileServer_fnc_preInit (625.999 ms)"
 9:05:01 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loading Configs at 0"
 9:05:01 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loaded all Configs at 0"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [preInit] exilez_mod_fnc_preInit (17.9977 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [script] initServer.sqf"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_missionFlow (0 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_initParams (0 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_initRespawn (0 ms)"
 9:05:01 "[ADMINTOOLKIT] Loading 'BUILDINGS'.."
 9:05:01 "[ADMINTOOLKIT] loaded successfully"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] AdminToolkit_fnc_postInit (0 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_reviveInit (0.999451 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] ExileClient_fnc_postInit (0 ms)"
 9:05:01 "ExileServer - Job with handle 10000 added."
 9:05:01 "ExileServer - Job with handle 10001 added."
 9:05:01 "ExileServer - Job with handle 10002 added."
 9:05:01 Weather was forced to change
 9:05:01 "ExileServer - Job with handle 10003 added."
 9:05:01 "ExileServer - Job with handle 10004 added."
 9:05:01 "ExileServer - Initializing game world..."
 9:05:01 "ExileServer - Loading families from database..."
 9:05:01 "ExileServer - Done loading families!"
 9:05:01 "ExileServer - Loading territories from database..."
 9:05:01 c:\w\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
 9:05:02 "ExileServer - Done loading territories!"
 9:05:02 "ExileServer - Loading constructions from database..."
 9:05:02 Attempt to override final function - bis_fnc_storeparamsvalues_data
 9:05:02 "ExileServer - Done loading constructions!"
 9:05:02 "ExileServer - Loading vehicles from database..."
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:03 "ExileServer - Done loading vehicles!"
 9:05:03 "ExileServer - Loading containers from database..."
 9:05:03 "ExileServer - Done loading containers!"
 9:05:03 "ExileServer - Creating spawn zone vehicles..."
 9:05:04 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:07 "ExileServer - Spawning Dynamic Vehicles. GridSize: 2200 Vehs/Grid: 2"
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Exile_Car_Octavius_White: IndicatorOil - unknown animation source oiltemp
 9:05:09 Exile_Car_Octavius_White: fuel - unknown animation source fuel_1
 9:05:09 Render target memory points PIP0_pos & PIP0_dir not found.
 9:05:09 : Invalid parent bone 'wheel_1_2' for 'wheel_1_2_hide'
 9:05:09 : Invalid parent bone 'wheel_2_2' for 'wheel_2_2_hide'
 9:05:13 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
 9:05:13 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
 9:05:13 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
 9:05:13 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
 9:05:13 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
 9:05:13 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
 9:05:17 "ExileServer - Dynamic vehicles spawned. Count : 229"
 9:05:17 "ExileServer - Game world initialized! Let the fun begin!"
 9:05:17 "ExileServer - There are no Russian Roulette chairs defined. Russian Roulette will not work!"
 9:05:17 "ExileServer - Server is up and running! Version: 1.0.3"
 9:05:17 "Lokaler Dienst/BIS_fnc_log: [postInit] ExileServer_fnc_postInit (15611 ms)"
 9:05:17 "ExileServer - Job with handle 10005 added."
 9:05:17 "ExileZ Mod: Added Zombie Monitor to ExileServer Thread"
 9:05:17 "ExileServer - Job with handle 10006 added."
 9:05:17 "ExileZ Mod: Added Dead Zombie Monitor to ExileServer Thread"
 9:05:17 "ExileServer - Job with handle 10007 added."
 9:05:17 "ExileZ Mod: Added Harassing Zombies Loop to ExileServer Thread"
 9:05:17 "ExileServer - Job with handle 10008 added."
 9:05:17 "ExileZ Mod: Added Horde Loop to ExileServer Thread"
 9:05:18 Exile_Cosmetic_MG: mainturret - unknown animation source mainturret
 9:05:18 Exile_Cosmetic_MG: maingun - unknown animation source maingun
 9:05:18 Exile_Cosmetic_MG: ammo_belt_rotation - unknown animation source reloadanim
 9:05:18 Exile_Cosmetic_MG: bolt_reload_begin - unknown animation source reloadmagazine
 9:05:18 Exile_Cosmetic_MG: muzzleflash - unknown animation source muzzle_source
 9:05:18 Exile_Cosmetic_MG: zaslehrot - unknown animation source muzzle_source_rot
 9:05:18 Exile_Cosmetic_MG: addautonomous_unhide - unknown animation source autonomous_unhide
 9:05:18 Exile_Cosmetic_MG: bullet001_reload_hide - unknown animation source revolving
 9:05:18 Exile_Cosmetic_UAV: rotorimpacthide - unknown animation source rotorhfullydestroyed
 9:05:18 Exile_Cosmetic_UAV: tailrotorimpacthide - unknown animation source tailrotorhfullydestroyed
 9:05:18 Exile_Cosmetic_UAV: propeller1_rotation - unknown animation source rotorh
 9:05:18 Exile_Cosmetic_UAV: propeller2_rotation - unknown animation source rotorv
 9:05:18 Exile_Cosmetic_UAV: propeller1_hide - unknown animation source rpm
 9:05:18 Exile_Cosmetic_UAV: mainturret - unknown animation source mainturret
 9:05:18 Exile_Cosmetic_UAV: maingun - unknown animation source maingun
 9:05:18 Land_Box_AmmoOld_F: ammo_hide - unknown animation source ammo_source
 9:05:18 Land_Box_AmmoOld_F: ammoord_hide - unknown animation source ammoord_source
 9:05:18 Land_Box_AmmoOld_F: grenades_hide - unknown animation source grenades_source
 9:05:18 Land_Box_AmmoOld_F: support_hide - unknown animation source support_source
 9:05:19 Could not load '\ExileScripts\serverRestartMessages.sqf'. Extension not listed in allowedLoadFileExtensions
 9:05:39 "Lokaler Dienst/BIS_fnc_log: [BIS_fnc_preload] ----- Scripts initialized at 38755 ms -----"
 9:05:40 "ExileServer - Player Preacher Maxwell (UID 76561198261886563) connected!"
 9:05:40  Mission id: b8748f45b824e78adb49f679b78d3242eb1afa11
 9:05:41 "ExileServer - Main thread started"
 9:06:01 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire
 9:06:01 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire
 9:06:11 "ExileServer - Starting session for 'Preacher Maxwell' with ID 'PRsThzFa'..."
 9:06:11 "[ADMINTOOLKIT] Calling login from player Preacher Maxwell"
 9:06:12 "ExileServer - Dispatching hasPlayerRequest for session 'PRsThzFa'..."
 9:06:14 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:06:14 Inventory item with given name: [Rangefinder] not found
 9:06:16 "ExileZ Mod: Turning off the lights.. SPOOKY!!"
 9:06:16 "ExileZ Mod: Version v1.5.6 - 13/10/17 Started at (5.379)"
 9:06:16 "Lokaler Dienst/BIS_fnc_log: [postInit] exilez_mod_fnc_postInit (59050 ms)"
 9:06:35 Error: Object(3 : 5) not found
 9:06:41 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:06:43 "ExileZ Mod: Monitored Zombies    |    0    "
 9:06:46 Error: Object(3 : 7) not found
 9:06:49 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:06:49 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:07:13 "ExileZ Mod: Monitored Zombies    |    0    "
 9:07:18 Error: Object(3 : 9) not found
 9:07:43 "ExileZ Mod: Monitored Zombies    |    0    "
 9:08:13 "ExileZ Mod: Monitored Zombies    |    0    "
 9:08:43 Error: Object(3 : 11) not found
 9:08:43 "ExileZ Mod: Monitored Zombies    |    0    "
 9:09:13 "ExileZ Mod: Monitored Zombies    |    0    "
 9:09:14 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:09:45 "ExileZ Mod: Monitored Zombies    |    0    "
 9:10:15 "ExileZ Mod: Monitored Zombies    |    0    "
 9:10:50 Error: Object(3 : 13) not found
 9:10:50 "ExileZ Mod: Monitored Zombies    |    0    "
 9:11:15 "ExileZ Mod: Monitored Dead Zombies    |    0    "
 9:11:20 "ExileZ Mod: Monitored Zombies    |    0    "
 9:11:50 "ExileZ Mod: Monitored Zombies    |    0    "
 9:12:16 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:12:22 "ExileZ Mod: Monitored Zombies    |    0    "
 9:12:52 "ExileZ Mod: Monitored Zombies    |    0    "
 9:13:22 "ExileZ Mod: Monitored Zombies    |    0    "
 9:13:52 "ExileZ Mod: Monitored Zombies    |    0    "
 9:14:22 "ExileZ Mod: Monitored Zombies    |    0    "
 9:14:58 "ExileZ Mod: Monitored Zombies    |    0    "
 9:15:18 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:15:29 "ExileZ Mod: Monitored Zombies    |    0    "
 9:15:30 "[ADMINTOOLKIT] Calling getitem from player Preacher Maxwell"
 9:15:31 Error: Object(3 : 17) not found
 9:15:59 "ExileZ Mod: Monitored Zombies    |    0    "
 9:16:20 "ExileZ Mod: Monitored Dead Zombies    |    0    "
 9:16:30 "ExileZ Mod: Monitored Zombies    |    0    "
 9:16:56 Error: Object(3 : 18) not found
 9:17:00 "ExileZ Mod: Monitored Zombies    |    0    "
 9:17:14 Error: Object(3 : 19) not found
 9:17:28 "[ADMINTOOLKIT] Calling getitem from player Preacher Maxwell"
 9:17:29 Error: Object(3 : 20) not found
 9:17:30 "ExileZ Mod: Monitored Zombies    |    0    "
 9:18:00 "ExileZ Mod: Monitored Zombies    |    0    "
 9:18:20 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:18:31 "ExileZ Mod: Monitored Zombies    |    0    "
 9:19:02 "ExileZ Mod: Monitored Zombies    |    0    "
 9:19:32 "ExileZ Mod: Monitored Zombies    |    0    "
 9:20:02 "ExileZ Mod: Monitored Zombies    |    0    "
 9:20:37 "ExileZ Mod: Monitored Zombies    |    0    "
 9:21:07 "ExileZ Mod: Monitored Zombies    |    0    "
 9:21:22 "ExileZ Mod: Monitored Dead Zombies    |    0    "
 9:21:22 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:21:39 "ExileZ Mod: Monitored Zombies    |    0    "
 9:22:09 "ExileZ Mod: Monitored Zombies    |    0    "
 9:22:39 "ExileZ Mod: Monitored Zombies    |    0    "
 9:23:09 "ExileZ Mod: Monitored Zombies    |    0    "
 9:23:39 "ExileZ Mod: Monitored Zombies    |    0    "
 9:24:09 "ExileZ Mod: Monitored Zombies    |    0    "
 9:24:25 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:24:41 "ExileZ Mod: Monitored Zombies    |    0    "
 9:25:11 "ExileZ Mod: Monitored Zombies    |    0    "
 9:25:46 "ExileZ Mod: Monitored Zombies    |    0    "

 

But it dont work. I changed only the text and put a time in there (9:20 to test it) and it dont make any message.

Need help

Edited by Bausparvertrag | NiceKype

Share this post


Link to post
Share on other sites

Sorry for very late reply!
I was busy at the past and i really don't think that it would creates a lot of question.
I read all comments, tested it again today with fresh Exile 1.0.4 Pineapple Windows 64-Bit server. Confirmed that its still working.
You don't need to change NOTHING on the code.

I updated the post only to post my new screenshots from today's test.

Its a very simple script, very easy install and no need to change nothing. Now i finally got time so i will answer all new questions.
Sorry for don't assist you in the past.

Share this post


Link to post
Share on other sites
On 5/2/2017 at 3:43 AM, M-RYS said:

Did you try this script on an Exile server?

  Reveal hidden contents

Screenshot+2016-01-09+13.28.53_cr.jpg

 

 

You don't need to ask that if u had read the post.
" I just modify small things to make it compatible with Exile mod. "

On 5/7/2017 at 8:29 AM, M-RYS said:

@HellBz... 

I guess you did not understand my question! I am not asking what operating system is used but rather what is the mode. The screenshot reveals that of wasteland ... is not it?

-.-
Those screen shots are from soul , the original author of this script made to work on wasteland mod.
Like I told before, i just adapt his script to work with Exile mod.

Today I tested this script with latest Exile 1.0.4 Pineapple build and its still working.
Now I take some screen shots for this test and post it here. You can see, it's Exile mod ;)

Edited by joew00

Share this post


Link to post
Share on other sites
On 5/2/2017 at 6:44 PM, HellBz said:

I Adapt this to Linux/Windows 86/64 bit with ExtDB 2/3

Reports come this day after many Tests

I Dont Know what is wrong

Errors:

I don't think this works on linux because it uses a windows dll to get the server's real time. 
And no need for adapts, work both with extdb2, extdb3 and both with win 32 bit servers, win 64 bit server.

Share this post


Link to post
Share on other sites
On 10/23/2017 at 4:17 AM, Bausparvertrag | NiceKype said:

@joew00 i put it on my server (Gameserver on Windows) and it dont make a error i think.

 

Error:

2:56:24 Could not load '\ExileScripts\serverRestartMessages.sqf'. Extension not listed in allowedLoadFileExtensions

Logfile:

  Reveal hidden contents

=====================================================================
== E:\cygwin\home\zap328164\g16762\a3exile\arma3server.exe
== E:\cygwin\home\zap328164\g16762\a3exile\arma3server.exe -ip=134.255.252.93 -port=2344 -config=config\server.cfg -cfg=config\basic.cfg -mod=@Exile;@ZombiesandDemons -servermod=@ExileServer;@AdminToolkitServer -profiles=config -loadMissionToMemory -enableHT

Original output filename: Arma3Retail_Server
Exe timestamp: 2017/10/04 15:05:28
Current time:  2017/10/23 09:03:21

Type: Public
Build: Stable
Version: 1.76.143187

Allocator: E:\cygwin\home\zap328164\g16762\a3exile\Dll\tbb4malloc_bi.dll [2017.0.0.0] [2017.0.0.0]
PhysMem: 160 GiB, VirtMem : 4.0 GiB, AvailPhys : 79 GiB, AvailVirt : 3.9 GiB, AvailPage : 85 GiB
=====================================================================

 9:03:21 Unable to initialize Steam API.
 9:03:21 SteamAPI initialization failed. Steam features won't be accessible!
 9:03:21 Cannot register unknown string STR_3DEN_CAMERA_NAME
 9:03:21 Initializing stats manager.
 9:03:21 Stats config disabled.
 9:03:21 sessionID: d7d58701a1854045f97335b551ebf7d00fe3246b
 9:03:45 Updating base class ->Wreck, by a3\data_f\config.bin/CfgVehicles/PlaneWreck/ (original a3\data_f\config.bin)
 9:03:45 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayEditObject/Controls/B_OK/ (original bin\config.bin)
 9:03:45 Updating base class RscSliderH->RscXSliderH, by a3\editor_f\config.bin/RscDisplayEditObject/Slider/ (original bin\config.bin)
 9:03:45 Updating base class RscText->RscPicture, by a3\editor_f\config.bin/RscDisplayEditObject/Preview/ (original bin\config.bin)
 9:03:45 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionLoad/Controls/B_OK/ (original bin\config.bin)
 9:03:45 Updating base class RscShortcutButton->RscButton, by a3\editor_f\config.bin/RscDisplayMissionSave/Controls/B_OK/ (original bin\config.bin)
 9:03:46 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoScrollbars/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoHScrollbars/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscControlsGroup, by a3\ui_f\config.bin/RscControlsGroupNoVScrollbars/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscLine/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscActiveText, by a3\ui_f\config.bin/RscActivePicture/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButton, by a3\ui_f\config.bin/RscButtonTextOnly/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscShortcutButtonMain/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonEditor/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscIGUIShortcutButton/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscGearShortcutButton/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscShortcutButton, by a3\ui_f\config.bin/RscButtonMenu/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuOK/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuCancel/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButtonMenu, by a3\ui_f\config.bin/RscButtonMenuSteam/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscLoadingText/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscListBox, by a3\ui_f\config.bin/RscIGUIListBox/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscListNBox, by a3\ui_f\config.bin/RscIGUIListNBox/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackground/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUI/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUILeft/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIRight/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscBackgroundGUIBottom/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUITop/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscBackgroundGUIDark/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/RscBackgroundLogo/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscMapControl, by a3\ui_f\config.bin/RscMapControlEmpty/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/CA_Mainback/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Back/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Title_Back/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Mainback, by a3\ui_f\config.bin/CA_Black_Back/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscTitle, by a3\ui_f\config.bin/CA_Title/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPictureKeepAspect, by a3\ui_f\config.bin/CA_Logo/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_Logo, by a3\ui_f\config.bin/CA_Logo_Small/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscButton, by a3\ui_f\config.bin/CA_RscButton/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->CA_RscButton, by a3\ui_f\config.bin/CA_RscButton_dialog/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscActiveText, by a3\ui_f\config.bin/CA_Ok/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_image2/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/CA_Ok_text/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscPicture, by a3\ui_f\config.bin/RscVignette/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class ->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscMapControlTooltip/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3\ui_f\config.bin/RscInGameUI/RscUnitInfoAir/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_OK/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Cancel/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayDebug/Controls/B_Clear/ (original bin\config.bin)
 9:03:46 Updating base class ->RscText, by a3\ui_f\config.bin/RscDisplayCapture/controls/TimeLines/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonAverages/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonSavePreviousData/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCapture/controls/ButtonPreviousData/ (original bin\config.bin)
 9:03:46 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/IconPicture/ (original bin\config.bin)
 9:03:46 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcOwnedIconPicture/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class IconPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayMain/DlcIconPicture/ (original a3\ui_f\config.bin)
 9:03:46 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/OverviewGroup/ (original bin\config.bin)
 9:03:46 Updating base class RscButton->RscButtonSearch, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/SearchButton/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenu, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonRevert/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayCampaignLoad/controls/ButtonOK/ (original bin\config.bin)
 9:03:46 Updating base class RscListBox->RscCombo, by a3\ui_f\config.bin/RscDisplayCustomizeController/Steepness/ (original bin\config.bin)
 9:03:46 Updating base class ->RscStandardDisplay, by a3\ui_f\config.bin/RscDisplayControlSchemes/ (original bin\config.bin)
 9:03:46 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class RscButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayControlSchemes/controls/ButtonOK/ (original bin\config.bin)
 9:03:46 Updating base class RscPicture->RscPictureKeepAspect, by a3\ui_f\config.bin/RscDisplayFileSelectImage/controls/OverviewPicture/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayFieldManual/Controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).
 9:03:46 Updating base class RscButton->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMission/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class RscShortcutButton->RscButtonMenuOK, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/ (original bin\config.bin)
 9:03:46 Updating base class ButtonOK->RscButtonMenuCancel, by a3\ui_f\config.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/ (original bin\config.bin)
 9:03:46 Updating base class ->RscSubmenu, by a3\ui_f\config.bin/RscMainMenu/ (original bin\config.bin)
 9:03:46 Updating base class None->ActiveSensorsOn, by a3\ui_f\config.bin/CfgActions/ActiveSensorsOff/ (original bin\config.bin)
 9:03:46 Updating base class None->ListRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class None->ListPrevRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class None->CloseRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class None->NextModeRightVehicleDisplay, by a3\ui_f\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
 9:03:46 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceMid/ (original bin\config.bin)
 9:03:46 Updating base class ->DistanceClose, by a3\ui_f\config.bin/CfgSimpleTasks/Icon3D/DistanceLong/ (original bin\config.bin)
 9:03:46 Updating base class ->VehicleMagazine, by a3\weapons_f\config.bin/CfgMagazines/24Rnd_missiles/ (original a3\weapons_f\config.bin)
 9:03:46 Updating base class ->RocketPods, by a3\weapons_f\config.bin/CfgWeapons/missiles_DAR/ (original a3\weapons_f\config.bin)
 9:03:47 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStatic/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlDefaultText, by a3\3den\config.bin/ctrlStructuredText/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlControlsGroup, by a3\3den\config.bin/ctrlControlsGroupNoScrollbars/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlDefault, by a3\3den\config.bin/ctrlCheckbox/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlCheckbox, by a3\3den\config.bin/ctrlCheckboxBaseline/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisable, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/ (original a3\3den\config.bin)
 9:03:47 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a3\3den\config.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/ (original a3\3den\config.bin)
 9:03:47 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_2/Controls/ (original a3\ui_f\config.bin)
 9:03:47 Updating base class controls->, by a3\3den\config.bin/RscDisplayArcadeMap_Layout_6/Controls/ (original a3\ui_f\config.bin)
 9:03:47 Updating base class ->ctrlControlsGroupNoScrollbars, by a3\3den\config.bin/Cfg3DEN/Attributes/Default/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlStatic, by a3\3den\config.bin/Cfg3DEN/Attributes/Title/Controls/Title/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->Controls, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/ (original a3\modules_f\config.bin)
 9:03:47 Updating base class ->Title, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Title/ (original a3\3den\config.bin)
 9:03:47 Updating base class ->ctrlToolbox, by a3\3den\config.bin/Cfg3DEN/Attributes/Toolbox/Controls/Value/ (original a3\3den\config.bin)
 9:03:47 Updating base class ListRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 Updating base class ListPrevRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/ListPrevLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 Updating base class CloseRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/CloseLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 Updating base class NextModeRightVehicleDisplay->None, by exile_client\config.bin/CfgActions/NextModeLeftVehicleDisplay/ (original bin\config.bin)
 9:03:47 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)
 9:03:47 Cannot delete class BackgroundSlotPrimary, it is referenced somewhere (used as a base class probably).
 9:03:47 Updating base class RscStandardDisplay->, by exile_client\config.bin/RscDisplayMain/ (original bin\config.bin)
 9:03:47 Updating base class RscPicture->RscText, by exile_client\config.bin/RscDisplayVoiceChat/controls/Picture/ (original a3\ui_f\config.bin)
 9:03:47 Updating base class ->Plane, by exile_psycho_an2\config.bin/CfgVehicles/an2_base/ (original exile_psycho_an2\config.bin)
 9:03:47 Updating base class ->BRDM2_HQ_Base, by exile_psycho_brdm\config.bin/CfgVehicles/BRDM2_HQ_CHDKZ/ (original exile_psycho_brdm\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_MG_base_EP1/ (original exile_psycho_btr40\config.bin)
 9:03:47 Updating base class ->BTR40_MG_base_EP1, by exile_psycho_btr40\config.bin/CfgVehicles/BTR40_base_EP1/ (original exile_psycho_btr40\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_gaz_volha\config.bin/CfgVehicles/volha_Base/ (original exile_psycho_gaz_volha\config.bin)
 9:03:47 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M2/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_M134/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->HMMWV_Base, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_UNA/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->HMMWV_UNA, by exile_psycho_hmmw\config.bin/CfgVehicles/HMMWV_MEV/ (original exile_psycho_hmmw\config.bin)
 9:03:47 Updating base class ->Ikarus_Base, by exile_psycho_ikarus\config.bin/CfgVehicles/Ikarus_Civ_02/ (original exile_psycho_ikarus\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_lada\config.bin/CfgVehicles/Lada_Base/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/Landrover_Civ_02/ (original exile_psycho_lrc\config.bin)
 9:03:47 Updating base class ->Landrover_civ, by exile_psycho_lrc\config.bin/CfgVehicles/LR_Ambulance_Base/ (original exile_psycho_lrc\config.bin)
 9:03:47 Updating base class ->Octavia_Base, by exile_psycho_octavia\config.bin/CfgVehicles/Octavia_Civ_01/ (original exile_psycho_octavia\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_suv_a3\config.bin/CfgVehicles/SUV_Base/ (original exile_psycho_suv_a3\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_suvarm_a3\config.bin/cfgVehicles/SUV_armored_Base/ (original exile_psycho_suvarm_a3\config.bin)
 9:03:47 Updating base class ->Car_F, by exile_psycho_tractor\config.bin/CfgVehicles/Tractor_Base/ (original exile_psycho_tractor\config.bin)
 9:03:47 Updating base class ->Tractor_Base, by exile_psycho_tractor\config.bin/CfgVehicles/tractorOld/ (original exile_psycho_tractor\config.bin)
 9:03:47 Updating base class ->Offroad_01_base_F, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Base/ (original exile_psycho_uaz\config.bin)
 9:03:47 Updating base class ->UAZ_Base, by exile_psycho_uaz\config.bin/CfgVehicles/UAZ_Open_Base/ (original exile_psycho_uaz\config.bin)
 9:03:47 Updating base class ->UH1H_Closed, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_Clo/ (original exile_psycho_uh1h\config.bin)
 9:03:47 Updating base class ->UH1HL_base, by exile_psycho_uh1h\config.bin/CfgVehicles/UH1H_M240/ (original exile_psycho_uh1h\config.bin)
 9:03:47 Updating base class ->Ural_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_RU/ (original exile_psycho_ural\config.bin)
 9:03:47 Updating base class ->Ural_Open_Base, by exile_psycho_ural\config.bin/CfgVehicles/Ural_Open_RU/ (original exile_psycho_ural\config.bin)
 9:03:47 Updating base class ->Truck_F, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_base/ (original exile_psycho_v3s\config.bin)
 9:03:47 Updating base class ->V3S_base, by exile_psycho_v3s\config.bin/CfgVehicles/V3S_Base_EP1/ (original exile_psycho_v3s\config.bin)
 9:03:47 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo01/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo02/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class KIA_Golf_Driver->DefaultDie, by exile_psycho_vwgolf\config.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo03/ (original exile_psycho_lada\config.bin)
 9:03:47 Updating base class ->Golf_Base, by exile_psycho_vwgolf\config.bin/CfgVehicles/Golf_Civ_Base/ (original exile_psycho_vwgolf\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->arifle_AKM, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_AKS/ (original exile_psycho_weapons\arifle\ak\config.bin)
 9:03:47 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)
 9:03:47 Updating base class ->arifle_AK74, by exile_psycho_weapons\arifle\ak\config.bin/CfgWeapons/arifle_RPK74/ (original exile_psycho_weapons\arifle\ak\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->CA_Magazine, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/10Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
 9:03:47 Updating base class ->10Rnd_765x17ball, by exile_psycho_weapons\arifle\sa61\config.bin/CfgMagazines/20Rnd_765x17ball/ (original exile_psycho_weapons\arifle\sa61\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->PKP, by exile_psycho_weapons\mgun\pk\config.bin/CfgWeapons/Pecheneg/ (original exile_psycho_weapons\mgun\pk\config.bin)
 9:03:47 Updating base class ShotgunBase->BulletBase, by exile_psycho_weapons\other\m1014\config.bin/CfgAmmo/B_12Gauge_Pellets/ (original a3\weapons_f\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\other\m1014\config.bin/CfgWeapons/M1014/ (original exile_psycho_weapons\other\m1014\config.bin)
 9:03:47 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)
 9:03:47 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\colt1911\config.bin/CfgWeapons/Colt1911/ (original exile_psycho_weapons\pistol\colt1911\config.bin)
 9:03:47 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)
 9:03:47 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\makarov\config.bin/CfgWeapons/Makarov/ (original exile_psycho_weapons\pistol\makarov\config.bin)
 9:03:47 Updating base class ->CA_Magazine, by exile_psycho_weapons\pistol\revolver\config.bin/CfgMagazines/6Rnd_45ACP/ (original exile_psycho_weapons\pistol\revolver\config.bin)
 9:03:47 Updating base class ->Pistol_Base_F, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455/ (original exile_psycho_weapons\pistol\revolver\config.bin)
 9:03:47 Updating base class ->TaurusTracker455, by exile_psycho_weapons\pistol\revolver\config.bin/CfgWeapons/TaurusTracker455_gold/ (original exile_psycho_weapons\pistol\revolver\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class ->Rifle_Base_F, by exile_psycho_weapons\srifle\ksvk\config.bin/CfgWeapons/ksvk/ (original exile_psycho_weapons\srifle\ksvk\config.bin)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 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)
 9:03:47 Updating base class I_1stRegiment->BaseGuer, by a3\missions_f_orange\config.bin/CfgORBAT/BIS/I_3rdRegiment/ (original a3\missions_f_epa\config.bin)
 9:03:48 Updating base class CounterMeasureFlare->, by a3\weapons_f_orange\config.bin/FlareShell/ (original a3\weapons_f_orange\config.bin)
 9:03:49 Initializing Steam Manager
 9:03:49 unable to load subscribed content list. list will be updated from steam
 9:03:49 unable to load published content list. list will be updated from steam
 9:03:49 unable to load cached items meta info. save and update functionality will be broken
 9:03:49 Steam Manager initialized.
 9:03:49
 9:03:49 ==== Loaded addons ====
 9:03:49
 9:03:49 dta\bin.pbo - 143187
 9:03:49 dta\core.pbo - 109319
 9:03:49 dta\languagecore_f.pbo - 121648
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ZombiesandDemons\addons\ryanzombies.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\dbo_old_bike.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_assets.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_client.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_danny_items.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_an2.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_brdm.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_btr40.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_gaz_volha.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_hmmw.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_ikarus.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_lada.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_lrc.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_octavia.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_suvarm_a3.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_suv_a3.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_towtractor.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_tractor.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_uaz.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_uh1h.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_ural.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_v3s.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_vwgolf.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\exile_psycho_weapons.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@Exile\addons\gnt_c185.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\air_f_orange.ebo - 120908
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\cargoposes_f_orange.ebo - 119856
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\characters_f_orange.ebo - 120638
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\data_f_orange.ebo - 121000
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\dubbing_f_orange.ebo - 120451
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\editorpreviews_f_orange.ebo - 120509
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\functions_f_orange.ebo - 120507
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\languagemissions_f_orange.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\language_f_orange.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\missions_f_orange.ebo - 121000
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\modules_f_orange.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\music_f_orange.ebo - 120725
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\props_f_orange.ebo - 120507
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\soft_f_orange.ebo - 120850
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\sounds_f_orange.ebo - 120744
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\structures_f_orange.ebo - 120466
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\supplies_f_orange.ebo - 120744
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\ui_f_orange.ebo - 121000
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\orange\addons\weapons_f_orange.ebo - 120800
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\armor_f_argo.pbo - 119456
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\characters_f_patrol.pbo - 120167
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\data_f_argo.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\data_f_patrol.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\editorpreviews_f_argo.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\functions_f_patrol.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\languagemissions_f_patrol.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\language_f_argo.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\language_f_patrol.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden.pbo - 119509
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden_data_layers.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\map_malden_scenes_f.pbo - 120026
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\missions_f_patrol.pbo - 120235
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\modules_f_patrol.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\props_f_argo.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\rocks_f_argo.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\sounds_f_patrol.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\structures_f_argo.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\ui_f_patrol.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\vegetation_f_argo.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\argo\addons\weapons_f_patrol.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\air_f_jets.ebo - 120400
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\anims_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\boat_f_jets.ebo - 120467
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\cargoposes_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\characters_f_jets.ebo - 120162
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\data_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\dubbing_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\editorpreviews_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\functions_f_jets.ebo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\languagemissions_f_jets.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\language_f_jets.ebo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\missions_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\modules_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\music_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\props_f_jets.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\sounds_f_jets.ebo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\static_f_jets.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\ui_f_jets.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\jets\addons\weapons_f_jets.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\air_f_exp.pbo - 120400
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\anims_f_exp.pbo - 119456
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\armor_f_exp.pbo - 119456
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\boat_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\cargoposes_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\characters_f_exp.pbo - 120215
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\data_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp.pbo - 119458
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp_data_chi.pbo - 119458
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp_data_engfre.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\dubbing_radio_f_exp_data_fre.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\editorpreviews_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\functions_f_exp.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\languagemissions_f_exp.pbo - 120957
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\language_f_exp.pbo - 120957
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_data_exp.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka.ebo - 119502
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka_data.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka_data_layers.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoabuka_data_layers_00_00.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\map_tanoa_scenes_f.ebo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\missions_f_exp.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\missions_f_exp_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\missions_f_exp_video.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\modules_f_exp.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\music_f_exp.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\music_f_exp_music.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\props_f_exp.pbo - 119920
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\rocks_f_exp.ebo - 119519
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\soft_f_exp.pbo - 120293
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\sounds_f_exp.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\static_f_exp.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp.ebo - 119491
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_civilian.ebo - 119500
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_commercial.ebo - 120412
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_cultural.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_data.ebo - 119491
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_industrial.ebo - 119492
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\structures_f_exp_infrastructure.ebo - 119491
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\supplies_f_exp.pbo - 119865
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\ui_f_exp.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\vegetation_f_exp.ebo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\expansion\addons\weapons_f_exp.pbo - 120461
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\anims_f_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\characters_f_mark.pbo - 120163
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\data_f_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\dubbing_f_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\dubbing_f_mp_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\functions_f_mark.pbo - 120411
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\functions_f_mp_mark.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\languagemissions_f_mark.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\languagemissions_f_mp_mark.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\language_f_mark.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\language_f_mp_mark.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mark_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mark_video.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mp_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\missions_f_mp_mark_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\modules_f_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\modules_f_mp_mark.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\music_f_mark.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\music_f_mark_music.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\sounds_f_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\static_f_mark.pbo - 120168
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\structures_f_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\supplies_f_mark.pbo - 120112
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\ui_f_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\ui_f_mp_mark.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\mark\addons\weapons_f_mark.pbo - 119728
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\air_f_heli.pbo - 120400
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\anims_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\boat_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\cargoposes_f_heli.pbo - 119551
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\data_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\dubbing_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\functions_f_heli.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\languagemissions_f_heli.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\language_f_heli.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\missions_f_heli.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\missions_f_heli_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\missions_f_heli_video.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\modules_f_heli.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\music_f_heli.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\music_f_heli_music.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\soft_f_heli.pbo - 119477
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\sounds_f_heli.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\structures_f_heli.pbo - 120392
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\supplies_f_heli.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\heli\addons\ui_f_heli.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\anims_f_kart.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\characters_f_kart.pbo - 120162
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\data_f_kart.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\languagemissions_f_kart.pbo - 120957
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\language_f_kart.pbo - 120958
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\missions_f_kart.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\missions_f_kart_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\modules_f_kart.pbo - 119510
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\modules_f_kart_data.pbo - 119459
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\soft_f_kart.pbo - 120078
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\sounds_f_kart.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\structures_f_kart.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\ui_f_kart.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\kart\addons\weapons_f_kart.pbo - 120217
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\data_f_curator.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\data_f_curator_music.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\functions_f_curator.pbo - 119457
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\language_f_curator.pbo - 120959
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\missions_f_curator.pbo - 120280
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\modules_f_curator.pbo - 120244
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\curator\addons\ui_f_curator.pbo - 119478
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@AdminToolkitServer\addons\admintoolkit_server.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@AdminToolkitServer\addons\admintoolkit_servercfg.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\addons\exilez_mod.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\addons\exile_server.pbo - unknown
 9:03:49 E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\addons\exile_server_config.pbo - unknown
 9:03:49 addons\3den.pbo - 120847
 9:03:49 addons\3den_language.pbo - 120957
 9:03:49 addons\a3.pbo - unknown
 9:03:49 addons\air_f.pbo - 120400
 9:03:49 addons\air_f_beta.pbo - 120400
 9:03:49 addons\air_f_epb.pbo - 120400
 9:03:49 addons\air_f_epc.pbo - 120400
 9:03:49 addons\air_f_gamma.pbo - 120400
 9:03:49 addons\animals_f.pbo - 120965
 9:03:49 addons\animals_f_beta.pbo - 119502
 9:03:49 addons\anims_f.pbo - 119864
 9:03:49 addons\anims_f_bootcamp.pbo - 119456
 9:03:49 addons\anims_f_data.pbo - 119456
 9:03:49 addons\anims_f_epa.pbo - 119456
 9:03:49 addons\anims_f_epc.pbo - 119456
 9:03:49 addons\anims_f_exp_a.pbo - 119456
 9:03:49 addons\armor_f.pbo - 119457
 9:03:49 addons\armor_f_beta.pbo - 119632
 9:03:49 addons\armor_f_epb.pbo - 119456
 9:03:49 addons\armor_f_epc.pbo - 119456
 9:03:49 addons\armor_f_gamma.pbo - 119456
 9:03:49 addons\baseconfig_f.pbo - 119457
 9:03:49 addons\boat_f.pbo - 119457
 9:03:49 addons\boat_f_beta.pbo - 119457
 9:03:49 addons\boat_f_epc.pbo - 119457
 9:03:49 addons\boat_f_gamma.pbo - 119864
 9:03:49 addons\cargoposes_f.pbo - 119457
 9:03:49 addons\characters_f.pbo - 120215
 9:03:49 addons\characters_f_beta.pbo - 119457
 9:03:49 addons\characters_f_bootcamp.pbo - 120161
 9:03:49 addons\characters_f_epa.pbo - 120161
 9:03:49 addons\characters_f_epb.pbo - 120161
 9:03:49 addons\characters_f_epc.pbo - 120161
 9:03:49 addons\characters_f_gamma.pbo - 120293
 9:03:49 addons\data_f.pbo - 120392
 9:03:49 addons\data_f_bootcamp.pbo - 119457
 9:03:49 addons\data_f_exp_a.pbo - 119457
 9:03:49 addons\data_f_exp_b.pbo - 119457
 9:03:49 addons\drones_f.pbo - 120774
 9:03:49 addons\dubbing_f.pbo - 119457
 9:03:49 addons\dubbing_f_beta.pbo - 119457
 9:03:49 addons\dubbing_f_bootcamp.pbo - 119457
 9:03:49 addons\dubbing_f_epa.pbo - 119457
 9:03:49 addons\dubbing_f_epb.pbo - 119457
 9:03:49 addons\dubbing_f_epc.pbo - 119457
 9:03:49 addons\dubbing_f_gamma.pbo - 119457
 9:03:49 addons\dubbing_radio_f.pbo - 119457
 9:03:49 addons\dubbing_radio_f_data_eng.pbo - 119457
 9:03:49 addons\dubbing_radio_f_data_engb.pbo - 119458
 9:03:49 addons\dubbing_radio_f_data_gre.pbo - 119458
 9:03:49 addons\dubbing_radio_f_data_per.pbo - 119458
 9:03:49 addons\dubbing_radio_f_data_vr.pbo - 119458
 9:03:49 addons\editorpreviews_f.pbo - 120010
 9:03:49 addons\editor_f.pbo - 119458
 9:03:49 addons\functions_f.pbo - 120853
 9:03:49 addons\functions_f_bootcamp.pbo - 119457
 9:03:49 addons\functions_f_epa.pbo - 119458
 9:03:49 addons\functions_f_epc.pbo - 119458
 9:03:49 addons\functions_f_exp_a.pbo - 119457
 9:03:49 addons\languagemissions_f.pbo - 120957
 9:03:49 addons\languagemissions_f_beta.pbo - 120957
 9:03:49 addons\languagemissions_f_bootcamp.pbo - 120958
 9:03:49 addons\languagemissions_f_epa.pbo - 120958
 9:03:49 addons\languagemissions_f_epb.pbo - 120957
 9:03:49 addons\languagemissions_f_epc.pbo - 120957
 9:03:49 addons\languagemissions_f_exp_a.pbo - 120959
 9:03:49 addons\languagemissions_f_gamma.pbo - 120958
 9:03:49 addons\language_f.pbo - 120958
 9:03:49 addons\language_f_beta.pbo - 120959
 9:03:49 addons\language_f_bootcamp.pbo - 120958
 9:03:49 addons\language_f_epa.pbo - 120957
 9:03:49 addons\language_f_epb.pbo - 120958
 9:03:49 addons\language_f_epc.pbo - 120957
 9:03:49 addons\language_f_exp_a.pbo - 120957
 9:03:49 addons\language_f_exp_b.pbo - 120957
 9:03:49 addons\language_f_gamma.pbo - 120958
 9:03:49 addons\map_altis.pbo - 0000
 9:03:49 addons\map_altis_data.pbo - 119509
 9:03:49 addons\map_altis_data_layers.pbo - 119459
 9:03:49 addons\map_altis_data_layers_00_00.pbo - 0000
 9:03:49 addons\map_altis_data_layers_00_01.pbo - 0000
 9:03:49 addons\map_altis_data_layers_01_00.pbo - 0000
 9:03:49 addons\map_altis_data_layers_01_01.pbo - 0000
 9:03:49 addons\map_altis_scenes_f.pbo - 119459
 9:03:49 addons\map_data.pbo - 119459
 9:03:49 addons\map_stratis.pbo - 119508
 9:03:49 addons\map_stratis_data.pbo - 119459
 9:03:49 addons\map_stratis_data_layers.pbo - 119459
 9:03:49 addons\map_stratis_scenes_f.pbo - 119459
 9:03:49 addons\map_vr.pbo - 105264
 9:03:49 addons\map_vr_scenes_f.pbo - 119459
 9:03:49 addons\misc_f.pbo - 119459
 9:03:49 addons\missions_f.pbo - 119459
 9:03:49 addons\missions_f_beta.pbo - 119616
 9:03:49 addons\missions_f_beta_data.pbo - 119459
 9:03:49 addons\missions_f_beta_video.pbo - 119459
 9:03:49 addons\missions_f_bootcamp.pbo - 119459
 9:03:49 addons\missions_f_bootcamp_data.pbo - 119459
 9:03:49 addons\missions_f_bootcamp_video.pbo - 119459
 9:03:49 addons\missions_f_data.pbo - 119459
 9:03:49 addons\missions_f_epa.pbo - 120704
 9:03:49 addons\missions_f_epa_data.pbo - 119459
 9:03:49 addons\missions_f_epa_video.pbo - 119459
 9:03:49 addons\missions_f_epb.pbo - 119459
 9:03:49 addons\missions_f_epc.pbo - 119459
 9:03:49 addons\missions_f_exp_a.pbo - 119459
 9:03:49 addons\missions_f_exp_a_data.pbo - 119459
 9:03:49 addons\missions_f_gamma.pbo - 119459
 9:03:49 addons\missions_f_gamma_data.pbo - 119459
 9:03:49 addons\missions_f_gamma_video.pbo - 119459
 9:03:49 addons\missions_f_video.pbo - 119459
 9:03:49 addons\modules_f.pbo - 120638
 9:03:49 addons\modules_f_beta.pbo - 119459
 9:03:49 addons\modules_f_beta_data.pbo - 119459
 9:03:49 addons\modules_f_bootcamp.pbo - 119459
 9:03:49 addons\modules_f_data.pbo - 119876
 9:03:49 addons\modules_f_epb.pbo - 119459
 9:03:49 addons\modules_f_exp_a.pbo - 119459
 9:03:49 addons\music_f.pbo - 119459
 9:03:49 addons\music_f_bootcamp.pbo - 119459
 9:03:49 addons\music_f_bootcamp_music.pbo - 119459
 9:03:49 addons\music_f_epa.pbo - 119459
 9:03:49 addons\music_f_epa_music.pbo - 119459
 9:03:49 addons\music_f_epb.pbo - 119459
 9:03:49 addons\music_f_epb_music.pbo - 119459
 9:03:49 addons\music_f_epc.pbo - 119459
 9:03:49 addons\music_f_epc_music.pbo - 119477
 9:03:49 addons\music_f_music.pbo - 119477
 9:03:49 addons\plants_f.pbo - 119459
 9:03:49 addons\props_f_exp_a.pbo - 119459
 9:03:49 addons\roads_f.pbo - 119459
 9:03:49 addons\rocks_f.pbo - 119459
 9:03:49 addons\signs_f.pbo - 119830
 9:03:49 addons\soft_f.pbo - 120215
 9:03:49 addons\soft_f_beta.pbo - 120215
 9:03:49 addons\soft_f_bootcamp.pbo - 119477
 9:03:49 addons\soft_f_epc.pbo - 119477
 9:03:49 addons\soft_f_gamma.pbo - 119477
 9:03:49 addons\sounds_f.pbo - 120111
 9:03:49 addons\sounds_f_arsenal.pbo - 119477
 9:03:49 addons\sounds_f_bootcamp.pbo - 119477
 9:03:49 addons\sounds_f_characters.pbo - 120908
 9:03:49 addons\sounds_f_environment.pbo - 120046
 9:03:49 addons\sounds_f_epb.pbo - 119864
 9:03:49 addons\sounds_f_epc.pbo - 119477
 9:03:49 addons\sounds_f_exp_a.pbo - 119477
 9:03:49 addons\sounds_f_sfx.pbo - 119477
 9:03:49 addons\sounds_f_vehicles.pbo - 119477
 9:03:49 addons\static_f.pbo - 119477
 9:03:49 addons\static_f_beta.pbo - 119478
 9:03:49 addons\static_f_gamma.pbo - 119478
 9:03:49 addons\structures_f.pbo - 120774
 9:03:49 addons\structures_f_bootcamp.pbo - 119478
 9:03:49 addons\structures_f_data.pbo - 119478
 9:03:49 addons\structures_f_epa.pbo - 119478
 9:03:49 addons\structures_f_epb.pbo - 119876
 9:03:49 addons\structures_f_epc.pbo - 119696
 9:03:49 addons\structures_f_exp_a.pbo - 119478
 9:03:49 addons\structures_f_households.pbo - 120412
 9:03:49 addons\structures_f_ind.pbo - 120412
 9:03:49 addons\structures_f_mil.pbo - 120412
 9:03:49 addons\structures_f_wrecks.pbo - 119478
 9:03:49 addons\uifonts_f.pbo - 119478
 9:03:49 addons\uifonts_f_data.pbo - 119478
 9:03:49 addons\ui_f.pbo - 120908
 9:03:49 addons\ui_f_bootcamp.pbo - 119478
 9:03:49 addons\ui_f_data.pbo - 120853
 9:03:49 addons\ui_f_exp_a.pbo - 119478
 9:03:49 addons\weapons_f.pbo - 120564
 9:03:49 addons\weapons_f_beta.pbo - 120252
 9:03:49 addons\weapons_f_bootcamp.pbo - 119478
 9:03:49 addons\weapons_f_epa.pbo - 120169
 9:03:49 addons\weapons_f_epb.pbo - 119478
 9:03:49 addons\weapons_f_epc.pbo - 119478
 9:03:49 addons\weapons_f_gamma.pbo - 120217
 9:03:49
 9:03:49 =======================
 9:03:49
 9:03:49 ============================================================================================= List of mods ===============================================================================================
 9:03:49 modsReadOnly = true
 9:03:49 safeModsActivated = false
 9:03:49 customMods = true
 9:03:49 hash = '4E2DA2DDAF1176B6797658D7DDE258356268C742'
 9:03:49 hashShort = 'ff32ba45'
 9:03:49                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath
 9:03:49 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 9:03:49                                  @ZombiesandDemons |    @ZombiesandDemons |      false |             GAME DIR | a8e40ba92bbdc0eed3beaad1536a841396a2083d |  62057cac | E:\cygwin\home\zap328164\g16762\a3exile\@ZombiesandDemons
 9:03:49                                          Exile Mod |               @Exile |      false |             GAME DIR | 4889db0a63d731985e5387b33e6e245812442446 |   16019b2 | E:\cygwin\home\zap328164\g16762\a3exile\@Exile
 9:03:49                                Arma 3 DLC Bundle 2 |           dlcbundle2 |       true |            NOT FOUND |                                          |           |
 9:03:49                                Arma 3 DLC Bundle 1 |            dlcbundle |       true |            NOT FOUND |                                          |           |
 9:03:49                                 Arma 3 Laws of War |               orange |       true |             GAME DIR | 7e920f8e3406b3afda01f707343b50e0dd863223 |  d8424fb9 | E:\cygwin\home\zap328164\g16762\a3exile\orange
 9:03:49                                      Arma 3 Malden |                 argo |       true |             GAME DIR | 2c7f31fc1da4a8ab70e1ee4ddeda7346a07966a8 |  e6b32192 | E:\cygwin\home\zap328164\g16762\a3exile\argo
 9:03:49                                        Arma 3 Jets |                 jets |       true |             GAME DIR | f20c53ebf56568e6db8fe4af12e8be24082aed8f |  2a31e008 | E:\cygwin\home\zap328164\g16762\a3exile\jets
 9:03:49                                        Arma 3 Apex |            expansion |       true |             GAME DIR | d74ba67e9d350ac1a7c1cd8f3d9cb090f4d93bfa |  4b654910 | E:\cygwin\home\zap328164\g16762\a3exile\expansion
 9:03:49                                    Arma 3 Marksmen |                 mark |       true |             GAME DIR | 45d1dd5383cf3b0fbea17a0fd8bcaeacf94d35d0 |  c29e927e | E:\cygwin\home\zap328164\g16762\a3exile\mark
 9:03:49                                 Arma 3 Helicopters |                 heli |       true |             GAME DIR | 4c9d33812524dd6667e778324eca8c03dcd45a58 |  26915ff6 | E:\cygwin\home\zap328164\g16762\a3exile\heli
 9:03:49                                       Arma 3 Karts |                 kart |       true |             GAME DIR | f23d62c84533cd2e072b9df19e13f2946db7c9a5 |  ce467b7a | E:\cygwin\home\zap328164\g16762\a3exile\kart
 9:03:49                                        Arma 3 Zeus |              curator |       true |             GAME DIR | c0fc624e3e7d3fa797929d3e19aaabe812299497 |  57f48148 | E:\cygwin\home\zap328164\g16762\a3exile\curator
 9:03:49                                             Arma 3 |                   A3 |       true |            NOT FOUND |                                          |           |
 9:03:49                                @AdminToolkitServer |  @AdminToolkitServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | E:\cygwin\home\zap328164\g16762\a3exile\@AdminToolkitServer
 9:03:49                                       @ExileServer |         @ExileServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer
 9:03:49 ==========================================================================================================================================================================================================
 9:03:49 InitSound ...
 9:03:49 InitSound - complete
 9:03:49 PhysX3 SDK Init started ...
 9:03:49 PhysX3 SDK Init ended.
 9:03:54 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
a3_characters_f
 9:03:54 Loading movesType CfgGesturesMale
 9:03:54 Creating action map cache
 9:03:54 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
 9:03:54 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
 9:03:55 MovesType CfgGesturesMale load time 268 ms
 9:03:55 Loading movesType CfgMovesMaleSdr
 9:03:55 Reading cached action map data
 9:03:57 Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\sittingchair\hubsittingchaira_idle1.rtm differs (looped now 0)! MoveName: hubsittingchaira_idle1
 9:03:59 MovesType CfgMovesMaleSdr load time 4760 ms
 9:04:00 VoteThreshold must be in 0..1 range. Defaulting to 0.5
 9:04:00 Initializing Steam server - Game Port: 2344, Steam Query Port: 2345
 9:04:00 Steam AppId in current environment:
 9:04:00 Warning: Current Steam AppId:  doesn't match expected value: 107410
 9:04:01 Connected to Steam servers
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:28 Server error: Player without identity Preacher Maxwell (id 2058848720)
 9:04:33 Starting mission:
 9:04:33  Mission file: Exile (__cur_mp)
 9:04:33  Mission world: Altis
 9:04:33  Mission directory: mpmissions\__cur_mp.Altis\
 9:04:46 Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
 9:04:46 Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
 9:04:46 Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
 9:04:46 Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
 9:04:47 Strange convex component65 in a3\rocks_f\sharp\sharprock_wallh.p3d:geometryFire
 9:04:54 Strange convex component06 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component18 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component30 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component31 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component32 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component42 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component43 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component44 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component46 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component58 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component64 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component76 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component98 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component100 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component132 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component145 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component149 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component151 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component167 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component198 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component244 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component304 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component310 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component337 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component353 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component378 in a3\rocks_f\sharp\sharprock_monolith.p3d:geometryFire
 9:04:54 Strange convex component05 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:04:54 Strange convex component74 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:04:54 Strange convex component202 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:04:54 Strange convex component391 in a3\rocks_f\sharp\sharprock_spike.p3d:geometryFire
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [BIS_fnc_preload] ----- Initializing scripts in Exile -----"
 9:05:00 No speaker given for
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [recompile] recompile BIS_fnc_missionTasksLocal"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [recompile] recompile BIS_fnc_missionConversationsLocal"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [recompile] recompile BIS_fnc_missionFlow"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_feedbackMain (0.999451 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_missionHandlers (0 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_storeParamsValues (0.999451 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] BIS_fnc_getServerVariable (0 ms)"
 9:05:00 "[ADMINTOOLKIT] Initializing"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] AdminToolkit_fnc_preInit (4.00543 ms)"
 9:05:00 "Lokaler Dienst/BIS_fnc_log: [preInit] RyanZM_fnc_rzfunctionpreinit (2.99835 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [preInit] ExileClient_fnc_preInit (291 ms)"
 9:05:01 "ExileServer - Server is loading..."
 9:05:01 Client: Nonnetwork object 5d2c1300.
 9:05:01 CallExtension loaded: extDB2 (E:\cygwin\home\zap328164\g16762\a3exile\@ExileServer\extDB2.dll) [h%_]

 9:05:01 "ExileServer - Installed extDB2 version: 70"
 9:05:01 "ExileServer - Connected to database!"
 9:05:01 "ExileServer - Database protocol initialized!"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [preInit] ExileServer_fnc_preInit (625.999 ms)"
 9:05:01 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loading Configs at 0"
 9:05:01 "ExileZ Mod: Version v1.5.6 - 13/10/17 | Loaded all Configs at 0"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [preInit] exilez_mod_fnc_preInit (17.9977 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [script] initServer.sqf"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_missionFlow (0 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_initParams (0 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_initRespawn (0 ms)"
 9:05:01 "[ADMINTOOLKIT] Loading 'BUILDINGS'.."
 9:05:01 "[ADMINTOOLKIT] loaded successfully"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] AdminToolkit_fnc_postInit (0 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] BIS_fnc_reviveInit (0.999451 ms)"
 9:05:01 "Lokaler Dienst/BIS_fnc_log: [postInit] ExileClient_fnc_postInit (0 ms)"
 9:05:01 "ExileServer - Job with handle 10000 added."
 9:05:01 "ExileServer - Job with handle 10001 added."
 9:05:01 "ExileServer - Job with handle 10002 added."
 9:05:01 Weather was forced to change
 9:05:01 "ExileServer - Job with handle 10003 added."
 9:05:01 "ExileServer - Job with handle 10004 added."
 9:05:01 "ExileServer - Initializing game world..."
 9:05:01 "ExileServer - Loading families from database..."
 9:05:01 "ExileServer - Done loading families!"
 9:05:01 "ExileServer - Loading territories from database..."
 9:05:01 c:\w\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
 9:05:02 "ExileServer - Done loading territories!"
 9:05:02 "ExileServer - Loading constructions from database..."
 9:05:02 Attempt to override final function - bis_fnc_storeparamsvalues_data
 9:05:02 "ExileServer - Done loading constructions!"
 9:05:02 "ExileServer - Loading vehicles from database..."
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Offroad_Rusty1'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Chopper_Hummingbird_Green'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_Van_Black'
 9:05:02 Duplicate HitPoint name 'HitGun' in 'Exile_Car_Van_Black'
 9:05:03 "ExileServer - Done loading vehicles!"
 9:05:03 "ExileServer - Loading containers from database..."
 9:05:03 "ExileServer - Done loading containers!"
 9:05:03 "ExileServer - Creating spawn zone vehicles..."
 9:05:04 Strange convex component116 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component117 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component118 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component119 in a3\rocks_f\sharp\sharprock_apart.p3d:geometryFire
 9:05:04 Strange convex component01 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component02 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component13 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component32 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component33 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component35 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component37 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component40 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component45 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component53 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component61 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component71 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component91 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component92 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component93 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component103 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component111 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component129 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component131 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component135 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component141 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component160 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component204 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component217 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component254 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component260 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component295 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component309 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:04 Strange convex component315 in a3\rocks_f\sharp\sharprock_wallv.p3d:geometryFire
 9:05:07 "ExileServer - Spawning Dynamic Vehicles. GridSize: 2200 Vehs/Grid: 2"
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitTurret' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Duplicate HitPoint name 'HitGun' in 'Exile_Car_UAZ_Open_Green'
 9:05:09 Exile_Car_Octavius_White: IndicatorOil - unknown animation source oiltemp
 9:05:09 Exile_Car_Octavius_White: fuel - unknown animation source fuel_1
 9:05:09 Render target memory points PIP0_pos & PIP0_dir not found.
 9:05:09 : Invalid parent bone 'wheel_1_2' for 'wheel_1_2_hide'
 9:05:09 : Invalid parent bone 'wheel_2_2' for 'wheel_2_2_hide'
 9:05:13 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
 9:05:13 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
 9:05:13 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
 9:05:13 Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
 9:05:13 Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
 9:05:13 Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
 9:05:17 "ExileServer - Dynamic vehicles spawned. Count : 229"
 9:05:17 "ExileServer - Game world initialized! Let the fun begin!"
 9:05:17 "ExileServer - There are no Russian Roulette chairs defined. Russian Roulette will not work!"
 9:05:17 "ExileServer - Server is up and running! Version: 1.0.3"
 9:05:17 "Lokaler Dienst/BIS_fnc_log: [postInit] ExileServer_fnc_postInit (15611 ms)"
 9:05:17 "ExileServer - Job with handle 10005 added."
 9:05:17 "ExileZ Mod: Added Zombie Monitor to ExileServer Thread"
 9:05:17 "ExileServer - Job with handle 10006 added."
 9:05:17 "ExileZ Mod: Added Dead Zombie Monitor to ExileServer Thread"
 9:05:17 "ExileServer - Job with handle 10007 added."
 9:05:17 "ExileZ Mod: Added Harassing Zombies Loop to ExileServer Thread"
 9:05:17 "ExileServer - Job with handle 10008 added."
 9:05:17 "ExileZ Mod: Added Horde Loop to ExileServer Thread"
 9:05:18 Exile_Cosmetic_MG: mainturret - unknown animation source mainturret
 9:05:18 Exile_Cosmetic_MG: maingun - unknown animation source maingun
 9:05:18 Exile_Cosmetic_MG: ammo_belt_rotation - unknown animation source reloadanim
 9:05:18 Exile_Cosmetic_MG: bolt_reload_begin - unknown animation source reloadmagazine
 9:05:18 Exile_Cosmetic_MG: muzzleflash - unknown animation source muzzle_source
 9:05:18 Exile_Cosmetic_MG: zaslehrot - unknown animation source muzzle_source_rot
 9:05:18 Exile_Cosmetic_MG: addautonomous_unhide - unknown animation source autonomous_unhide
 9:05:18 Exile_Cosmetic_MG: bullet001_reload_hide - unknown animation source revolving
 9:05:18 Exile_Cosmetic_UAV: rotorimpacthide - unknown animation source rotorhfullydestroyed
 9:05:18 Exile_Cosmetic_UAV: tailrotorimpacthide - unknown animation source tailrotorhfullydestroyed
 9:05:18 Exile_Cosmetic_UAV: propeller1_rotation - unknown animation source rotorh
 9:05:18 Exile_Cosmetic_UAV: propeller2_rotation - unknown animation source rotorv
 9:05:18 Exile_Cosmetic_UAV: propeller1_hide - unknown animation source rpm
 9:05:18 Exile_Cosmetic_UAV: mainturret - unknown animation source mainturret
 9:05:18 Exile_Cosmetic_UAV: maingun - unknown animation source maingun
 9:05:18 Land_Box_AmmoOld_F: ammo_hide - unknown animation source ammo_source
 9:05:18 Land_Box_AmmoOld_F: ammoord_hide - unknown animation source ammoord_source
 9:05:18 Land_Box_AmmoOld_F: grenades_hide - unknown animation source grenades_source
 9:05:18 Land_Box_AmmoOld_F: support_hide - unknown animation source support_source
 9:05:19 Could not load '\ExileScripts\serverRestartMessages.sqf'. Extension not listed in allowedLoadFileExtensions
 9:05:39 "Lokaler Dienst/BIS_fnc_log: [BIS_fnc_preload] ----- Scripts initialized at 38755 ms -----"
 9:05:40 "ExileServer - Player Preacher Maxwell (UID 76561198261886563) connected!"
 9:05:40  Mission id: b8748f45b824e78adb49f679b78d3242eb1afa11
 9:05:41 "ExileServer - Main thread started"
 9:06:01 Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire
 9:06:01 Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire
 9:06:11 "ExileServer - Starting session for 'Preacher Maxwell' with ID 'PRsThzFa'..."
 9:06:11 "[ADMINTOOLKIT] Calling login from player Preacher Maxwell"
 9:06:12 "ExileServer - Dispatching hasPlayerRequest for session 'PRsThzFa'..."
 9:06:14 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:06:14 Inventory item with given name: [Rangefinder] not found
 9:06:16 "ExileZ Mod: Turning off the lights.. SPOOKY!!"
 9:06:16 "ExileZ Mod: Version v1.5.6 - 13/10/17 Started at (5.379)"
 9:06:16 "Lokaler Dienst/BIS_fnc_log: [postInit] exilez_mod_fnc_postInit (59050 ms)"
 9:06:35 Error: Object(3 : 5) not found
 9:06:41 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:06:43 "ExileZ Mod: Monitored Zombies    |    0    "
 9:06:46 Error: Object(3 : 7) not found
 9:06:49 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:06:49 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
colt1911
 9:07:13 "ExileZ Mod: Monitored Zombies    |    0    "
 9:07:18 Error: Object(3 : 9) not found
 9:07:43 "ExileZ Mod: Monitored Zombies    |    0    "
 9:08:13 "ExileZ Mod: Monitored Zombies    |    0    "
 9:08:43 Error: Object(3 : 11) not found
 9:08:43 "ExileZ Mod: Monitored Zombies    |    0    "
 9:09:13 "ExileZ Mod: Monitored Zombies    |    0    "
 9:09:14 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:09:45 "ExileZ Mod: Monitored Zombies    |    0    "
 9:10:15 "ExileZ Mod: Monitored Zombies    |    0    "
 9:10:50 Error: Object(3 : 13) not found
 9:10:50 "ExileZ Mod: Monitored Zombies    |    0    "
 9:11:15 "ExileZ Mod: Monitored Dead Zombies    |    0    "
 9:11:20 "ExileZ Mod: Monitored Zombies    |    0    "
 9:11:50 "ExileZ Mod: Monitored Zombies    |    0    "
 9:12:16 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:12:22 "ExileZ Mod: Monitored Zombies    |    0    "
 9:12:52 "ExileZ Mod: Monitored Zombies    |    0    "
 9:13:22 "ExileZ Mod: Monitored Zombies    |    0    "
 9:13:52 "ExileZ Mod: Monitored Zombies    |    0    "
 9:14:22 "ExileZ Mod: Monitored Zombies    |    0    "
 9:14:58 "ExileZ Mod: Monitored Zombies    |    0    "
 9:15:18 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:15:29 "ExileZ Mod: Monitored Zombies    |    0    "
 9:15:30 "[ADMINTOOLKIT] Calling getitem from player Preacher Maxwell"
 9:15:31 Error: Object(3 : 17) not found
 9:15:59 "ExileZ Mod: Monitored Zombies    |    0    "
 9:16:20 "ExileZ Mod: Monitored Dead Zombies    |    0    "
 9:16:30 "ExileZ Mod: Monitored Zombies    |    0    "
 9:16:56 Error: Object(3 : 18) not found
 9:17:00 "ExileZ Mod: Monitored Zombies    |    0    "
 9:17:14 Error: Object(3 : 19) not found
 9:17:28 "[ADMINTOOLKIT] Calling getitem from player Preacher Maxwell"
 9:17:29 Error: Object(3 : 20) not found
 9:17:30 "ExileZ Mod: Monitored Zombies    |    0    "
 9:18:00 "ExileZ Mod: Monitored Zombies    |    0    "
 9:18:20 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:18:31 "ExileZ Mod: Monitored Zombies    |    0    "
 9:19:02 "ExileZ Mod: Monitored Zombies    |    0    "
 9:19:32 "ExileZ Mod: Monitored Zombies    |    0    "
 9:20:02 "ExileZ Mod: Monitored Zombies    |    0    "
 9:20:37 "ExileZ Mod: Monitored Zombies    |    0    "
 9:21:07 "ExileZ Mod: Monitored Zombies    |    0    "
 9:21:22 "ExileZ Mod: Monitored Dead Zombies    |    0    "
 9:21:22 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:21:39 "ExileZ Mod: Monitored Zombies    |    0    "
 9:22:09 "ExileZ Mod: Monitored Zombies    |    0    "
 9:22:39 "ExileZ Mod: Monitored Zombies    |    0    "
 9:23:09 "ExileZ Mod: Monitored Zombies    |    0    "
 9:23:39 "ExileZ Mod: Monitored Zombies    |    0    "
 9:24:09 "ExileZ Mod: Monitored Zombies    |    0    "
 9:24:25 "ExileZ Mod: Preacher Maxwell is in their Territory, no Harassing Zombie for them."
 9:24:41 "ExileZ Mod: Monitored Zombies    |    0    "
 9:25:11 "ExileZ Mod: Monitored Zombies    |    0    "
 9:25:46 "ExileZ Mod: Monitored Zombies    |    0    "

 

But it dont work. I changed only the text and put a time in there (9:20 to test it) and it dont make any message.

Need help

I never got this error, and don't knew which version of Exile are you using.
But I searched about your error and found this:

I'm pretty sure it will fix your problem. ;)

Edited by joew00

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.