SA-MP Forums Archive
[Ajuda] error 035: argument type mismatch (argument 1) - 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] error 035: argument type mismatch (argument 1) (/showthread.php?tid=535971)



error 035: argument type mismatch (argument 1) - Alwe - 06.09.2014

Dando erro nas linhas

pawn Код:
TextDrawHideForAll(Kmh2);
        TextDrawDestroy(Kmh2);
Erros ao compilar

Код:
(57203) : error 035: argument type mismatch (argument 1)
(57204) : error 035: argument type mismatch (argument 1)



Re: error 035: argument type mismatch (argument 1) - FallweN - 06.09.2014

Vocк deve ter criado a textdraw com algum parametro e nгo colocou o parametro.

Tente Assim:

pawn Код:
for(new i; i < MAX_PLAYERS; i++)
{
    TextDrawHideForAll(Kmh2[i]);
    TextDrawDestroy(Kmh2[i]);
}



Re: error 035: argument type mismatch (argument 1) - Alwe - 06.09.2014

Quote:
Originally Posted by FallweN
Посмотреть сообщение
Vocк deve ter criado a textdraw com algum parametro e nгo colocou o parametro.

Tente Assim:

pawn Код:
for(new i; i < MAX_PLAYERS; i++)
{
    TextDrawHideForAll(Kmh2[i]);
    TextDrawDestroy(Kmh2[i]);
}
Jб tinha conseguido arrumar e era exatamente isso, mais obrigado mesmo assim