How to install dayzchernarus mission system to epoch?

BioGasm

New Member
ive been working on a server and we want side missions that drop for somthing more than just surviving, and i cant seem to get this one working, when ever i get it properly installed the server refuses to launch properly and all i get is debug, i cant seem to find out what im doing wrong but anything that involves the dayz_server.pbo seems to not work. If any one can help it would be greatly appreciated.

http://opendayz.net/threads/release-dayzchernarus-mission-system.12169/
 
have you added this to the mission.pbo init.sqf file?:

[] execVM "debug\addmarkers.sqf";
[] execVM "debug\addmarkers75.sqf";

G.
 
don't replace MISSION with SARGE if you don't have SARGE on your server and make sure everything is in the correct place or, as you have discovered, your server will go "dark".
 
the addmarkes will ensure that you and your players can see the missions on the map.

the fnc_bases thingy, if you can't find it, do like this:

fnc_plyrHit = compile preprocessFileLineNumbers "\z\addons\dayz_server\compile\fnc_plyrHit.sqf";
(PUT THE FNC_HTIME HERE BELOW THE FNC_PLYRHIT IN THE SERVER_FUNCTIONS.SQF IN THE SERVER.PBO)
fnc_hTime = compile preprocessFile "\z\addons\dayz_server\Missions\misc\fnc_hTime.sqf"; //Random integer selector for mission wait time
server_deaths = compile preprocessFileLineNumbers "\z\addons\dayz_server\compile\server_playerDeaths.sqf";
 
Back
Top