01.07.2018, 21:07
Quote:
Alguйm sabe um mйtodo de como proibir o jogador de sair do veнculo usando Pawn.RakNet ou alguma coisa coisa?
Sem ser usar PutPlayerInVehicle pq ja tentei, funciona, mas fica bugado. |
bem deixo uma base que eu uso pra vc adaptar ai:
PHP код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
new Float:ptX, Float:ptY, Float:ptZ;
if(NaoPodeSairDoCarro[playerid])
{
GetPlayerPos(playerid, ptX, ptY, ptZ);
new pseat = GetPlayerVehicleSeat(playerid);
SetPlayerPos(playerid, ptX, ptY, ptZ);
PutPlayerInVehicle(playerid, vehicleid, pseat);
return 0;
}
return 1;
}