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.
IsPlayerInVehicle
Descrição
Verifica se um jogador está em um veículo específico.
Nome | Descrição |
---|---|
playerid | ID do jogador. |
vehicleid | ID do veículo. Nota: NÃO é o modelid! |
Retornos
true - O jogador ESTÁ no veículo.
false - O jogador NÃO está no veículo.
Exemplos
new gSpecialCar;
public OnGameModeInit()
{
gSpecialCar = AddStaticVehicle(411, 0.0, 0.0, 5.0, 0.0, -1, -1);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/gSpecialCar", true) == 0)
{
if (IsPlayerInVehicle(playerid, gSpecialCar))
{
SendClientMessage(playerid, -1, "Você está no carro especial!");
}
return 1;
}
return 0;
}
Funções Relacionadas
- IsPlayerInAnyVehicle: Verifica se um jogador está em qualquer veículo.
- GetPlayerVehicleSeat: Verifica em qual assento o jogador está.