note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
OnActorStreamIn
warning
This callback was added in SA-MP 0.3.7 and will not work in earlier versions!
Description
This callback is called when an actor is streamed in by a player's client.
Name | Description |
---|---|
actorid | The ID of the actor that has been streamed in for the player. |
forplayerid | The ID of the player that streamed the actor in. |
Returns
It is always called first in filterscripts.
Examples
public OnActorStreamIn(actorid, forplayerid)
{
new string[48];
format(string, sizeof(string), "Actor %d is now streamed in for you.", actorid);
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.
- OnActorStreamOut: This callback is called when an actor is streamed out by a player's client.