OnActorStreamOut

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 03:37, 30 April 2015
RoboN1X (Talk | contribs)

← Previous diff
Revision as of 12:25, 2 May 2015
Ikkentim (Talk | contribs)

Next diff →
Line 22: Line 22:
{{RelatedCallbacks}} {{RelatedCallbacks}}
{{onActorStreamIn}} {{onActorStreamIn}}
-{{OnPlayerStreamIn}}+{{OnPlayerStreamOut}}
[[Category:Scripting Callbacks]] [[Category:Scripting Callbacks]]
[[Category:Actor]] [[Category:Actor]]

Revision as of 12:25, 2 May 2015


OnActorStreamOut was added in SA-MP 0.3.7 This function 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.


Parameters:
(actorid, forplayerid)
actoridThe ID of the actor that has been streamed out for the player.
forplayeridThe ID of the player that streamed the actor out.


Return Values:

This callback does not handle returns.


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