[Ajuda] Porque esta dando esses warnings
#3

Isso ocorre como o ArthurxD disse acima por existir variбveis como o mesmo nome. Sendo uma global e a outra ou as outras locais:
pawn Код:
new string[60]; // Variбvel global

public OnPlayerSpawn(playerid)
{
    new string[60]; //Variбvel Local
    return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    new string[60]; //Variбvel Local
    return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
    new string[60]; //Variбvel Local
    return 1;
}
O exemplo acima resultara em alguns avisos.
Reply


Messages In This Thread
Porque esta dando esses warnings - by joaobgnc - 27.10.2014, 16:31
Re: Porque esta dando esses warnings - by ArthurxD - 27.10.2014, 16:36
Re: Porque esta dando esses warnings - by MultiKill - 27.10.2014, 16:46

Forum Jump:


Users browsing this thread: 2 Guest(s)