OnVehicleStreamIn

From SA-MP Wiki

Jump to: navigation, search


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


Description:

Called when a vehicle is streamed to a player's client.


Image:32px-Ambox_warning_orange.png

Note

This callback can also be called by NPC.


Parameters:
(vehicleid, forplayerid)
vehicleidThe ID of the vehicle that streamed in for the player.
forplayeridThe ID of the player who the vehicle streamed in for.


Return Values:

This callback does not handle returns.
  • It is always called first in filterscripts.


Example Usage:

public OnVehicleStreamIn(vehicleid, forplayerid)
{
    new string[32];
    format(string, sizeof(string), "You can now see vehicle %d.", vehicleid);
    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.

Personal tools
Navigation
Toolbox
In other languages