[Ajuda] argument type mismatch. - 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 type mismatch. (
/showthread.php?tid=623999)
argument type mismatch. -
SukMathcuck - 09.12.2016
Olб a todos, tenho uma pergunta, devo adicionar "[]" em estoque?
PHP код:
stock CriarPersonagem(playerid, nome[])
PHP код:
stock CriarPersonagem(playerid, nome)
PHP код:
stock CriarPersonagem(playerid, nome)
{
new
nome[60];
format(nome, sizeof(nome), "debug: %s", nome);
SendClientMessage(playerid, -1, nome);
}
new nome[40];
strmid(nome, inputtext, 0, strlen(inputtext), 255);
CriarPersonagem(playerid, nome); //error
Quote:
\gamemode RP\gamemodes\gamemode.pwn(5902) : error 035: argument type mismatch (argument 2)
|
Eu sou um iniciante e estou aprendendo com vocк.
Re: argument type mismatch. -
zSuYaNw - 09.12.2016
Quote:
Originally Posted by SukMathcuck
Olб a todos, tenho uma pergunta, devo adicionar "[]" em estoque?
PHP код:
stock CriarPersonagem(playerid, nome[])
PHP код:
stock CriarPersonagem(playerid, nome)
PHP код:
stock CriarPersonagem(playerid, nome)
{
new
nome[60];
format(nome, sizeof(nome), "debug: %s", nome);
SendClientMessage(playerid, -1, nome);
}
new nome[40];
strmid(nome, inputtext, 0, strlen(inputtext), 255);
CriarPersonagem(playerid, nome); //error
Eu sou um iniciante e estou aprendendo com vocк.
|
Sim. Quando vocк adiciona [] ele se torna uma array/string assim podendo ser manipulados como string/textos.
Re: argument type mismatch. -
SukMathcuck - 09.12.2016
Resolvido, tуpico closed, reputado!