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