SA-MP Forums Archive
[Ajuda] Bug? Mensagens Nao Aparece - 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] Bug? Mensagens Nao Aparece (/showthread.php?tid=458080)



Bug? Mensagens Nao Aparece - SkilL_Fly - 14.08.2013

Bem eu descobrir esse bug sem querer eu falo no chat e nao aparece que eu falei
mais os outros comandos pega normal mais nao aparece oque eu falo sem comando no chat normal
alguem tem ideia de como arruma isso?

Code do Chat
Код:
	if (realchat)
	{
	    if(gPlayerLogged[playerid] == 0)
	    {
	        return 0;
      	}
		GetPlayerName(playerid, sendername, sizeof(sendername));
		format(string, sizeof(string), "%s[%d] Diz: %s", sendername,playerid, text);
		ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
		return 0;
	}
	return 1;
}



Re: Bug? Mensagens Nao Aparece - LucaAllexandre - 14.08.2013

pawn Код:
if (realchat)
    {
        if(gPlayerLogged[playerid] == 0)
        {
            return 0;
        }
        GetPlayerName(playerid, sendername, sizeof(sendername));
        format(string, sizeof(string), "%s[%d] Diz: %s", sendername,playerid, text);
        ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
                SendClientMessageToAll(playerid, string);
        return 0;
    }
    return 1;
}



Re: Bug? Mensagens Nao Aparece - SkilL_Fly - 14.08.2013

Continua Bugado