[Ajuda] Nгo executando a funcao
#1

Olhem sу esse code
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)
                {
                    SendClientMessage(playerid, 0xD900D3FF, "Apenas caminhoneiros podem utilizar este veiculo.");
                    RemovePlayerFromVehicle(playerid);
                }
            }
        }
    }
Quando um player entra no caminhгo exclusivo para a profissгo caminhoneiro nгo executa nenhuma mensagem e nгo tira ele do veiculo
Alguem sabe oq pode ser?
Reply
#2

Olб

tenta isto;

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)
            {
                SendClientMessage(playerid, 0xD900D3FF, "Apenas caminhoneiros podem utilizar este veiculo.");
                RemovePlayerFromVehicle(playerid);
            }
        }
    }
}
PT
Reply
#3

pawn Код:
if(!dini_Int(file2, "Profissao") = Caminhoneiro)
??

==
Reply
#4

Quote:
Originally Posted by PT
Посмотреть сообщение
Olб

tenta isto;

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)
            {
                SendClientMessage(playerid, 0xD900D3FF, "Apenas caminhoneiros podem utilizar este veiculo.");
                RemovePlayerFromVehicle(playerid);
            }
        }
    }
}
PT
Dб isso
pawn Код:
warning 213: tag mismatch
Linha
pawn Код:
if(!dini_Int(file2, "Profissao") == Caminhoneiro)
Reply
#5

Quote:
Originally Posted by Serjnrg
Посмотреть сообщение
Dб isso
pawn Код:
warning 213: tag mismatch
Linha
pawn Код:
if(!dini_Int(file2, "Profissao") == Caminhoneiro)
Ola

Tenta assim;

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);
            }
        }
    }
}
Reply
#6

Quote:
Originally Posted by PT
Посмотреть сообщение
Ola

Tenta assim;

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);
            }
        }
    }
}
Agora sim!!!!
Valeu mesmo mano.

+rep
Reply
#7

Cade a localizaзгo da file2

#edit postei junto com o cara
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)