OnActorStreamIn
Description:
Callback OnActorStreamIn is called when an actor is streamed in by a player's client.
Callback OnActorStreamIn was added in 0.3.7 and will not work in earlier versions! |
This callback can also be called by NPC]]. |
Parameters:
(actorid, forplayerid)
int | actorid | The ID of the actor that has been streamed in for the player. |
int | forplayerid | The ID of the player that streamed the actor in. |
Return Values:
This callback does not handle returns.
- It is always called first in filterscripts.
Examples:
public OnActorStreamIn(actorid, forplayerid) { new string[40]; format(string, sizeof(string), "Actor %d is now streamed in for you.", actorid); 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.
- OnActorStreamOut: Called when an actor is streamed out by a player.
- OnPlayerStreamIn: Called when a player streams in for another player.