[AJUDA] Erro
#1

Preciso de mais uma ajuda pessoal, seguinte estб dando este seguinte erro

Код:
D:\Miqueias\Outras coisas\SAMP\BWP\gamemodes\lvdm.pwn(637) : error 017: undefined symbol "strrest"
D:\Miqueias\Outras coisas\SAMP\BWP\gamemodes\lvdm.pwn(637) : error 033: array must be indexed (variable "gMessage")
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Esta й a linha de erro, que no caso o erro й na mesma linha

pawn Код:
gMessage = strrest(cmdtext,idx);
Por favoor !!! ME AJUDEMM....
Reply
#2

strcat( gMessage , strrest(cmdtext,idx) );
Reply
#3

Coloque isto no seu gamemode:
pawn Код:
stock strrest(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }
    new offset = index;
    new result[128];
    while ((index < length) && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}
Reply
#4

Prontinho, muito obrigado Dr Pawno, vocк й shoooooooooooow

Manda teu msn ae pela mensagem privada?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)