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.
PutPlayerInVehicle
Description
Puts a player in a vehicle.
Name | Description |
---|---|
playerid | The ID of the player to put in a vehicle. |
vehicleid | The ID of the vehicle to put the player in. |
seatid | The ID of the seat to put the player in. |
Returns
true - The function was executed successfully.
false - The function failed to execute. The player or vehicle don't exist.
Examples
public OnPlayerEnterVehicle(playerid, vehicleid, ispassanger)
{
PutPlayerInVehicle(playerid, vehicleid, 0);
return 1;
}
ID | Seat |
---|---|
0 | Driver |
1 | Front passenger |
2 | Back-left passenger |
3 | Back-right passenger |
4+ | Passenger seats (coach etc.) |
Notes
tip
You can use GetPlayerVehicleSeat in a loop to check if a seat is occupied by any players.
warning
If the seat is invalid or is taken, will cause a crash when they EXIT the vehicle.
Related Functions
- RemovePlayerFromVehicle: Throw a player out of their vehicle.
- GetPlayerVehicleID: Get the ID of the vehicle the player is in.
- GetPlayerVehicleSeat: Check what seat a player is in.
- GetVehicleSeats: Gets the number of seats in the vehicle.
Related Callbacks
- OnPlayerEnterVehicle: Called when a player starts to enter a vehicle.