02.01.2013, 20:58
Quote:
ok gracias. pero me salieron otros
Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11405) : error 021: symbol already defined: "strtok" C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11420) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15341) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15846) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16108) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16595) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19418) : warning 219: local variable "mod" shadows a variable at a preceding level C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(44701) : error 017: undefined symbol "IsNumeric" C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(44737) : warning 203: symbol is never used: "ret_memcpy" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 7 Errors. |
Arre
pawn Код:
#pragma unused ret_memcpy // esto arriba de tu gm abajo de los includes
IsNumeric(const string[]) // esto abajo en tu gm
{
for (new i = 0, j = strlen(string); i < j; i++)
{
if (string[i] > '9' || string[i] < '0') return 0;
}
return 1;
}