پرش به مطلب اصلی

OnActorStreamIn

هشدار

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.

NameDescription
actoridThe ID of the actor that has been streamed in for the player.
forplayeridThe 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

نکته

This callback can also be called by NPC.

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.