Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: [VM_U]Spectra.PhantoM^ on Dec 18, 2015, 11:51 AM

Title: Little Bit of help needed
Post by: [VM_U]Spectra.PhantoM^ on Dec 18, 2015, 11:51 AM
OK. how the heck do i make custom vehicles available for others to download and use in server?
Title: Re: Little Bit of help needed
Post by: Mashreq on Dec 18, 2015, 12:09 PM
You need to place the custom vehicles in your store/vehicles/ in your script folder.
Title: Re: Little Bit of help needed
Post by: KAKAN on Dec 18, 2015, 12:22 PM
http://forum.vc-mp.org/?topic=975

Read that topic.
Let me say.
Put the vehicle in the folder @Mashreq mentioned.
Then, if you want it in server, you can get it using CreateVehicle.
IDs starts from 6400
Title: Re: Little Bit of help needed
Post by: Williams on Dec 18, 2015, 12:24 PM
copy and paste at Store/Vehicles in your script. and use custom vehicle ID to spawn car :)
Title: Re: Little Bit of help needed
Post by: [VM_U]Spectra.PhantoM^ on Dec 18, 2015, 12:51 PM
Thats just the thing i dont know the ID OF THE CUSTOM CAR
Title: Re: Little Bit of help needed
Post by: Williams on Dec 18, 2015, 01:29 PM
@Ultimatejugo which custom vehicle u have??
Title: Re: Little Bit of help needed
Post by: [VM_U]Spectra.PhantoM^ on Dec 19, 2015, 12:01 AM
Quote from: Williams on Dec 18, 2015, 01:29 PM@Ultimatejugo which custom vehicle u have??
VC SupaComet
Title: Re: Little Bit of help needed
Post by: KAKAN on Dec 19, 2015, 04:44 AM
Quote from: {ultimatejugo] on Dec 19, 2015, 12:01 AM
Quote from: Williams on Dec 18, 2015, 01:29 PM@Ultimatejugo which custom vehicle u have??
VC SupaComet
ID pl0x
Title: Re: Little Bit of help needed
Post by: Williams on Dec 19, 2015, 06:23 AM
Ok but i don't know this vehicle ID
Title: Re: Little Bit of help needed
Post by: Anik on Dec 20, 2015, 05:52 AM
Just copy and paste your custom vehicle in store/vehicles/ . Make sure the id starts with 6400. Now Copy and paste this code in onScriptLoad . It will create a vehicle near mansion.
CreateVehicle(6400, 1, Vector(-363.606292724609, -524.068786621094, 12.6005363464355), 0.1268, 20, 20);Either you can use @KAKAN,s cmd but that will disappear after restarting server
else if ( cmd == "cbike" )
{
CreateVehicle( 6400, player.World, Vector(player.Pos.x, player.Pos.y, player.Pos.z), 0, 12, 13 );
}
Title: Re: Little Bit of help needed
Post by: KAKAN on Dec 20, 2015, 06:04 AM
Quote from: Anik on Dec 20, 2015, 05:52 AMJust copy and paste your custom vehicle in store/vehicles/ . Make sure the id starts with 6400. Now Copy and paste this code in onScriptLoad . It will create a vehicle near mansion.
CreateVehicle(6400, 1, Vector(-363.606292724609, -524.068786621094, 12.6005363464355), 0.1268, 20, 20);Either you can use @KAKAN,s cmd but that will disappear after restarting server
else if ( cmd == "cbike" )
{
CreateVehicle( 6400, player.World, Vector(player.Pos.x, player.Pos.y, player.Pos.z), 0, 12, 13 );
}
Wait what, when did I release that type of cmd?
Title: Re: Little Bit of help needed
Post by: Anik on Dec 20, 2015, 06:32 AM
Quote from: KAKAN on Dec 20, 2015, 06:04 AM
Quote from: Anik on Dec 20, 2015, 05:52 AMJust copy and paste your custom vehicle in store/vehicles/ . Make sure the id starts with 6400. Now Copy and paste this code in onScriptLoad . It will create a vehicle near mansion.
CreateVehicle(6400, 1, Vector(-363.606292724609, -524.068786621094, 12.6005363464355), 0.1268, 20, 20);Either you can use @KAKAN,s cmd but that will disappear after restarting server
else if ( cmd == "cbike" )
{
CreateVehicle( 6400, player.World, Vector(player.Pos.x, player.Pos.y, player.Pos.z), 0, 12, 13 );
}
Wait what, when did I release that type of cmd?
Sorrry it was not you. It was @Kusanagis But the topic was yours. http://forum.vc-mp.org/index.php?topic=1120.0