Jump to content
  • 0

Server MaintainArea SQF error


Cyrus

Question

I have just managed to install the latest version of InfiSTAR v1448. Since then I am getting an error when logging into the server. "\z\addons\dayz_server\compile\server_maintainArea.sqf" not found." I have looked and the file is present at that location. And in my server_functions.sqf it is called correctly.

server_maintainArea = compile preprocessFileLineNumbers "\z\addons\dayz_server\compile\server_maintainArea.sqf";

Would there be any reason why this call would fail?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

As @DAmNRelentless mentioned it's something new in infistar.

Find and delete this line in AH.sqf:

server_maintainArea_original = if(isNil 'server_maintainArea')then{compile preprocessFileLineNumbers '\z\addons\dayz_server\compile\server_maintainArea.sqf';}else{server_maintainArea};

Delete this code block below it:

server_maintainArea = {
				private['_input','_player','_targetObj'];
				_input = _this select 1;
				_player = _input select 0;
				_targetObj = _input select 2;
				
				_log = format['%1(%2) maintained %3 (objid: %4) @%5 (%6)',name _player,getPlayerUID _player,typeOf _targetObj, _targetObj getvariable['ObjectID','0'],mapGridPosition _targetObj,getposatl _targetObj];
				['MAINTAIN',_log] call fn_custom_log;
				
				_input spawn server_maintainArea_original;
			};

 

Link to comment
Share on other sites

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
  • Discord

×
×
  • Create New...