انتقل إلى المحتوى الرئيسي

OnActorStreamOut

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 out by a player's client.

NameDescription
actoridThe ID of the actor that has been streamed out for the player.
forplayeridThe ID of the player that streamed the actor out.

Returns

It is always called first in filterscripts.

Examples

public OnActorStreamOut(actorid, forplayerid)
{
new string[48];
format(string, sizeof(string), "Actor %d is now streamed out 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.

  • OnActorStreamIn: This callback is called when an actor is streamed in by a player's client.