OnVehicleStreamOut

From SA-MP Wiki

Jump to: navigation, search

OnVehicleStreamOut


Warning: This callback was added in SA-MP version 0.3. It is not available in previous versions.


This callback is called when a vehicle is streamed out from some player's client.


Parameters:
(vehicleid, forplayerid)
vehicleidThe ID of the vehicle that streamed out.
forplayeridThe ID of the player who is no longer streaming the vehicle.


This function does not return a specific value.


public OnVehicleStreamOut(vehicleid, forplayerid)
{
    new string[48];
    format(string, sizeof(string), "Your client is no longer streaming vehicle %d", vehicleid);
    SendClientMessage(forplayerid, string);
    return 1;
}

Related Callbacks

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

Personal tools