[AJUDA] Warnings - 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] Warnings (
/showthread.php?tid=298255)
[AJUDA] Warnings -
Hashtag - 19.11.2011
Preciso de ajuda. Ta dando apenas um Warning em um comando que adicionei em meu Gamemode. Quem poder me ajudar, por favor me de a soluзгo nos comentarios.
Warning
C:\Documents and Settings\Hwak v1\Meus documentos\Hwak World v2.0\Server\gamemodes\hwakworld.pwn(915) : warning 219: local variable "Nome" shadows a variable at a preceding level
Codigo
pawn Код:
if(strcmp(cmdtext, "/dia", true) == 0)
{
new Nome[MAX_PLAYER_NAME], stg[80];
GetPlayerName(playerid, Nome, sizeof(Nome));
if(IsPlayerAdmin(playerid))
{
format(stg, sizeof(stg), "O administrador %s alterou o tempo para 12:00", Nome);
SendClientMessageToAll(-1, stg);
SetWorldTime(12);
}
else
{
SendClientMessage(playerid, -1, "* Vocк nгo й administrador.");
return 1;
}
}
Re: [AJUDA] Warnings -
Slayer1 - 19.11.2011
qual a linha do warning?
Re: [AJUDA] Warnings -
Hashtag - 19.11.2011
A terceira do codigo,
pawn Код:
new Nome[MAX_PLAYER_NAME], stg[80];
Re: [AJUDA] Warnings -
Ghost_ - 19.11.2011
Coloque assim.
Re: [AJUDA] Warnings -
Hashtag - 19.11.2011
pawn Код:
C:\Documents and Settings\Hwak v1\Meus documentos\Hwak World v2.0\Server\gamemodes\hwakworld.pwn(916) : error 076: syntax error in the expression, or invalid function call
C:\Documents and Settings\Hwak v1\Meus documentos\Hwak World v2.0\Server\gamemodes\hwakworld.pwn(916) : error 072: "sizeof" operator is invalid on "function" symbols
C:\Documents and Settings\Hwak v1\Meus documentos\Hwak World v2.0\Server\gamemodes\hwakworld.pwn(919) : error 076: syntax error in the expression, or invalid function call
Re: [AJUDA] Warnings -
Pharrel - 19.11.2011
pawn Код:
if(strcmp(cmdtext, "/dia", true) == 0)
{
new Nomep[MAX_PLAYER_NAME], stg[80];
GetPlayerName(playerid, Nomep, sizeof(Nomep));
if(IsPlayerAdmin(playerid))
{
format(stg, sizeof(stg), "O administrador %s alterou o tempo para 12:00", Nomep);
SendClientMessageToAll(-1, stg);
SetWorldTime(12);
}
else return SendClientMessage(playerid, -1, "* Vocк nгo й administrador.");
}
vc ja tem uma variavel Nome global ou na mesma funзгo.
Re: [AJUDA] Warnings -
Hashtag - 19.11.2011
Aee, funcionou (Y'
Toma seu Rep ae