Qual erro Aquie ?
#1

Aki os Erros :
PHP код:
C:\Users\ulisses-pc\Documents\Start Life\gamemodes\bpn10.pwn(15804) : error 021symbol already defined"strtok"
C:\Users\ulisses-pc\Documents\Start Life\gamemodes\bpn10.pwn(15819) : error 047: array sizes do not match, or destination array is too small
C
:\Users\ulisses-pc\Documents\Start Life\gamemodes\bpn10.pwn(18664) : warning 219local variable "mod" shadows a variable at a preceding level 

Locais Do Erro

PHP код:
strtok(const string[], &index)
{
    new 
length strlen(string);
    while ((
index length) && (string[index] <= ' '))
    {
        
index++;
    }
    new 
offset index;
    new 
result[20];
    while ((
index length) && (string[index] > ' ') && ((index offset) < (sizeof(result) - 1)))
    {
        
result[index offset] = string[index];
        
index++;
    }
    
result[index offset] = EOS;
    return 
result;

Reply
#2

Apague isto e compile
Reply
#3

ou entao mude de strtok para strtok2
pawn Код:
strtok2(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }

    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}
Reply
#4

Valeu Lucas Apaguei e o Do Mod Sу Fiz Mudar para Mod2
Reply
#5

nada ^^
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)