[Ajuda] Problemas com erro 33 e erro 17 na mesma linha
#1

estгo aparecendo os seguintes erros:

Code:
C:\Users\Sonic\Desktop\SAMPFOREVER\pawno\include\SAMsites0.4.inc(360) : error 004: function "OnSamSiteRestarted" is not implemented
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33205) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33205) : error 033: array must be indexed (variable "cmd")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33276) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33275) : warning 203: symbol is never used: "lidx"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33516) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33516) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33539) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33539) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33565) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33565) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33918) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33918) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33925) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(33925) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34450) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34450) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34488) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34488) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34524) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34524) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34564) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34564) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34588) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34588) : error 033: array must be indexed (variable "tmp")
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34610) : error 017: undefined symbol "strtok"
C:\Users\Sonic\Desktop\TESTE VILA\gamemodes\BVOv7.pwn(34610) : error 033: array must be indexed (variable "tmp")

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.
e essas linhas sгo:

Code:
tmp = strtok(cmdtext, idx);
todas essas linhas (3461,34588 e etc) sгo esta mesma frase...oq eu faзo? ja tentei usar search mais ta dificil
Reply
#2

Coloca no final do Game Mode Tenso '-'
PHP Code:
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
#3

Obrigado manolo amo vc kkk /zoa agora sу fico 1 erro

Code:
C:\Users\Sonic\Desktop\SAMPFOREVER\pawno\include\SAMsites0.4.inc(360) : error 004: function "OnSamSiteRestarted" is not implemented
vc sabe onde eu posso conseguir essa include ou como resolver essa funзгo nao implementada? :S
Reply
#4

Include Aqui Click ae
Reply
#5

Obrigado,me ajuda na minha ultima questгo ali? =)
Reply
#6

Quote:
Originally Posted by Sonik_Paintballer
View Post
Obrigado,me ajuda na minha ultima questгo ali? =)
Qual?
Reply
#7

"Not" implemented й quando vocк estб usando de forma incorreta,
ou seja, com parвmetros incorretos.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)