[Ajuda] argument 2 - 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: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] argument 2 (
/showthread.php?tid=478584)
argument 2 -
Don_Speed - 30.11.2013
Ja perdi a pacienci com isso a segunda vez que refaзo e aconte isso
PHP код:
C:\Users\Usuario\Desktop\Servidor - RPG\gamemodes\Lista.pwn(25) : error 035: argument type mismatch (argument 2)
C:\Users\Usuario\Desktop\Servidor - RPG\gamemodes\Lista.pwn(29) : error 035: argument type mismatch (argument 2)
C:\Users\Usuario\Desktop\Servidor - RPG\gamemodes\Lista.pwn(30) : error 035: argument type mismatch (argument 2)
C:\Users\Usuario\Desktop\Servidor - RPG\gamemodes\Lista.pwn(53) : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
Linhs 25
pawn Код:
DOF2_SetString( CAMINHO , i , "Ninguem");
Linha 29
pawn Код:
if ( strcmp ( DOF2_GetString ( CAMINHO, i ), "Ninguem", true ) == 0 )
Linha 30
pawn Код:
DOF2_SetString ( CAMINHO, i , GetPlayerNome(playerid) );
Linha 53
pawn Код:
format(String, sizeof String, "Vaga %d | %s", i, DOF2_GetString ( CAMINHO, i ));
Me diga qual e meu erro , pois estou comentendo ele varias vezes .
Respuesta: argument 2 -
ViniKuliveguisky - 30.11.2013
Passa essa stock/format CAMINHO ai
Re: argument 2 -
Spyro - 30.11.2013
Esse 'i' que vocк estб procurando, estб setado como o que?
Se nгo estiver da forma correta, tente deste modo:
pawn Код:
Linhs 25
DOF2_SetString( CAMINHO , "Nome do que vocк estб Setando", "Ninguem");
Linha 29
if ( strcmp ( DOF2_GetString ( CAMINHO,"Nome do que vocк estб Procurando" ), "Ninguem", true ) == 0 )
Linha 30
DOF2_SetString ( CAMINHO, "Nome do que vocк estб Setando" , GetPlayerNome(playerid) );
Linha 53
format(String, sizeof String, "Vaga %d | %s", i, DOF2_GetString ( CAMINHO, "Nome do que vocк estб Procurando"));
Re: argument 2 -
Don_Speed - 01.12.2013
PHP код:
if(!DOF2_FileExists( CAMINHO )) {
for(new i; i < MAX_VAGAS; i++)
DOF2_SetString( CAMINHO , i , "Ninguem");
}
Este e um exemplo de como uso !
Re: argument 2 -
PT - 01.12.2013
mosta a defenicao de "CAMINHO"..
podera ser isso.
Respuesta: argument 2 -
DanDRT - 01.12.2013
i tem que ser uma string.
faz o seguinte.
pawn Код:
stock NumberToString(int)
{
new str[30];
format(str, sizeof(str), "%d", int);
return str;
}
ai tu usa nos DOF2
NumberToString(i)