OnVehicleStreamIn
From SA-MP Wiki
Description:
Called when a vehicle is streamed to a player's client.
Note | This callback can also be called by NPC. |
(vehicleid, forplayerid)
vehicleid | The ID of the vehicle that streamed in for the player. |
forplayerid | The 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.
- OnVehicleStreamOut: Called when a vehicle streams out for a player.
- OnPlayerStreamIn: Called when a player streams in for another player.
- OnPlayerStreamOut: Called when a player streams out for another player.