Hey guys, i'm trying to add a custom map addition into my server (overpoch Chernarus 1.0.5.1/112555)
But they just don't appear...
This is my init.sqf (I was doing this method before and was working)
if (isServer) then {
call compile preprocessFileLineNumbers "\z\addons\dayz_server\missions\DayZ_Epoch_11.Chernarus\dynamic_vehicle.sqf";
//Compile vehicle configs
call compile preprocessFileLineNumbers "\z\addons\dayz_server\map\lakecastle.sqf";
call compile preprocessFileLineNumbers "\z\addons\dayz_server\map\aircraft.sqf";
....
};
My custom maps i toke from this forum, wasn't working, i tried to remove some lines, but not has changed... does anyone knows what may be wrong?
This is the file script:
// Goggi Aircraft Carrier
// by DaddelGoggi
if (isServer) then {
_vehicle_0 = objNull;
if (true) then
{
_this = createVehicle ["MAP_LHD_1", [7469.4985, 2696.7188, -2.3562648], [], 0, "CAN_COLLIDE"];
_vehicle_0 = _this;
_this setPos [7469.4985, 2696.7188, -2.3562648];
};
_vehicle_2 = objNull;
if (true) then
{
_this = createVehicle ["MAP_LHD_2", [7469.481, 2696.7603, -2.3448014], [], 0, "CAN_COLLIDE"];
_vehicle_2 = _this;
_this setPos [7469.481, 2696.7603, -2.3448014];
};
...
};

