[Tutorial] Tunned Vehicle - 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: Tutorials (
https://sampforum.blast.hk/forumdisplay.php?fid=70)
+---- Thread: [Tutorial] Tunned Vehicle (
/showthread.php?tid=472272)
Tunned Vehicle -
JakeHunter - 27.10.2013
First thing you need to do is add this code
Quote:
new tunnedElegy;// This is the Vehicle that we use
|
now OnGameModeInIt you add the vehicle
Код:
tunnedElegy = AddStaticVehicle(Cordinations);//This is your vehicle
Now to Add the component you need to add this
Код:
AddVehicleComponent(tunnedElegy, componentid);//
Componentid is the ID from the componend that we gona use,for example
Код:
AddVehicleComponent(tunnedElegy, 1035); // roof
Okey,now for paintjob To change the Paintjob you need to do this
Код:
ChangeVehiclePaintjob(tunnedElegy,paintjobid);//And the paintjob will be changed
Now,OnVehicleSpawn you need to add this
Код:
public OnVehicleSpawn(vehicleid)
{
if (vehicleid == tunnedElegy){
And you add the Componend
Код:
AddVehicleComponent(carID, ComponentID);
Tutorial by:Jake Hunter
Re: Tunned Vehicle -
Luis- - 27.10.2013
That's not a tutorial.
Re: Tunned Vehicle -
JakeHunter - 27.10.2013
Quote:
Originally Posted by Luis-
That's not a tutorial.
|
If isn't tutorial what is?
Re: Tunned Vehicle -
Konstantinos - 27.10.2013
Quote:
Originally Posted by Luis-
That's not a tutorial.
|
True.
Read this thread and try again:
https://sampforum.blast.hk/showthread.php?tid=65567
By saying "add this .." and "it'll look like .." doesn't make it a tutorial. A tutorial is made to understand what each function do and why/how to use it. By copying-pasting the code to a mode, nobody is going to learn anything from it.
Re: Tunned Vehicle -
Isolated - 27.10.2013
Badly formatted tutorial without any explanations and filled with spelling mistakes.
Re: Tunned Vehicle -
JakeHunter - 27.10.2013
Thanks,i edit it look it now
Re: Tunned Vehicle -
iZN - 27.10.2013
It explains nothing at all.
Re: Tunned Vehicle -
Luis- - 27.10.2013
Quote:
Originally Posted by JakeHunter
Thanks,i edit it look it now
|
It's still badly explained.
Re: Tunned Vehicle -
JakeHunter - 27.10.2013
Sorry it my first tutorial