[Ajuda] Como remover estes Warnings da GM
#6

A variбvel string jб existe, e vocк recriou ela, sу nгo deu erro por vocк criar uma variбvel global e uma local, foi criada uma variбvel chamada string na include dutils e no Game Mode globaldiv.
Entгo se vocк criou a variбvel global na include, nгo precisa criar no game mode. Entгo se a variбvel nгo for global na include recomendo renomear a variбvel string para outro nome do game mode.

Exemplo:

Assim darб aviso:
pawn Код:
#include <a_samp>

new string[128];

public OnPlayerConnect(playerid)
{
    new string[128];
    return 1;
}
Para remover:

Primeira opзгo: remover a global ou a local.
pawn Код:
#include <a_samp>

new string[128];

public OnPlayerConnect(playerid)
{
    return 1;
}

//ou

#include <a_samp>

public OnPlayerConnect(playerid)
{
    new string[128];
    return 1;
}
Segunda opзгo renomear a variбvel global ou local:
pawn Код:
#include <a_samp>

new string[128];

public OnPlayerConnect(playerid)
{
    new string1[128];
    return 1;
}
Se nгo entender ainda veja este tutorial sobre variбveis:
https://sampforum.blast.hk/showthread.php?tid=235924
Reply


Messages In This Thread
Como remover estes Warnings da GM - by JoNhKaKa - 08.10.2014, 00:47
Re: Como remover estes Warnings da GM - by douglasmacbrito - 08.10.2014, 12:03
Re: Como remover estes Warnings da GM - by JoNhKaKa - 09.10.2014, 01:28
Re: Como remover estes Warnings da GM - by MultiKill - 09.10.2014, 01:37
Re: Como remover estes Warnings da GM - by JoNhKaKa - 09.10.2014, 22:29
Re: Como remover estes Warnings da GM - by MultiKill - 09.10.2014, 23:03
Re: Como remover estes Warnings da GM - by JoNhKaKa - 14.10.2014, 14:57

Forum Jump:


Users browsing this thread: 1 Guest(s)