Preskoči na vsebino

OnVehicleStreamIn

Description​

This callback is called when a vehicle is streamed to a player's client.

NameDescription
vehicleidThe ID of the vehicle that streamed in for the player.
forplayeridThe 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​

namig

This callback can also be called by NPC.

  • 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.