Foxlider / FASTER

Full rebuild of Flax's tool for installing and updating Arma 3 server with built in features for managing Steam Workshop mods.
GNU General Public License v3.0
124 stars 35 forks source link

[FEATURE] Updated CGF Addition #217

Open Akhari72149 opened 1 day ago

Akhari72149 commented 1 day ago

Is your feature request related to a problem? Please describe.
Addition of the anti flood limit config that was added with Arma 2.18 - Currenly running every 0.5 seconds and likely cause of a lot of servers dying.

Describe the solution you'd like
Adding the option to change the CFG settings like you do the other ones.

Describe alternatives you've considered
Currently put into Mission Selector override to update the values but cannot confirm if this will actually work or not.

Additional context
From Dedmen in the Arma Discord

class AntiFlood { cycleTime = 0.5; cycleLimit = 400; cycleHardLimit = 4000; enableKick = false; };

Server.cfg These are default values.

cycle is time in seconds. Every cycle, if player sends more than "limit" number of messages, they get flagged.

If the last 4 out of 8 cycles were flagged, or if within one cycle the hard limit is exceeded. The player is kicked if enableKick is true, or logged to RPT that they exceeded the limit.

OverlordZorn commented 1 day ago

Are those basic.cfg or server.cfg files?

can you link to the biki / changelog?

Akhari72149 commented 1 day ago

server.cfg

Cannot link anything, came from Dedmen on the Arma discord. Settings definitely work as currently forcing it in through the mission select override

image

OverlordZorn commented 1 day ago

i would have pointed out the mission overrwite next for a temporary solution