SA-MP Forums Archive
[Ajuda] Ajuda + rep , porfavor - 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] Ajuda + rep , porfavor (/showthread.php?tid=376841)



Ajuda + rep , porfavor - Petrick™ - 11.09.2012

Bom Galera eu coloquei este sistema de blindagem no meu gm tudo certo mais quando compilo da erro olhe

Sistema
PHP код:
new Blindagem[MAX_VEHICLES];
public 
OnPlayerCommandText(playeridcmdtext[]) {
    if(!
strcmp(cmdtext"/blindar"true)) {
        if(!
IsPlayerInAnyVehicle(playerid))
            return 
false;
        
SendClientMessage(playerid, -1"Blindagem adcionada");
        
Blindagem[GetPlayerVehicleID(playerid)] = 1000;
        
RepairVehicle(GetPlayerVehicleID(playerid));
        return 
1;
    }
    if(!
strcmp(cmdtext"/verblindagem"true)) {
        if(!
IsPlayerInAnyVehicle(playerid))
            return 
false;
        new 
s[50];
        
format(s50"Esse veнculo tem %i de blindagem"Blindagem[GetPlayerVehicleID(playerid)]);
        
SendClientMessage(playerid, -1s);
        return 
true;
    }
    return 
false;
}
public 
OnVehicleDamageStatusUpdate(vehicleidplayerid) {
    if(
Blindagem[vehicleid] > 0) {
        
Blindagem[vehicleid] --;
        
RepairVehicle(vehicleid);
        if(!
Blindagem[vehicleid]) {
            
SendClientMessage(playerid, -1"Blindagem acabou..!");
        }
    }
    return 
true;

erro
PHP код:
C:\Documents and Settings\Petrick\Desktop\SV11\gamemodes\BM.pwn(15004) : error 029invalid expressionassumed zero
C
:\Documents and Settings\Petrick\Desktop\SV11\gamemodes\BM.pwn(15004) : error 029invalid expressionassumed zero
C
:\Documents and Settings\Petrick\Desktop\SV11\gamemodes\BM.pwn(15023) : warning 225unreachable code
C
:\Documents and Settings\Petrick\Desktop\SV11\gamemodes\BM.pwn(47365) : error 021symbol already defined"OnVehicleDamageStatusUpdate"
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
3 Errors




Re: Ajuda + rep , porfavor - Douglas_prt - 11.09.2012

Assinale as linhas que estгo dando erro pff...


Re: Ajuda + rep , porfavor - Coreia - 11.09.2012

Poste as linhas dos erros grato


Re: Ajuda + rep , porfavor - BreakDriFT - 11.09.2012

Ja tem uma public com o mesmo nome OnVehicleDamageStatusUpdate


Re: Ajuda + rep , porfavor - Petrick™ - 11.09.2012

Quote:
Originally Posted by BreakDriFT
Посмотреть сообщение
Ja tem uma public com o mesmo nome OnVehicleDamageStatusUpdate
Mais como eu arrumo ?


Re: Ajuda + rep , porfavor - arakuta - 11.09.2012

Simples, troca o nome de uma (nгo da original, a criada '-')