[HELP] AntiCheat does not work with GF (Checked 3 already)!
#3

Quote:
Originally Posted by WrathOfGenesis
Quote:

good thing i got LARP! i got DUCK on ma ass

Do you need some medication? lol

Nakash, from what it says, you have defined playermoney in such a way that it is defined twice at some point. Also, for the other errors you need strtok.

Add this to the bottom of your script. Strtok is not my work and i will take no credit for it.

pawn Код:
stock strtok(const str[], &index,seperator=' ')
{
    new length = strlen(str);
    new offset = index;
    new result[MAX_STRING];
    while ((index < length) && (str[index] != seperator) && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = str[index];
        index++;
    }

    result[index - offset] = EOS;
    if ((index < length) && (str[index] == seperator))
    {
        index++;
    }
    return result;
}
Thank you but i solved it,i put #include <dudb> after #include <anticheat>.
thanks again
Reply


Messages In This Thread
[HELP] AntiCheat does not work with GF (Checked 3 already)! - by Nakash - 27.08.2009, 08:10
Re: [HELP] AntiCheat does not work with GF (Checked 3 already)! - by WrathOfGenesis - 27.08.2009, 08:31
Re: [HELP] AntiCheat does not work with GF <SOLVED> - by Nakash - 27.08.2009, 08:49

Forum Jump:


Users browsing this thread: 1 Guest(s)