SA-MP Forums Archive
Ackslimit help +2rep - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Ackslimit help +2rep (/showthread.php?tid=562632)



tryibg fux - xBaDaSSx - 10.02.2015

Warning: client excedded 'ackslimit'... Limit: 5000/sec
[part] pig has left the server


Re: Ackslimit help +2rep - Sledgehammer - 10.02.2015

Refer to this thread: http://forum.sa-mp.com/showpost.php?...45&postcount=1

You can change the value of it in the server.cfg by setting "ackslimit 5000" for an example. Its not effecting the server in anyway whats so ever though.


Re: Ackslimit help +2rep - xBaDaSSx - 10.02.2015

Quote:
Originally Posted by Death1300
Посмотреть сообщение
Refer to this thread: http://forum.sa-mp.com/showpost.php?...45&postcount=1

You can change the value of it in the server.cfg by setting "ackslimit 5000" for an example.
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.


Re: Ackslimit help +2rep - xBaDaSSx - 10.02.2015

bump


Re: Ackslimit help +2rep - CalvinC - 10.02.2015

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.


Re: Ackslimit help +2rep - xBaDaSSx - 10.02.2015

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"



Re: Ackslimit help +2rep - CalvinC - 10.02.2015

As it says in the error messages, they are already defined.