warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
OnPlayerStreamIn
Description
This callback is called when a player is streamed by some other player's client.
Name | Description |
---|---|
playerid | The ID of the player who has been streamed. |
forplayerid | The ID of the player that streamed the other player in. |
Returns
It is always called first in filterscripts.
Examples
public OnPlayerStreamIn(playerid, forplayerid)
{
new string[40];
format(string, sizeof(string), "Player %d is now streamed in for you.", playerid);
SendClientMessage(forplayerid, 0xFFFFFFFF, string);
return 1;
}
Notes
tip
This callback can also be called by NPC.
Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- OnPlayerStreamOut: This callback is called when a player streams out for another player.
- OnActorStreamIn: This callback is called when an actor is streamed in by a player.
- OnVehicleStreamIn: This callback is called when a vehicle streams in for a player.