[Ajuda] Loop para no 10
#1

Este Loop й programado para parar no 120 mбs por algum motivo para no 10... ou seja cria apenas atй o pixe numero 9 mesmo se a String das contas existir.. se alguйm souber pq... jб 7 da manhг e eu nгo dormi deve se por isso que ainda nгo vi o erro


pawn Код:
forward loadpixe();
public loadpixe()
{
    for(new i = 0; i <= 120; i++)
    {
        format(String, 25, "Propriedades/Pixes/%d.ini", i);
       

        if(fexist(String))
        {

            format(PixeInfo[i][Pixador], 24, DOF2_GetString(String, "Pixador"));
            format(PixeInfo[i][OrgPixadora], 128, DOF2_GetString(String, "Org"));
            PixeInfo[i][PixeX] = DOF2_GetFloat(String, "EntradaX");
            PixeInfo[i][PixeY] = DOF2_GetFloat(String, "EntradaY");
            PixeInfo[i][PixeZ] = DOF2_GetFloat(String, "EntradaZ");
            PixeInfo[i][Pixado] = DOF2_GetInt(String, "TaPixada");
            nPixe ++;

            if(!strcmp(PixeInfo[i][Pixador], "Ninguem", true))
            {
                format(TextPixe, 510, "Pixador Atual: "AMARELO"Ninguem\n"BRANCO2"Org Pixadora: "AMARELO"Nenhuma\n"BRANCO2"Pixe ID: "AMARELO"%d\n"BRANCO2"Com o spay aguarde 5 segundos para pixar!.", i);
                TextoPixe[i] = CreateDynamic3DTextLabel(TextPixe, -1, PixeInfo[i][PixeX], PixeInfo[i][PixeY], PixeInfo[i][PixeZ], 10.0);
            }
            else
            {
                format(TextPixe, 510, "Pixador Atual: "AMARELO"%s\n"BRANCO2"Org Pixadora: "AMARELO"%s\n"BRANCO2"Pixe ID: "AMARELO"%d\n"BRANCO2"Com o spay aguarde 5 segundos para pixar!.", PixeInfo[i][Pixador],PixeInfo[i][OrgPixadora], i);
                TextoPixe[i] = CreateDynamic3DTextLabel(TextPixe, -1, PixeInfo[i][PixeX], PixeInfo[i][PixeY], PixeInfo[i][PixeZ], 10.0);

            }

        }

       

    }
    printf("[PIXAЗГO] %d PIXES CARREGADOS COM SUCESSO!", nPixe);
    return 1;
}
Reply
#2

no loop nгo tem erros, o problema esta nos arquivos que estгo sendo verificados. Com certeza esta faltando arquivos porque ele faz a contagem somente de arquivos existentes.
Reply
#3

Troca
pawn Код:
format(String, 25, "Propriedades/Pixes/%d.ini", i);
Por
pawn Код:
format(String, 27, "Propriedades/Pixes/%d.ini", i);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)