OnPlayerStreamOut

From SA-MP Wiki

Jump to: navigation, search


OnPlayerStreamOut 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 player is streamed out from some other player's client.


Image:32px-Ambox_warning_orange.png

Note

This callback can also be called by NPC.


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


Return Values:

This callback does not handle returns.
  • It is always called first in filterscripts.


Example Usage:

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

In other languages