[AJUDA] Warnings
#1

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;
    }
}
Reply
#2

qual a linha do warning?
Reply
#3

A terceira do codigo,

pawn Код:
new Nome[MAX_PLAYER_NAME], stg[80];
Reply
#4

pawn Код:
new stg[80];
Coloque assim.
Reply
#5

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
Reply
#6

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.
Reply
#7

Aee, funcionou (Y'
Toma seu Rep ae
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)