Packet flooding with arrowNot An Issue
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.
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...
In response to RustyNetworks ():
How does one disable this, please?

Thanks...
Edit the config file and set the arrow to false > save the config file > reload the plugin > done.
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);
In response to RustyNetworks ():
Sorry to sound stupid..

But do you mean setting these to false?

Config["Suppl...
Edit the config file, not the plugin. Plugin config files are under oxide/config.
"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?
In response to RustyNetworks ():
"Supply Drop Arrow On Landing (true/false)": false,
"Supply Drop Arrow Until Empty (true/false)...
Yes, that's it.
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 :)
Locked automatically