OnVehicleRespray

From SA-MP Wiki

Jump to: navigation, search


The callback name is deceptive, this callback is called when a player exits the mod shops, regardless if color was changed, and is NEVER called for pay'n'spray shops.


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.


ReturnsThis callback does not handle returns.


Image:32px-Ambox_warning_orange.png Note: This 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're related to this callback in one way or another.

Personal tools