warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
OnVehicleStreamIn
Description
This callback is called when a vehicle is streamed to a player's client.
Name | Description |
---|---|
vehicleid | The ID of the vehicle that streamed in for the player. |
forplayerid | The ID of the player who the vehicle streamed in for. |
Returns
It is always called first in filterscripts.
Examples
public OnVehicleStreamIn(vehicleid, forplayerid)
{
new string[32];
format(string, sizeof(string), "You can now see vehicle %d.", vehicleid);
SendClientMessage(forplayerid, 0xFFFFFFFF, string);
return 1;
}
Notes
tip
This callback can also be called by NPC.
Related Callbacks
- OnVehicleStreamOut: This callback is called when a vehicle streams out 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.