[Ajuda] Urgente me ajudem
#1

Код:
C:\Documents and Settings\Bruno Alves\Desktop\[TDM]Brasil Top Killers\filterscripts\rRace.pwn(7) : error 017: undefined symbol "ret_memcpy"
C:\Documents and Settings\Bruno Alves\Desktop\[TDM]Brasil Top Killers\filterscripts\rRace.pwn(573) : error 017: undefined symbol "isNumeric"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Estгo nessas linhas:
pawn Код:
#pragma unused \
    ret_memcpy
// e nessa
if(isNumeric(inputtext))
Reply
#2

pawn Код:
#pragma unused ret_memcpy

stock isNumeric(const string[])
{
  new length=strlen(string);
  if (length==0) return false;
  for (new i = 0; i < length; i++)
  {
    if (
       (string[i] > '9' || string[i] < '0' && string[i]!='-' && string[i]!='+')
       || (string[i]=='-' && i!=0)                                            
       || (string[i]=='+' && i!=0)                                          
       ) return false;
  }
  if (length==1 && (string[0]=='-' || string[0]=='+')) return false;
  return true;
}
Espero ter Ajudado
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)