SA-MP Forums Archive
[Ajuda] IsPlayerInAnyVehicle retornando 0 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] IsPlayerInAnyVehicle retornando 0 (/showthread.php?tid=571056)



IsPlayerInAnyVehicle retornando 0 - minimessi10 - 15.04.2015

Entгo, do nada a funзгo
pawn Код:
IsPlayerInAnyVehicle
retorna 0 mesmo um player estando em um veiculo. Tentei usar
pawn Код:
GetPlayerState(playerid) == PLAYER_STATE_DRIVER
E dava no mesmo que nгo estбr em um veiculo, alguйm sabe oq pode ser ?


Re: IsPlayerInAnyVehicle retornando 0 - Hardware - 15.04.2015

Tem como mostrar como vocк estб utilizando o IsPlayerInAnyVehicle?


Re: IsPlayerInAnyVehicle retornando 0 - minimessi10 - 15.04.2015

pawn Код:
if(!IsPlayerConnected(playerid))
{
    SendClientMessage(playerid, COR_VERMELHO, "| ERRO | Vocк nгo estб em um veiculo!");
    return 1;
}



Re: IsPlayerInAnyVehicle retornando 0 - Dayvison_ - 15.04.2015

Quote:
Originally Posted by minimessi10
Посмотреть сообщение
pawn Код:
if(!IsPlayerConnected(playerid))
{
    SendClientMessage(playerid, COR_VERMELHO, "| ERRO | Vocк nгo estб em um veiculo!");
    return 1;
}
Use:
pawn Код:
if(!IsPlayerInAnyVehicle(playerid))
{
    SendClientMessage(playerid, COR_VERMELHO, "| ERRO | Vocк nгo estб em um veiculo!");
    return 1;
}



Re: IsPlayerInAnyVehicle retornando 0 - ProKillerpa - 15.04.2015

IsPlayerConnected verificarб se o player estб conectado, pelo meu ver vocк apenas se confundiu com IsPlayerInAnyVehicle.