PutPlayerInVehicle
From SA-MP Wiki
PutPlayerInVehicle
Puts a player in a vehicle
(playerid,vehicleid,seatid)
| playerid | The ID of the player to put in a vehicle |
| vehicleid | The ID of the vehicle for the player to be put in |
| seatid | The ID of the seat to put the player in |
This function does not return a specific value.
Seats:
0 - Driver 1 - Front Passenger 2 - Back left passenger 3 - Back right passenger 4+ - Passenger seats (coach etc.)
public OnPlayerEnterVehicle(playerid,vehicleid,ispassanger) { PutPlayerInVehicle(playerid, vehicleid, 0); return 1; }
Important Note: If the seat is invalid or is taken, will cause a crash when they EXIT the car.
TIP: Use GetPlayerVehicleSeat in a loop to check if a seat is available.
Related Functions
The following functions might be useful as well, as they're related to this function in one way or another.
- 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.
Related Callbacks
The following callbacks might be useful, as they're related to this function in one way or another.
- OnPlayerEnterVehicle: Called when a player starts to enter a vehicle.
