big ears system not working
#9

Quote:
Originally Posted by Calabresi
Посмотреть сообщение
Are you sure that you tried this with someone else? If so, tell us where did you out my code.
its working but its showing like this

Код:
[21:35:56] Ivann says: (( why you want to be admin? )) 

[21:35:58] Hello.

[21:35:58] Slim Shady says: Hello.
And when they type on /b i didnt broadcast to me.. and when they leave on server i didnt see too they leave

Код:
public OnPlayerText(playerid, text[])
{
	if(CheckGMX(playerid)) return 0;
	if(gPlayerLogged[playerid] != 1)
	{
		SendClientMessage(playerid, COLOR_RED, "You're not logged in.");
		return 0;
	}
	if(PlayerInfo[playerid][pTut] == 0)
	{
		return 0;
	}

	new sendername[MAX_PLAYER_NAME];
	new giveplayer[MAX_PLAYER_NAME];
	new string[128];
	playerLastTyped[playerid] = 0;

	if(TextSpamUnmute[playerid] != 0)
	{
		if(PlayerInfo[playerid][pAdmin] < 6)
		{
			SendClientMessage(playerid, COLOR_WHITE, "You're muted from submitting text right now.");
			return 0;
		}
	}

	if(PlayerInfo[playerid][pAdmin] < 6)
	{
		TextSpamTimes[playerid]++;

		if(TextSpamTimes[playerid] == 5)
		{
			TextSpamTimes[playerid] = 0;
			TextSpamUnmute[playerid] = 10;
			SendClientMessage(playerid, COLOR_YELLOW, "You have been muted automatically for spamming. Please wait 10 seconds and try again.");
			SetTimerEx("OtherTimerEx", 1000, false, "ii", playerid, TYPE_FLOODPROTECTION);
			return 0;
		}
	}

	if(strfind(text, "|", true) != -1)
	{
	    SendClientMessage(playerid, COLOR_RED, "You can't use the '|' character in text.");
		return 0;
	}

	if(PlayerInfo[playerid][pAdmin] < 4)
	{
		if(strfind(text, ":", true) != -1)
		{
			new
				i_numcount,
				i_period,
				i_pos;

			while(text[i_pos]) {
				if('0' <= text[i_pos] <= '9') i_numcount++;
				else if(text[i_pos] == '.') i_period++;
				i_pos++;
			}
			if(i_numcount >= 8 && i_period >= 3) {
				format(string,sizeof(string),"Warning: %s may be server advertising: '%s'.", GetPlayerNameEx(playerid),text);
				ABroadCast(COLOR_RED, string, 2);
				Log("logs/anti-server-ad-log.log", string);
				return 0;
			}
		}
	}
                // your code
		for(new i = 0; i < MAX_PLAYERS; i++)
	{
	     if(i == playerid) continue;
	     if(BigEar[i] == 1)
	     {
	          SendClientMessage(i, -1, text);
	     }
	}
Код:
	new string[128];
	switch (reason)
	{
 	   	case 0:
	   	{
		   	format(string, sizeof(string), "%s has left the server (timeout).", GetPlayerNameEx(playerid));
		   	ProxDetector(30.0, playerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
		   	if(PlayerCuffed[playerid] != 0)
		   	{
	    		strcpy(PlayerInfo[playerid][pPrisonedBy], "Server", 64);
				strcpy(PlayerInfo[playerid][pPrisonReason], "Logging while cuffed (timeout)", 64);

                PlayerInfo[playerid][pJailed] = 3;
				PlayerInfo[playerid][pJailTime] += 30*60;
			}
	   	}
	   	case 1:
 	  	{
		   	format(string, sizeof(string), "%s has left the server (leaving).", GetPlayerNameEx(playerid));
		   	ProxDetector(30.0, playerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
		   	if(PlayerCuffed[playerid] != 0)
		   	{
    			strcpy(PlayerInfo[playerid][pPrisonedBy], "Server", 64);
				strcpy(PlayerInfo[playerid][pPrisonReason], "Logging while cuffed (leaving)", 64);

                PlayerInfo[playerid][pJailed] = 3;
				PlayerInfo[playerid][pJailTime] += 20*60;
			}
		}
		case 2:
	    {
			format(string, sizeof(string), "%s has left the server (kicked/banned).", GetPlayerNameEx(playerid));
			ProxDetector(30.0, playerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
	   	}
	}
Anyways, i need to go to school bye

if you have skype please add me: christianivann09
Reply


Messages In This Thread
big ears system not working - by ChristianIvann09 - 17.03.2014, 11:48
Re: big ears system not working - by Calabresi - 17.03.2014, 11:53
Re: big ears system not working - by ChristianIvann09 - 17.03.2014, 11:59
Re: big ears system not working - by Calabresi - 17.03.2014, 11:59
Re: big ears system not working - by ChristianIvann09 - 17.03.2014, 12:09
Re: big ears system not working - by ChristianIvann09 - 17.03.2014, 13:26
Re: big ears system not working - by ChristianIvann09 - 17.03.2014, 21:53
Re: big ears system not working - by Calabresi - 17.03.2014, 21:58
Re: big ears system not working - by ChristianIvann09 - 17.03.2014, 22:20
Re: big ears system not working - by Calabresi - 17.03.2014, 22:24

Forum Jump:


Users browsing this thread: 1 Guest(s)