SQF -> DayZ Server

Go through your server_functions.sqf. Add this to the end:
Code:
// spawns players custom bases
execVM "\z\addons\dayz_server\playerbases\myplayerbases.sqf";
then add a folder called "playerbases" to your server folder root. Inside that create an sqf file called myplayerbases.sqf. Copy this into it:
Code:
if (isServer) then {
//start of base 1

//end of base1
//start of base2

//end of base2
}
Now copy your entries from the editor into the sqf between the braces. You can keep the // lines if you want to show you where one base ends and another begins but they are not required. Using this method lets you edit a single file and place as many objects and bases as you want easily.
 
Back
Top