CrashDetect
#1

Код:
forward PingKick();
public PingKick()
{
	if(ServerInfo[MaxPing] != 0)
	{
	    PingPos++; if(PingPos > PING_MAX_EXCEEDS) PingPos = 0;

		for(new i=0; i<MAX_PLAYERS; i++)
		{
			PlayerInfo[i][pPing][PingPos] = GetPlayerPing(i);

		    if(GetPlayerPing(i) > ServerInfo[MaxPing])
			{
				if(PlayerInfo[i][PingCount] == 0) PlayerInfo[i][PingTime] = TimeStamp();

	   			PlayerInfo[i][PingCount]++;
				if(TimeStamp() - PlayerInfo[i][PingTime] > PING_TIMELIMIT)
				{
	    			PlayerInfo[i][PingTime] = TimeStamp();
					PlayerInfo[i][PingCount] = 1;
				}
				else if(PlayerInfo[i][PingCount] >= PING_MAX_EXCEEDS)
				{
				    new Sum, Average, x, string[128];
					while (x < PING_MAX_EXCEEDS) {
						Sum += PlayerInfo[i][pPing][x];
						x++;
					}
					Average = (Sum / PING_MAX_EXCEEDS);
					format(string,sizeof(string),"%s has been kicked from the server. (Reason: High Ping (%d) | Average (%d) | Max Allowed (%d) )", PlayerName2(i), GetPlayerPing(i), Average, ServerInfo[MaxPing] );
  		    		SendClientMessageToAll(grey,string);
					SaveToFile("KickLog",string);
					Kick(i);
				}
			}
			else if(GetPlayerPing(i) < 1 && ServerInfo[AntiBot] == 1)
		    {
				PlayerInfo[i][BotPing]++;
				if(PlayerInfo[i][BotPing] >= 3) BotCheck(i);
		    }
		    else
			{
				PlayerInfo[i][BotPing] = 0;
			}
		}
	}

	#if defined ANTI_MINIGUN
	new weap, ammo;
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i) && PlayerInfo[i][Level] == 0)
		{
			GetPlayerWeaponData(i, 7, weap, ammo);
			if(ammo > 1 && weap == 38) {
				new string[128]; format(string,sizeof(string),"INFO: %s has a mingun with %d ammo", PlayerName2(i), ammo);
				MessageToAdmins(COLOR_WHITE,string);
			}
		}
	}
	#endif
}
Код:
[[09:10:45]+ [debug] #0 000a5be0 in public PingKick () at C:\Users\MaHdy\Desktop\SPA Test\filterscripts\ladmin.pwn:8215
[09:11:14]+ [debug] Run time error 4: "Array index out of bounds"
[09:11:14]+ [debug]  Accessing element at index 4 past array upper bound 3
[09:11:14]+ [debug] AMX backtrace:
[09:11:14]+ [debug] #0 000a5be0 in public PingKick () at C:\Users\MaHdy\Desktop\SPA Test\filterscripts\ladmin.pwn:8215
LINE: 8215: PlayerInfo[i][pPing][PingPos] = GetPlayerPing(i);
Reply


Messages In This Thread
CrashDetect - by SPA - 22.02.2014, 20:11
Re: CrashDetect - by Konstantinos - 22.02.2014, 20:15
Re: CrashDetect - by SPA - 23.02.2014, 10:02
Re: CrashDetect - by Konstantinos - 23.02.2014, 10:17

Forum Jump:


Users browsing this thread: 2 Guest(s)