~ The List of All My Bugs ~
#2

//===============================[2. Local Chat Bug]==============================//


Description of bug: After you register an account, you can't speak in the chat, just using /s (shout) or /b. You can speak just after RE-LOG. I want to fix this.
Codes:

Code:
new realchat = 1;
Code:
if (realchat)
	{
	    if(gPlayerLogged[playerid] == 0)
	    {
	        return 0;
      	}
        new i;
		while (text[++i])
		{
			if(text[i] > 64 && text[i]< 91) text[i] += 32;
		}
		if(PlayerInfo[playerid][pAdmin] >= 1)
		{
	    	new Colors[] = { COLOR_WHITE, COLOR_YELLOW, COLOR_LIGHTGREEN, COLOR_LIGHTRED, TEAM_GROVE_COLOR, 0x008100AA };
			SetPlayerChatBubble(playerid,says: text, Colors[random(sizeof(Colors))], 50.0, 5000);
		}
		if(PlayerInfo[playerid][pAdmin] >= 1)
       	{
        	format(string, sizeof(string), " %s ", text);
         	SetPlayerChatBubble(playerid, string, 0xFFFF80FF, 30.0, 8000);
        }
		GetPlayerName(playerid, sendername, sizeof(sendername));
		format(string, sizeof(string), "%s Says: %s", sendername, text);
		ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
		return 0;
	}
	return 1;
}
Reply


Messages In This Thread
~ The List of All My Bugs ~ - by MrBlake - 30.07.2011, 09:09
Re: ~ The List of All My Bugs ~ - by MrBlake - 30.07.2011, 09:15
Re: ~ The List of All My Bugs ~ - by Gray - 30.07.2011, 09:21
Re: ~ The List of All My Bugs ~ - by MrBlake - 30.07.2011, 09:22
Re: ~ The List of All My Bugs ~ - by MadeMan - 30.07.2011, 09:33
Re: ~ The List of All My Bugs ~ - by MrBlake - 30.07.2011, 09:38
Re: ~ The List of All My Bugs ~ - by MadeMan - 30.07.2011, 09:42
Re: ~ The List of All My Bugs ~ - by MrBlake - 30.07.2011, 09:49
Re: ~ The List of All My Bugs ~ - by Mrki_Drakula - 30.07.2011, 09:53
Re: ~ The List of All My Bugs ~ - by MrBlake - 30.07.2011, 11:15
Re: ~ The List of All My Bugs ~ - by MrBlake - 30.07.2011, 12:53
Re: ~ The List of All My Bugs ~ - by PGTips - 30.07.2011, 12:55
Re: ~ The List of All My Bugs ~ - by Mean - 30.07.2011, 13:00
Re: ~ The List of All My Bugs ~ - by MrBlake - 31.07.2011, 07:35

Forum Jump:


Users browsing this thread: 1 Guest(s)