SA-MP Forums Archive
[AJUDA] utils maldito - 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] utils maldito (/showthread.php?tid=199258)



[AJUDA] utils maldito - buhrer - 14.12.2010

Bom a tempo esse comando esta me deixando puto da cara ¬¬
sempre que vou compilar algum pwn aparece sempre essa ******* dessa msg:

fatal error 100: cannot read from file: "utils"

linha:

#include <utils>

o pior que eu tenho na mesma pasta pawn as 74 includes ¬¬

alguem me ajuda a mandar esse erro pra casa da mae joana, que isso ja ta me deixando irritado


Re: [AJUDA] utils maldito - blackwave - 14.12.2010

Vc tenque colocar em isso na pasta include, que fica dentro da pasta pawno, que fica da pasta do seu server. Alem disso, cheque se o nome da include estб correta, e se й um arquivo do tipo INC


Re: [AJUDA] utils maldito - rjjj - 14.12.2010

No topo do seu GM troque:

pawn Код:
#include <utils>
por

pawn Код:
//#include <utils>

Depois adicione no final do seu gamemode:

pawn Код:
stock IsNumeric(const string[])
{
    for (new i = 0, j = strlen(string); i < j; i++)
    {
        if (string[i] > '9' || string[i] < '0') return 0;
    }
    return 1;
}

stock ReturnUser(text[], playerid = INVALID_PLAYER_ID)
{
    new pos = 0;
    while (text[pos] < 0x21) // Strip out leading spaces
    {
        if (text[pos] == 0) return INVALID_PLAYER_ID; // No passed text
        pos++;
    }
    new userid = INVALID_PLAYER_ID;
    if (IsNumeric(text[pos])) // Check whole passed string
    {
        // If they have a numeric name you have a problem (although names are checked on id failure)
        userid = strval(text[pos]);
        if (userid >=0 && userid < MAX_PLAYERS)
        {
            if(!IsPlayerConnected(userid))
            {
                /*if (playerid != INVALID_PLAYER_ID)
                {
                    SendClientMessage(playerid, 0xFF0000AA, "User not connected");
                }*/

                userid = INVALID_PLAYER_ID;
            }
            else
            {
                return userid; // A player was found
            }
        }
        /*else
        {
            if (playerid != INVALID_PLAYER_ID)
            {
                SendClientMessage(playerid, 0xFF0000AA, "Invalid user ID");
            }
            userid = INVALID_PLAYER_ID;
        }
        return userid;*/

        // Removed for fallthrough code
    }
    // They entered [part of] a name or the id search failed (check names just incase)
    new len = strlen(text[pos]);
    new count = 0;
    new name[MAX_PLAYER_NAME];
    for (new i = 0; i < MAX_PLAYERS; i++)
    {
        if (IsPlayerConnected(i))
        {
            GetPlayerName(i, name, sizeof (name));
            if (strcmp(name, text[pos], true, len) == 0) // Check segment of name
            {
                if (len == strlen(name)) // Exact match
                {
                    return i; // Return the exact player on an exact match
                    // Otherwise if there are two players:
                    // Me and MeYou any time you entered Me it would find both
                    // And never be able to return just Me's id
                }
                else // Partial match
                {
                    count++;
                    userid = i;
                }
            }
        }
    }
    if (count != 1)
    {
        if (playerid != INVALID_PLAYER_ID)
        {
            if (count)
            {
                SendClientMessage(playerid, 0xFF0000AA, "Multiple users found, please narrow earch");
            }
            else
            {
                SendClientMessage(playerid, 0xFF0000AA, "No matching user found");
            }
        }
        userid = INVALID_PLAYER_ID;
    }
    return userid; // INVALID_USER_ID for bad return
}


Pronto, agora irб compilar normal.


Espero ter ajudado


Re: [AJUDA] utils maldito - buhrer - 15.12.2010

Bommmmmmm , como sempre ageita uma coisa da erro em outra ¬¬

fatal error 100: cannot read from file: "morphinc"


Re: [AJUDA] utils maldito - Pierox_ - 15.12.2010

manow tipo, talvez o pawno que tu ta abrindo teu gm, nao eh o que ta na pasta do seu server que esta completo, tenta clicar com o botao direito, "abrir com" e acha o pawno da pasta do seu server e tenta de novo


Re: [AJUDA] utils maldito - KevinsL - 15.12.2010

Baixa este pack de includes: http://www.mundosamp.com/include/pack-de-includes


Re: [AJUDA] utils maldito - egonzks - 15.12.2010

Coloque a include junto as pastas do server e faзa assim. Pois as vezes msm a include estando la nao й encontrada

pawn Код:
#include "../NomePasta/utils"



Re: [AJUDA] utils maldito - buhrer - 16.12.2010

vlw galera


Re: [AJUDA] utils maldito - iShady - 23.12.2010

pessoal aqui fiz isso que rjjj postou deu certo, mas ainda deu erro de outra include "cpstream"

ja baixei pack de includes coloquei certo n da certo tmb