Hello Everyone i saw many peoples ask me how to Add Custom Vehicle so i am here with complete Instruction
I want to share some Custom Vehicles
Mustang
Galardo
These car's are not created by Me
Credits:FinchDon
Car Creator:IDK
What You need to do?
just add this onPlayerCommand
Code: [Select]


You need to put these files in
serverroot/store/vehicles/here
In the Name of vehicles rar v6461 is ID it is from 6400 to 6499 u can change them but also cmd
t0 mean this is car t1 is bike
p2 is passenger means 2 passenger can sit in car maximum is 4
Topic Updated
I want to share some Custom Vehicles
Mustang
Galardo
These car's are not created by Me
Credits:FinchDon
Car Creator:IDK
What You need to do?
just add this onPlayerCommand
if ( cmd == "galardo" )
{
CreateVehicle( 6461, 0, Vector( player.Pos.x, player.Pos.y+3, player.Pos.z ),player.Angle, 1, 1 );
MessagePlayer( "Wow Galardo in VCMP Omg", player );
}
else if ( cmd == "mustang" )
{
CreateVehicle( 6455, 0, Vector( player.Pos.x, player.Pos.y+3, player.Pos.z ),player.Angle, 0, 0 );
MessagePlayer( "Wow Mustang in VCMP Omg", player );
}
You need to put these files in
serverroot/store/vehicles/here
In the Name of vehicles rar v6461 is ID it is from 6400 to 6499 u can change them but also cmd
t0 mean this is car t1 is bike
p2 is passenger means 2 passenger can sit in car maximum is 4
Topic Updated