The open.mp logo
Home
FAQ
Forums
Servers
Partners
Docs
Blog

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.

OnVehicleStreamOut

warning

This callback was added in SA-MP 0.3a and will not work in earlier versions!

Description

This callback is called when a vehicle is streamed out for a player's client (it's so far away that they can't see it).

NameDescription
vehicleidThe ID of the vehicle that streamed out.
forplayeridThe ID of the player who is no longer streaming the vehicle.

Returns

It is always called first in filterscripts.

Examples

public OnVehicleStreamOut(vehicleid, forplayerid)
{
    new string[48];
    format(string, sizeof(string), "Your client is no longer streaming vehicle %d", vehicleid);
    SendClientMessage(forplayerid, 0xFFFFFFFF, string);
    return 1;
}

Notes

tip

This callback can also be called by NPC.

Related Callbacks

  • OnVehicleStreamIn: This callback is called when a vehicle streams in for a player.
  • OnPlayerStreamIn: This callback is called when a player streams in for another player.
  • OnPlayerStreamOut: This callback is called when a player streams out for another player.

Community

  • Discord
  • Instagram
  • Twitter
  • Twitch
  • YouTube
  • Facebook
  • VK

More

  • SA-MP
  • Blog
  • GitHub