pawn Код:
if(newstate == PLAYER_STATE_DRIVER)
{
for(new i = 0; i < MAX_CARS; i++)
{
if(MAX_CARS == caminhoes[i])
{
if(dini_Int(file2, "Profissao") == Caminhoneiro)
{
return 1;
}
else
{
SendClientMessage(playerid, 0xD900D3FF, "Apenas caminhoneiros podem utilizar este veiculo.");
RemovePlayerFromVehicle(playerid);
}
}
}
}