My server has been suffering from Packet Flooding for the past few months. I finally isolated the plugin doing it and it was this one. You should take a look at your code. Just a heads up.
Packet flooding with arrowNot An Issue
If true, I suspect it may be due to line 110 in DrawArrow
else if (arrowUntilEmpty) timers[entity] = timer.Every(0.1f, () =>
{
if (entity.IsDestroyed) { timers[entity]?.Destroy(); return; }
ConsoleNetwork.BroadcastToAllClients("ddraw.arrow", args);
}); Just disable the arrow in the config file.
The arrow was set to false, but I Just removed it. no need to worry about this plugin on my server.
In response to KaiserDoucheBag ():The arrow was set to false, but I Just removed it. no need to worry about this plugin on my server.
The packet flooding is from the arrow, which uses the drraw command in Rust. The arrow only works for users recognized as admin, any other users get packet flooding as the server isn't able to run that command on regular users as of about a year ago. The config setting is used to determine if the arrow shows, so as long as that config setting is set to false and the plugin was reloaded to use those settings (if changed), then it will never be used.
How does one disable this, please?
Thanks...
Thanks...
Sorry to sound stupid..
But do you mean setting these to false?
Config["Supply Drop Arrow On Landing (true/false)"] = arrowOnLanding = GetConfig("Supply Drop Arrow On Landing (true/false)", true);
Config["Supply Drop Arrow Until Empty (true/false)"] = arrowUntilEmpty = GetConfig("Supply Drop Arrow Until Empty (true/false)", true);
But do you mean setting these to false?
Config["Supply Drop Arrow On Landing (true/false)"] = arrowOnLanding = GetConfig("Supply Drop Arrow On Landing (true/false)", true);
Config["Supply Drop Arrow Until Empty (true/false)"] = arrowUntilEmpty = GetConfig("Supply Drop Arrow Until Empty (true/false)", true);
"Supply Drop Arrow On Landing (true/false)": false,
"Supply Drop Arrow Until Empty (true/false)": false
Ah okay. So have these two as false, then reload plugin?
"Supply Drop Arrow Until Empty (true/false)": false
Ah okay. So have these two as false, then reload plugin?
Ok done. Let's hope that was the cause of my server's packet flooding issue...
Merged post
Hi.
Just updated the plugin.
Just to confirm, have you removed the Supply Drop Arrow's now since I can't see them in the config anymore.
Thank you :)
Merged post
Hi.
Just updated the plugin.
Just to confirm, have you removed the Supply Drop Arrow's now since I can't see them in the config anymore.
Thank you :)
Locked automatically