[Ajuda] Duvida erro "symbol is never used" - 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] Duvida erro "symbol is never used" (
/showthread.php?tid=649721)
Duvida erro "symbol is never used" -
SKGuStAvO - 14.02.2018
Bom eu queria criar um comando sу que da esse erro:
Comando:
CMD:av(playerid)
{
if(PlayerInfo[playerid])
{
format(string, sizeof(string), "teste", sendername);
SendClientMessageToAll(string);
}
return true;
}
Erro: warning: 203: symbol is never used: "av"
Se alguйm souber agradeзo desde jб!
Re: Duvida erro "symbol is never used" -
AdrianoStk - 14.02.2018
acontece o mesmo se vocк trocar o nome?
Exemplo em vez de av colocar ava? Da o mesmo aviso?
Re: Duvida erro "symbol is never used" -
SKGuStAvO - 14.02.2018
Com qualquer nome que eu colocar kk, isso me persegue .-
Re: Duvida erro "symbol is never used" -
Marllun - 14.02.2018
Nгo й um erro й um aviso, mostrando que alguma variбvel nгo estб sendo usada.
Vocк nгo tem a include zcmd na gm.
PHP код:
CMD:av(playerid)
{
new stringg[48];
static nomep[24];
if(PlayerInfo[playerid])
{
GetPlayerName(playerid,nomep, 24);
format(stringg, sizeof(stringg), "| Teste | Seu nome й: %s", nomep);
SendClientMessageToAll(-1, stringg);
}
return true;
}
Re: Duvida erro "symbol is never used" -
SKGuStAvO - 14.02.2018
Eu tenho sim o zcmd kkk
Coloquei #include <zcmd> no comeзo e deu man vlw <3