Jump to content
  • 0

Missionedit.sqf not loading in


johnucc1

Question

So i have the Maps folder in my dayz epoch (overpoch for me) PBO and edited the init/Serverfunctions.sqf

 

 

here is my serverfunctions.sqf

server_logUnlockLockEvent = {
	private["_player", "_obj", "_objectID", "_objectUID", "_statusText", "_status"];
	_player = _this select 0;
	_obj = _this select 1;
	_status = _this select 2;
	if (!isNull(_obj)) then {
		_objectID = _obj getVariable["ObjectID", "0"];
		_objectUID = _obj getVariable["ObjectUID", "0"];
		_statusText = "UNLOCKED";
		if (_status) then {
			[_obj, "gear"] call server_updateObject;
			_statusText = "LOCKED";
		};
		diag_log format["SAFE %5: ID:%1 UID:%2 BY %3(%4)", _objectID, _objectUID, (name _player), (getPlayerUID _player), _statusText];
	};
};
execVM "\z\addons\dayz_server\Maps\mapedit.sqf";

As you can see the execVM map edit doesent seem to work..

 

the directory of my overpoch PBO is  

Downloads\DayZ_Epoch_Server_1.0.5.1_Release\DayZ_Epoch_Server_1.0.5.1_Release (1)\@DayZ_Overpoch_Server\addons\dayz_server

(this is for my private server ATM which i boot from my home PC just for testing)

 

my RPT file doesent explain as to why the server isnt pulling it (no mention of the PBO or anything)

 

Mission file im trying to insert http://pastebin.com/vH77UY7E

 

Edit- Uploaded my PBO  https://www.dropbox.com/s/dab985fecpl28hf/dayz_server.pbo

Edit number 2- Uploaded my INIT https://www.dropbox.com/s/jbtp9dvem0r3gvd/init.sqf

 

Current used scripts/mods= Overpoch, epoch admin tools

Link to comment
Share on other sites

Recommended Posts

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...