Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: NicusorN5 on Apr 26, 2016, 02:11 PM

Title: How to change a car's color?
Post by: NicusorN5 on Apr 26, 2016, 02:11 PM
What is the function to change a created car color? `
Title: Re: How to change a car's color?
Post by: KingOfVC on Apr 26, 2016, 02:13 PM
Vehicle.Colour1
Vehicle.Colour2
Title: Re: How to change a car's color?
Post by: Cool on Apr 26, 2016, 02:16 PM
you have your vehicles in database
Title: Re: How to change a car's color?
Post by: MaTaDeToR on Apr 26, 2016, 04:13 PM
Quote from: NicusorN5 on Apr 26, 2016, 02:11 PMWhat is the function to change a created car color? `
if ( cmd =="changecolor")
                       {
                          if ( player.Vehicle )
                                  {
                                  local Color = rand() % 94;
                                  ClientMessage("Your Vehicle color has been changed randomly",player,255,255,0);
                                             player.Vehicle.Colour1 = Color;
                                                    }
                                 else ClientMessage("You need to be inside a vehicle to use this command",player,255,255,0);
                  }
Well, i've given this Code before, it's simply the Vehicle.Color1 function could be found at Wiki as well; therefore, Vehicle.Color2 as the another function to change the second custom color of Car.
Title: Re: How to change a car's color?
Post by: NicusorN5 on Apr 26, 2016, 07:20 PM
Thanks @KindofVC :D
Title: Re: How to change a car's color?
Post by: RW on Apr 27, 2016, 10:58 AM
vehicle.Colour1 = <Colour ID>
vehicle.Colour2 = <Colour ID>
Maybe it can help you :D
Title: Re: How to change a car's color?
Post by: KAKAN on Apr 27, 2016, 02:29 PM
Quote from: [F.B.I]RW on Apr 27, 2016, 10:58 AMvehicle.Colour1 = <Colour ID>
vehicle.Colour2 = <Colour ID>
Maybe it can help you :D
Read the posts. It's already posted above with a good example, which can help you too.
Title: Re: How to change a car's color?
Post by: Thijn on Apr 27, 2016, 02:30 PM
Locked. Answer has been given.