I have been trying got get fire spawning on the server when it starts but to no avail. I have tried spawning the fire objects (cars) within the server files and the mission file as map additions. Does anyone have an idea why this isn't working?
waitUntil {!isNil "dayz_animalCheck"};
sleep 60;
if (isServer) then {
_vehicle_69 = objNull;
if (true) then
{
_this = createVehicle ["SKODAWreck", [6665.3789, 2531.5535,0], [], 0, "CAN_COLLIDE"];
_vehicle_69 = _this;
_this setDir 150.43945;
_this setPos [6665.3789, 2531.5535,0];
PVDZE_obj_Fire = [_this,3,time,false,false];
publicVariable "PVDZE_obj_Fire";
};
};
It will not even spawn the vehicles and I have no clue why. Can anyone help? Thanks in advance...

