24.12.2012, 13:31
[20:18:36] [debug] Run time error 4: "Array index out of bounds"
[20:18:36] [debug] Accessing element at index 4 past array upper bound 3
[20:18:36] [debug] AMX backtrace:
[20:18:36] [debug] #0 0021ad14 in public PingKick () from gm.amx
i get this warning when running the server and the server runs fine in windows but not in vps.
The public pingkick:
PLS FIND ME A SOLUTION
[20:18:36] [debug] Accessing element at index 4 past array upper bound 3
[20:18:36] [debug] AMX backtrace:
[20:18:36] [debug] #0 0021ad14 in public PingKick () from gm.amx
i get this warning when running the server and the server runs fine in windows but not in vps.
The public pingkick:
pawn Код:
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),"{251BE0}%s has been kicked from the server. {58CC00}(Reason: High Ping (%d) | Average (%d) {FFFFFF}| Max Allowed (%d) )", PlayerName2(i), GetPlayerPing(i), Average, ServerInfo[MaxPing] );
SendClientMessageToAll(grey,string);
SaveToFile("KickLog",string);
Kick(i);
}
}
}
}
#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
}