Tuned car - 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: Tuned car (
/showthread.php?tid=146194)
Tuned car -
Andy_McKinley - 06.05.2010
I want to add a tuned car on the map but don't know how. I need a tutorial. Can someone do one for me, so I'll do the rest.
Elegy.
pawn Код:
AddStaticVehicle(562, -2960.0324707031, 459.45205688477, 4.6676120758057, 0.000000, 0, 0);
Re: Tuned car -
xxjackoxx - 06.05.2010
http://forum.sa-mp.com/index.php?topic=145671.0
Re: Tuned car -
Fj0rtizFredde - 06.05.2010
pawn Код:
new Elegy; //On top of the script
Elegy = AddStaticVehicle(562, -2960.0324707031, 459.45205688477, 4.6676120758057, 0.000000, 0, 0); //OnGameModeInt
AddVehicleComponent(Elegy, 1146); // X-flow spoiler Also under OnGameModeInt
Simple

Check the wiki
https://sampwiki.blast.hk/wiki/Function:AddVehicleComponent
Re: Tuned car -
Andy_McKinley - 06.05.2010
Thanks, learned something today!