OnVehicleRespray

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 18:39, 16 January 2014
Costel nistor96 (Talk | contribs)

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

Next diff →
Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|The callback name is deceptive, this callback is called when a player exits a mod shop, regardless of whether the vehicle's colors were changed, and is NEVER called for pay 'n' spray garages.}} {{Description|The callback name is deceptive, this callback is called when a player exits a mod shop, regardless of whether the vehicle's colors were changed, and is NEVER called for pay 'n' spray garages.}}
Line 35: Line 34:
[[Category:Scripting Callbacks]] [[Category:Scripting Callbacks]]
 +
 +[[fr:OnVehicleRespray]]

Revision as of 04:04, 5 February 2014



Description:

The callback name is deceptive, this callback is called when a player exits a mod shop, regardless of whether the vehicle's colors were changed, and is NEVER called for pay 'n' spray garages.


Parameters:
(playerid, vehicleid, color1, color2)
playeridThe ID of the player that is driving the vehicle.
vehicleidThe ID of the vehicle that was resprayed.
color1The color that the vehicle's primary color was changed to.
color2The color that the vehicle's secondary color was changed to.


Return Values:

This callback does not handle returns.


Image:32px-Ambox_warning_orange.png

Note

Misleadingly, this callback is not called for pay 'n' spray (only modshops).

Fix here: http://pastebin.com/zX96D4dA


public OnVehicleRespray(playerid, vehicleid, color1, color2)
{
    new string[48];
    format(string, sizeof(string), "You resprayed vehicle %d to colors %d and %d!", vehicleid, color1, color2);
    SendClientMessage(playerid, COLOR_GREEN, string);
    return 1;
}

Related Functions

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


Related Callbacks

The following callbacks might be useful as well, as they are related to this callback in one way or another.

In other languages