SA-MP Forums Archive
Un error al compilar mi gm ayuda - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Un error al compilar mi gm ayuda (/showthread.php?tid=271461)



Un error al compilar mi gm ayuda - CarlosRodrigues - 24.07.2011

Bueno lo que aparece es esto:


C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(15566) : error 021: symbol already defined: "strtok"
C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(15581) : error 047: array sizes do not match, or destination array is too small
C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(20297) : error 047: array sizes do not match, or destination array is too small
C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(20517) : error 047: array sizes do not match, or destination array is too small
C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(22603) : error 047: array sizes do not match, or destination array is too small
C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(23054) : error 047: array sizes do not match, or destination array is too small
C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(2328 : error 047: array sizes do not match, or destination array is too small
C:\Users\Admin\Desktop\Roleplay Sunshine Espaсol\gamemodes\RP-RW.pwn(24011) : error 047: array sizes do not match, or destination array is too small
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


8 Errors.

El primer error es en esta linea:

}
strtok(const string[], &index)
{

Y en los otros errores eso de array sizes do not match, or destination array is to mall una linea tiene esto

x_nr = strtok(cmdtext, idx); y todas las demas tienen tambien el strtok

la linea completa del primer error es esto:

//SaveAccounts();
Checkprop();
return 1;
}
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;
}


Respuesta: Un error al compilar mi gm ayuda - GoldenDragon - 24.07.2011

te recomiendo poner los errores entre
pawn Код:
error
. Asi les sera mas facil al que te pueda ayudar...


Re: Un error al compilar mi gm ayuda - dis77urbio - 25.07.2011

Bueno el error del stock no recuerdo que include es el que ya lo tiene definido pero si estas usando cualqiera de estos tres (dutils, dudb o dini) entonces debes borrar ese stock de tu gm porque ahi te esta diciendo que ya esta definido, borra esto:

//-------------------------------//
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;
}
//----------------------------------------//

Y sobre los otros errores debes postear las lineas ^^


Respuesta: Un error al compilar mi gm ayuda - TiNcH010 - 25.07.2011

Esto me pasaba, actualiza los includes y hace todo en otra carpeta. Este problema es medio quiombo xD
PD: dis77urbio para postear codigos que sean pawn, usa lo siguiente:

[ pawn]texto[ /pawn] (sin dejar espacios xD)

^^