24.09.2009, 14:37
Tool question: does somebody know a Vehicle Creater (TOOL)
So i can spawn easy duplicate
20 cars in a line?
Or know a script command for it?
I have on but it doesnt spawn them in a straight line:S
Thanks,,,,
Nvm I got it already
So i can spawn easy duplicate
20 cars in a line?
Or know a script command for it?
I have on but it doesnt spawn them in a straight line:S
Thanks,,,,
Nvm I got it already
Код:
new Float:bikeG = 2437.2144; // (Float/Single) De Y positie waar je wilt waar de rij begint.
new count; // (Integer) Gebruiken voor de lus
// BMX
for(count = 0; count <= 9; count++)
{
// AddStaticVehicle(WagenID,PositieX,PositieY,PositieZ,Rotatie,Kleur1,Kleur2);
AddStaticVehicle(560,422.5875,bikeG,16.2048,88.9017,1,0);
bikeG += 4; // Stop bij bikeY +2.5 zodat de volgende BMX niet op dezelfde plek staat.
}

