Vehicle Creator - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Vehicle Creator (
/showthread.php?tid=98932)
Vehicle Creator -
addysnow1 - 24.09.2009
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
Код:
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.
}