Some people encounter a problem that cement mixers are not showing up on the server.
JUST delete the russian roullete and cement mixers code and paste this code in because it is not working anymore.
//Just place this line of code in the bottom of your initserver.sqf coordinates are from Exile.Altis
Some people encounter a problem that cement mixers are not showing up on the server.
JUST delete the russian roullete and cement mixers code and paste this code in because it is not working anymore.
//Just place this line of code in the bottom of your initserver.sqf coordinates are from Exile.Altis
private ["_objs"];
_objs = [
["Exile_ConcreteMixer",[14354.5,18959.5,0],0,[[0,1,0],[0,0,1]],false],
["Exile_ConcreteMixer",[18309.4,15575,0.00109863],90,[[1,-4.37114e-008,0],[0,-0,1]],false],
["Exile_ConcreteMixer",[11391.2,14259.5,0.00148201],-40,[[-0.642788,0.766044,0],[0,0,1]],false]
];
{
private ["_obj"];
_obj = createVehicle [_x select 0, [0,0,0], [], 0, "CAN_COLLIDE"];
if (_x select 4) then {
_obj setDir (_x select 2);
_obj setPos (_x select 1);
_obj enableSimulationGlobal true;
} else {
_obj setPosATL (_x select 1);
_obj setVectorDirAndUp (_x select 3);
_obj enableSimulationGlobal true;
};
} foreach _objs;
Share this post
Link to post
Share on other sites