SA-MP Forums Archive
How to add vehicles on SATDM !!? - 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: How to add vehicles on SATDM !!? (/showthread.php?tid=445554)



How to add vehicles on SATDM !!? - VenomMancer - 21.06.2013

I nee help .
how to add more vehicle on satdm .
becuse on satdm , rinho just 1 , hunter just 1 . i want 20 . LOL

please help me


Re: How to add vehicles on SATDM !!? - DaTa[X] - 21.06.2013

CreateVehicle
AddStaticVehicle



Re: How to add vehicles on SATDM !!? - Tass007 - 22.06.2013

Create Vehicles in MTA, then go to the MTA Directory. C:\Program Files (x86)\MTA San Andreas 1.3\server\mods\deathmatch\resources\(your files name.map) Then go to convertffs.com and then in the vehicle output click change then down the bottom go add custom format make the format like this
Code:
{model},{x},{y},{z},{r},{c1},{c2}
and then add a name. Once the code has been converted then go to your satdm server, go to scriptfiles and then go SATDM and then vehicles open up the vehicle_setup.txt and paste your converted code in there then once you have done that you need to reset the vehicles in order for the vehicles you just added to respawn. (TIP: YOU CAN ONLY HAVE ABOUT 2000 CARS I BELIEVE)

Hope this helps.


Re: How to add vehicles on SATDM !!? - VenomMancer - 17.07.2013

Quote:
Originally Posted by Tass007
View Post
Create Vehicles in MTA, then go to the MTA Directory. C:\Program Files (x86)\MTA San Andreas 1.3\server\mods\deathmatch\resources\(your files name.map) Then go to convertffs.com and then in the vehicle output click change then down the bottom go add custom format make the format like this
Code:
{model},{x},{y},{z},{r},{c1},{c2}
and then add a name. Once the code has been converted then go to your satdm server, go to scriptfiles and then go SATDM and then vehicles open up the vehicle_setup.txt and paste your converted code in there then once you have done that you need to reset the vehicles in order for the vehicles you just added to respawn. (TIP: YOU CAN ONLY HAVE ABOUT 2000 CARS I BELIEVE)

Hope this helps.
Why i get this ?

Code:
MyVehicleFormat(560,1423.8000500,-2506.8999000,13.2000000,266.0000000,118,123,15); //Vehicle number 0
MyVehicleFormat(560,1424.0999800,-2503.8999000,13.2000000,265.9950000,118,123,15); //Vehicle number 1
MyVehicleFormat(560,1424.4000200,-2500.8999000,13.2000000,265.9950000,118,123,15); //Vehicle number 2
MyVehicleFormat(560,1424.6999500,-2497.6999500,13.2000000,265.9950000,118,123,15); //Vehicle number 3
MyVehicleFormat(560,1425.0999800,-2494.1999500,13.2000000,265.9950000,118,123,15); //Vehicle number 4
MyVehicleFormat(560,1425.4000200,-2491.0000000,13.2000000,265.9950000,118,123,15); //Vehicle number 5
MyVehicleFormat(560,1425.8000500,-2487.5000000,13.2000000,265.9950000,118,123,15); //Vehicle number 6
MyVehicleFormat(560,1426.1999500,-2483.8000500,13.2000000,265.9950000,118,123,15); //Vehicle number 7
MyVehicleFormat(560,1426.1992200,-2483.7998000,13.2000000,265.9950000,118,123,15); //Vehicle number 8
And when i make custom like this : {model},{x},{y},{z},{r},{c1},{c2} why {c1,{c2} cant write ?
i am just can write like this : {model},{x},{y},{z},{r}

Please help me ..
or please you make Video Tutorial about this for me .

Thanks


Re: How to add vehicles on SATDM !!? - VenomMancer - 02.10.2013

Anyone can help me ?


Re: How to add vehicles on SATDM !!? - Sliceofdeath - 02.10.2013

Write command /save inside the car in-game
Goto My documents
Goto GTA SAMP User Files
Goto SAMP
Open Savedposition
Go down at last

There will be code AddStaticVehicle
Copy the code
Paste it in OnGamemodeInit
You can find "OnGamemodeInit" by CTRL + F


Re: How to add vehicles on SATDM !!? - Tass007 - 04.10.2013

Quote:
Originally Posted by VenomMancer
View Post
Why i get this ?

Code:
MyVehicleFormat(560,1423.8000500,-2506.8999000,13.2000000,266.0000000,118,123,15); //Vehicle number 0
MyVehicleFormat(560,1424.0999800,-2503.8999000,13.2000000,265.9950000,118,123,15); //Vehicle number 1
MyVehicleFormat(560,1424.4000200,-2500.8999000,13.2000000,265.9950000,118,123,15); //Vehicle number 2
MyVehicleFormat(560,1424.6999500,-2497.6999500,13.2000000,265.9950000,118,123,15); //Vehicle number 3
MyVehicleFormat(560,1425.0999800,-2494.1999500,13.2000000,265.9950000,118,123,15); //Vehicle number 4
MyVehicleFormat(560,1425.4000200,-2491.0000000,13.2000000,265.9950000,118,123,15); //Vehicle number 5
MyVehicleFormat(560,1425.8000500,-2487.5000000,13.2000000,265.9950000,118,123,15); //Vehicle number 6
MyVehicleFormat(560,1426.1999500,-2483.8000500,13.2000000,265.9950000,118,123,15); //Vehicle number 7
MyVehicleFormat(560,1426.1992200,-2483.7998000,13.2000000,265.9950000,118,123,15); //Vehicle number 8
And when i make custom like this : {model},{x},{y},{z},{r},{c1},{c2} why {c1,{c2} cant write ?
i am just can write like this : {model},{x},{y},{z},{r}

Please help me ..
or please you make Video Tutorial about this for me .

Thanks
Hi, i did what you asked, and made a Video Tutorial for you here is the ******* video for you.

[ame="http://www.youtube.com/watch?v=8PjvvL9twKE"]How to add buyable vehicles to SATDM (SA-MP)[/ame]

Hope this helps!


Re: How to add vehicles on SATDM !!? - VenomMancer - 06.10.2013

Quote:
Originally Posted by Tass007
View Post
Hi, i did what you asked, and made a Video Tutorial for you here is the ******* video for you.

How to add buyable vehicles to SATDM (SA-MP)

Hope this helps!
Thank you very much !!!

REP+1

Add My skype Angga.Lombongkaehe


Re: How to add vehicles on SATDM !!? - Tass007 - 08.10.2013

Quote:
Originally Posted by VenomMancer
View Post
Thank you very much !!!

REP+1

Add My skype Angga.Lombongkaehe
Your most welcome..