SA-MP Forums Archive
Another Car Hellp - 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)
+--- Thread: Another Car Hellp (/showthread.php?tid=285664)



Another Car Hellp - trapstar2020 - 25.09.2011

Adding neon to my cars? how to i do it


Re: Another Car Hellp - grand.Theft.Otto - 25.09.2011

Search? You have to use CreateObject to attach it to the bottom of a vehicle. I recommend using a pre-made script:

http://www.******.com/search?q=neon+...ient=firefox-a


Re: Another Car Hellp - Salsa - 25.09.2011

download tune Fs
From Here

http://www.4shared.com/file/iFvJCKC7..._car_tune.html


Re : Another Car Hellp - timaoux - 25.09.2011

pawn Code:
new neon;
    new neon2;
    new car = GetPlayerVehicleID(playerid);
    new Float:X, Float:Y, Float:Z;
    new Float:rX, Float:rY, Float:rZ;
    GetPlayerPos(playerid, X, Y, Z);
    neon = CreateObject(18647, X, Y, Z, rX, rY, rZ, 3.0);
    neon2 = CreateObject(18647, X, Y, Z, rX, rY, rZ, 3.0);
    AttachObjectToVehicle(neon, car, 1.0, 0.0, -0.5, 0.0, 0.0, 0.0);
    AttachObjectToVehicle(neon2, car, -1.0, 0.0, -0.5, 0.0, 0.0, 0.0);
theres have already the position of the neons just change the object id to the color neon you want ^^