OnPlayerStreamOut

From SA-MP Wiki

Jump to: navigation, search

OnPlayerStreamOut


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


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


Parameters:
(playerid, forplayerid)
playeridThe player who has been destreamed.
forplayeridThe player who has destreamed the other player.


This callback does not handle returns.


public OnPlayerStreamOut(playerid, forplayerid)
{
    new string[80];
    format(string, sizeof(string), "Your computer has just unloaded player ID %d", playerid);
    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