PutPlayerInVehicle IT
From SA-MP Wiki
Description:
Fa entrare un giocatore in un veicolo.
(playerid,vehicleid,seatid)
playerid | ID del giocatore da far entrare nel veicolo. |
vehicleid | ID del veicolo in cui far entrare il giocatore. |
seatid | ID del sedile in cui far salire il giocatore. |
Return Questa funzione non restituisce un valore specifico
ID dei sedili:
0 - Guidatore 1 - Sedile anteriore 2 - Sedile posteriore sinistro 3 - Sedile posteriore destro 4+ - Altri sedili (autobus, limousine, ...)
public OnPlayerEnterVehicle(playerid,vehicleid,ispassanger) { PutPlayerInVehicle(playerid, vehicleid, 0); return 1; }
Important | Se il sedile non è valido o già occupato, il gioco andrà in crash quando il giocatore uscirà dal veicolo. |
TIP: Usa GetPlayerVehicleSeat in un loop per verificare se un posto è disponibile.
Funzioni simili
- RemovePlayerFromVehicle: Fa uscire un giocatore dal suo veicolo.
- GetPlayerVehicleID: Restituisce l'ID del veicolo di un giocatore.
- GetPlayerVehicleSeat: Restituisce l'ID del sedile in cui è seduto un giocatore.
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.