[Ajuda] Como resolver
#1

Olб pessoal do fуrum, eu estou fazendo um comando para habilitar e desabilitar a colisao entre os veiculos, mas estou salvando o valor 0 para habilitado e 1 para desabilitado mas quando compilo o gm da esses Warnings alguйm poderia me dizer o que estб errado?

pawn Код:
CMD:colisao(playerid)
{
    if (APlayerData[playerid][Colisao] == 0)// 1197
    {
        DisableRemoteVehicleCollisions(playerid, 1);
        APlayerData[playerid][Colisao] = 1;// 1200
        GameTextForPlayer(playerid, "~w~Colisao ~g~desabilitada~w~!", 5000, 4);
    }
    if (APlayerData[playerid][Colisao] == 1)// 1203
    {
        DisableRemoteVehicleCollisions(playerid, 0);
        APlayerData[playerid][Colisao] = 0;//1206
        GameTextForPlayer(playerid, "~w~Colisao ~r~habilitada~w~!", 5000, 4);
    }
    return 1;
}
pawn Код:
// Cria uma linha no arquivo que vai ficar salvo
    format(LineForFile, 100, "Colisao %i\r\n", APlayerData[playerid][Colisao]);
    fwrite(PFile, LineForFile);
    // Carrega o valor
    if (strcmp(ParameterName, "Colisao", false) == 0)
        APlayerData[playerid][Colisao] = strval(ParameterValue); // linha 248 da Include PPC_FileOperatios
    // Salva o valor
    format(LineForFile, 100, "Colisao %i\r\n", APlayerData[playerid][Colisao]);
    fwrite(PFile, LineForFile);
Warnings
pawn Код:
C:\Users\Darth\Documents\PPC_Trucking\pawno\include\PPC_FileOperations.inc(248) : warning 213: tag mismatch
C:\Users\Darth\Documents\PPC_Trucking\gamemodes\Gm.pwn(1197) : warning 213: tag mismatch
C:\Users\Darth\Documents\PPC_Trucking\gamemodes\Gm.pwn(1200) : warning 213: tag mismatch
C:\Users\Darth\Documents\PPC_Trucking\gamemodes\Gm.pwn(1203) : warning 213: tag mismatch
C:\Users\Darth\Documents\PPC_Trucking\gamemodes\Gm.pwn(1206) : warning 213: tag mismatch
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


5 Warnings.
Desde jб agradeзo .
Reply


Messages In This Thread
Como resolver - by DarthVeider - 08.01.2017, 19:13
Re: Como resolver - by Whoo - 08.01.2017, 19:16
Re: Como resolver - by DarthVeider - 08.01.2017, 19:23
Re: Como resolver - by Whoo - 08.01.2017, 19:38
Re: Como resolver - by [BOPE]Seu._.Madruga - 09.01.2017, 10:39
Re: Como resolver - by DarthVeider - 09.01.2017, 15:00

Forum Jump:


Users browsing this thread: 1 Guest(s)