egebilecen / PZServerDiscordBot

A Project Zomboid Discord Bot written in C# using Discord.NET to manage and execute commands on Project Zomboid Server.
GNU General Public License v3.0
62 stars 11 forks source link

Feature suggestion - specific restart times based on system clock #89

Closed RemainQuenched closed 10 months ago

RemainQuenched commented 11 months ago

Would be nice to be able to setup specific times the server restarts based on the system clock. The current method creates sporadic restart times.

RemainQuenched commented 11 months ago

Also, adding a set of commands to decide what you want the bot to log as well as the ability to log things like executed admin commands, player connections, updates for mods and what mods were updated in the bot log channel. And the ability to send the restart announcements to a discord channel.

DomicidalDesigns commented 10 months ago

Would be nice to be able to setup specific times the server restarts based on the system clock. The current method creates sporadic restart times.

I think this is an important option to have and I'm looking at a way to do this without changing the current Scheduling too much. I'm thinking we can add an option and a list of restart times to the conf file.

I'm working on a method that would take the soonest restart time from a list of times and find the time difference, then set the Scheduler interval to this difference.

egebilecen commented 10 months ago

I think this is an important option to have and I'm looking at a way to do this without changing the current Scheduling too much. I'm thinking we can add an option and a list of restart times to the conf file.

Could you please be sure this wouldn't require manual config file editing. A new command should do the trick.

I'm working on a method that would take the soonest restart time from a list of times and find the time difference, then set the Scheduler interval to this difference.

That approach seems to be best without changing how scheduler works.

egebilecen commented 10 months ago

Added in #95.