Posts: 109
Threads: 17
Joined: Oct 2013
10.02.2015, 15:13
(
Последний раз редактировалось xBaDaSSx; 10.02.2015 в 15:44.
Причина: trying fix
)
Warning: client excedded 'ackslimit'... Limit: 5000/sec
[part] pig has left the server
Posts: 109
Threads: 17
Joined: Oct 2013
Quote:
Originally Posted by Death1300
|
pawn Код:
native BlockIpAddress(ip_address[], timems); // blocks an IP address from further communication (wildcards allowed)
native UnBlockIpAddress(ip_address[]); // IP unblock
native SendDeathMessageToPlayer(playerid, killer, killee, weapon);
native CreateExplosionForPlayer(playerid, Float:X, Float:Y, Float:Z, type, Float:Radius);
i added this code on my gm but have errors.
Posts: 109
Threads: 17
Joined: Oct 2013
Posts: 1,830
Threads: 49
Joined: Nov 2014
Reputation:
0
You are only allowed to bump once every 24 hours, not 7 minutes. Read the forum rules.
"Client exceeded ackslimit - 5000" means the server is sending over 5000 messages to a client, or a client is sending over 5000 messages to the server.
You might have a very big or infinite loop in your script that could cause this.
Posts: 109
Threads: 17
Joined: Oct 2013
Quote:
Originally Posted by CalvinC
You are only allowed to bump once every 24 hours, not 7 minutes. Read the forum rules.
"Client exceeded ackslimit - 5000" means the server is sending over 5000 messages to a client, or a client is sending over 5000 messages to the server.
You might have a very big or infinite loop in your script that could cause this.
|
but where i put this code?
pawn Код:
native BlockIpAddress(ip_address[], timems); // blocks an IP address from further communication (wildcards allowed)
native UnBlockIpAddress(ip_address[]); // IP unblock
native SendDeathMessageToPlayer(playerid, killer, killee, weapon);
native CreateExplosionForPlayer(playerid, Float:X, Float:Y, Float:Z, type, Float:Radius);
pawn Код:
D:\Server Samp\gamemodes\abc.pwn(19) : error 021: symbol already defined: "BlockIpAddress"
D:\Server Samp\gamemodes\abc.pwn(20) : error 021: symbol already defined: "UnBlockIpAddress"
D:\Server Samp\gamemodes\abc.pwn(21) : error 021: symbol already defined: "SendDeathMessageToPlayer"
D:\Server Samp\gamemodes\abc.pwn(22) : error 021: symbol already defined: "CreateExplosionForPlayer"
Posts: 1,830
Threads: 49
Joined: Nov 2014
Reputation:
0
As it says in the error messages, they are already defined.