OnVehicleStreamOut

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 09:02, 21 April 2014
MP2 (Talk | contribs)

← Previous diff
Revision as of 19:51, 23 April 2014
Ikkentim (Talk | contribs)
(This is a callback(NoReturn>NoReturnCallback))
Next diff →
Line 9: Line 9:
{{Param|forplayerid|The ID of the player who is no longer streaming the vehicle.}} {{Param|forplayerid|The ID of the player who is no longer streaming the vehicle.}}
-{{NoReturn}}+{{NoReturnCallback}}
<pawn> <pawn>

Revision as of 19:51, 23 April 2014



OnVehicleStreamOut was added in SA-MP 0.3a This callback was added in SA-MP 0.3a and will not work in earlier versions!


Description:

This callback is called when a vehicle is streamed out for a player's client (it's so far away that they can't see it).


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


Return Values:

This callback does not handle returns.


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

Related Callbacks

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