ChangeVehicleColor

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 12:14, 29 September 2013
W (Talk | contribs)

← Previous diff
Revision as of 03:58, 5 February 2014
Connor Mead (Talk | contribs)

Next diff →
Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|Change a vehicle's primary and secondary colors.}} {{Description|Change a vehicle's primary and secondary colors.}}
Line 32: Line 31:
[[Category:Scripting Functions]] [[Category:Scripting Functions]]
 +[[fr:ChangeVehicleColor]]
[[nl:ChangeVehicleColor]] [[nl:ChangeVehicleColor]]
[[ru:ChangeVehicleColor]] [[ru:ChangeVehicleColor]]

Revision as of 03:58, 5 February 2014



Description:

Change a vehicle's primary and secondary colors.


Image:32px-Ambox_warning_orange.png

Note

Some vehicles have only a primary color and some can not have the color changed at all. A few (cement, squallo) have 4 colors, of which 2 can not be changed in SA:MP


Parameters:
(vehicleid, color1, color2)
vehicleidThe ID of the vehicle to change the colors of.
color1The new vehicle's primary Color ID.
color2The new vehicle's secondary Color ID.


Return Values:

  • 0: The vehicle does not exist.
  • 1: The vehicle's color was successfully changed.


public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    // Change the primary color to black and the secondary color to white
    ChangeVehicleColor(vehicleid, 0, 1);
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.


Related Callbacks

The following callbacks might be useful, as they're related to this function in one way or another.

In other languages