[Ajuda][Error]Problemas no sistema!
#8

Quote:
Originally Posted by tonisantolia
Посмотреть сообщение
WTF? para que esses 2 (())?
pawn Код:
public OnPlayerStateChange(playerid,newstate,oldstate){
    new Veiculo = GetPlayerVehicleID(playerid);
    for(new c = 0; c < sizeof CarrosAdm; c++){
        if(Veiculo == CarrosAdm[c]){
            if(PlayerDados[playerid][Admin] < 1){
                RemovePlayerFromVehicle(playerid);
                Msg(playerid, CINZA, "Vocк precisa ser admin para usar este Veiculo.");
            }
        }
    }
    return 1;
}
Funcional sem precisar da callback OnPlayerEnterVehicle.

@EDIT:

Correto:
pawn Код:
public OnPlayerStateChange(playerid,newstate,oldstate){
    new Veiculo = GetPlayerVehicleID(playerid);
    if(newstate == PLAYER_STATE_DRIVER){
        for(new c = 0; c < sizeof CarrosAdm; c++){
            if(Veiculo == CarrosAdm[c]){
                if(PlayerDados[playerid][Admin] < 1){
                    RemovePlayerFromVehicle(playerid);
                    Msg(playerid, CINZA, "Vocк precisa ser admin para usar este Veiculo.");
                }
            }
        }
    }
    return 1;
}
nem notei isso , ae passei rapidamente em cima do cуdigo , nada que retirar as duas () nгo resolva .
Reply


Messages In This Thread
[Ajuda][Error]Problemas no sistema! - by brayon1997 - 03.02.2013, 17:54
Re: [Ajuda][Error]Problemas no sistema! - by Blix - 03.02.2013, 17:58
Re: [Ajuda][Error]Problemas no sistema! - by brayon1997 - 03.02.2013, 18:04
Re: [Ajuda][Error]Problemas no sistema! - by Blix - 03.02.2013, 18:07
Re: [Ajuda][Error]Problemas no sistema! - by brayon1997 - 03.02.2013, 18:11
Re: [Ajuda][Error]Problemas no sistema! - by Blix - 03.02.2013, 18:17
Re: [Ajuda][Error]Problemas no sistema! - by tonisantolia - 03.02.2013, 18:23
Re: [Ajuda][Error]Problemas no sistema! - by Blix - 03.02.2013, 18:28
Re: [Ajuda][Error]Problemas no sistema! - by brayon1997 - 03.02.2013, 18:35

Forum Jump:


Users browsing this thread: 1 Guest(s)