Jump to content
Message added by crash,

Thank you so much for your interest in my plugin!

 

If you have any questions, run into any issues, or have ideas for more features, feel free to reach out. 

For support, you can create a thread in the Support Section or send me a direct message—I'll be happy to help.

Message added by crash,

hey, if this plugin helped you out, leave a 5 star review, thank you! 

also, if you need a custom request to be done, join my discord and lets talk !

43 Screenshots

  • 32.6k
  • 2k
  • 84.19 kB
  • Update details
    v3.9.3
    Released
    Download size 84.19 kB
    Total versions 39
    Typical update pace About every 7 days
    Freshness Updated 114 days ago

This area is for discussion and questions. Please use the support area for reporting issues or getting help.

Recommended Comments



crash

Posted

29 minutes ago, hid333 said:

Yes, as mentioned above, even when I follow the steps it doesn't restart, so I'm concerned about it.
However, I assume that it's working fine for other people, so I'm assuming that it's a problem specific to my environment.

Ill take a look anyways sir

hid333

Posted

13 minutes ago, crash said:

Ill take a look anyways sir

I will also try disabling other plugins to see what the cause is.

Matrix

Posted

It doesn't affect any plugins i got 200 on my server and is ok

Matrix

Posted

3 hours ago, Wile E. said:

Still, all it takes is one plugin that does not get along with another and it can cause lots of grief

that's why we all have RCON 

  • Like 1
WarisGG

Posted

Hi, I always have a reboot scheduled for 8 p.m.

But if I want to do a reboot earlier, it won't let me. It tells me I have to cancel the previous one first.

This didn't happen before.

imagen.png.e4639367e1582809cfc90f35079b6941.png

 

It should let me do it, meaning it should have priority over the other one, in case I need to restart for some specific reason.

crash

Posted

On 8/29/2025 at 12:47 PM, WarisGG said:

Hi, I always have a reboot scheduled for 8 p.m.

But if I want to do a reboot earlier, it won't let me. It tells me I have to cancel the previous one first.

This didn't happen before.

imagen.png.e4639367e1582809cfc90f35079b6941.png

 

It should let me do it, meaning it should have priority over the other one, in case I need to restart for some specific reason.

Hello, ill look!

R0gerR0ger

Posted

BUG: /restart config (UI editor)

If you change the "title text" ("the server will restart in 5 minutes") and then try to change the font size of either the title or the message it defaults back to "the server will restart in 5 minutes"

image.png.d48ef35743d2afd46413ffae031eede0.png

Sulfur

Posted

"Alerts": {

    "InGameWarningTimes": [

      30,

      15,

      10,

      5,

      3,

      2,

      1

updated the freshest update, it doesnt start from 30 minutes, it starts directly at 1 minute

  • Like 1
venda_vole

Posted

1 hour ago, Lumin said:

"Alerts": {

    "InGameWarningTimes": [

      30,

      15,

      10,

      5,

      3,

      2,

      1

updated the freshest update, it doesnt start from 30 minutes, it starts directly at 1 minute

u missing ], on line under 1

SlayersRust

Posted

3 hours ago, venda_vole said:

u missing ], on line under 1

im having the same issue but im not missing the ],

Sulfur

Posted

5 hours ago, venda_vole said:

u missing ], on line under 1

its not missing i just forgot to copy more of it here it is

 

{

  "Version": "3.5.0",

  "Restart": {

    "RestartTimes": [

      "18:00"

    ],

    "AlertSound": "assets/prefabs/locks/keypad/effects/lock.code.lock.prefab",

    "UseSound": true,

    "UseChatAlerts": true,

    "SkipWipeDays": true,

    "WipeDays": []

  },

  "PlayerRestrictions": {

    "MaxPlayersBeforeCancel": 10,

    "RestrictPlayerCount": false

  },

  "Alerts": {

    "InGameWarningTimes": [

      30,

      15,

      10,

      5,

      3,

      2,

      1

    ],

    "DiscordWarningTimes": [

      30,

      5,

      1

    ]

  },

Sulfur

Posted

@crash after FP did there updates that might of broken it, i have since done an update, last night it went strait to a 1 minute cooldown instead of the 30 minute cooldown, none of the config files were changed, if you could add in a line of code to accept different timezones for a restart to happen like ie, im not smart enough to code things so i use ai to help me with this

 

// Set desired restart time in GMT
int restartHourGMT = 2; // 2:00 AM GMT

// Get GMT timezone
TimeZoneInfo gmtZone = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time");

// Convert current UTC time to GMT
DateTime gmtNow = TimeZoneInfo.ConvertTimeFromUtc(DateTime.UtcNow, gmtZone);

// Calculate today's 2 AM GMT
DateTime gmtRestart = new DateTime(
    gmtNow.Year,
    gmtNow.Month,
    gmtNow.Day,
    restartHourGMT,
    0,
    0,
    DateTimeKind.Unspecified
);

// If time has already passed today, schedule it for tomorrow
if (gmtNow > gmtRestart)
{
    gmtRestart = gmtRestart.AddDays(1);
}

// Convert restart time back to UTC for scheduling
DateTime utcRestart = TimeZoneInfo.ConvertTimeToUtc(gmtRestart, gmtZone);

// Time until restart
double secondsUntilRestart = (utcRestart - DateTime.UtcNow).TotalSeconds;

// Schedule restart
timer.Once((float)secondsUntilRestart, () =>
{
    Server.Command("restart 10 \"Scheduled GMT Restart\"");

 

📝 What this does:

You set a GMT restart time (e.g., 2 AM).

The code converts current UTC → GMT.

It calculates the next correct 2 AM GMT.

Converts it back to UTC (because Oxide timers run in UTC).

Schedules the auto-restart.

crash

Posted

9 hours ago, Lumin said:

"Alerts": {

    "InGameWarningTimes": [

      30,

      15,

      10,

      5,

      3,

      2,

      1

updated the freshest update, it doesnt start from 30 minutes, it starts directly at 1 minute

Hey, fixed it in the version im working right now, i dont get notifications in here so thats why i took long!

crash

Posted

1 hour ago, Lumin said:

@crash after FP did there updates that might of broken it, i have since done an update, last night it went strait to a 1 minute cooldown instead of the 30 minute cooldown, none of the config files were changed, if you could add in a line of code to accept different timezones for a restart to happen like ie, im not smart enough to code things so i use ai to help me with this

 

// Set desired restart time in GMT
int restartHourGMT = 2; // 2:00 AM GMT

// Get GMT timezone
TimeZoneInfo gmtZone = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time");

// Convert current UTC time to GMT
DateTime gmtNow = TimeZoneInfo.ConvertTimeFromUtc(DateTime.UtcNow, gmtZone);

// Calculate today's 2 AM GMT
DateTime gmtRestart = new DateTime(
    gmtNow.Year,
    gmtNow.Month,
    gmtNow.Day,
    restartHourGMT,
    0,
    0,
    DateTimeKind.Unspecified
);

// If time has already passed today, schedule it for tomorrow
if (gmtNow > gmtRestart)
{
    gmtRestart = gmtRestart.AddDays(1);
}

// Convert restart time back to UTC for scheduling
DateTime utcRestart = TimeZoneInfo.ConvertTimeToUtc(gmtRestart, gmtZone);

// Time until restart
double secondsUntilRestart = (utcRestart - DateTime.UtcNow).TotalSeconds;

// Schedule restart
timer.Once((float)secondsUntilRestart, () =>
{
    Server.Command("restart 10 \"Scheduled GMT Restart\"");

 

📝 What this does:

You set a GMT restart time (e.g., 2 AM).

The code converts current UTC → GMT.

It calculates the next correct 2 AM GMT.

Converts it back to UTC (because Oxide timers run in UTC).

Schedules the auto-restart.

Initial version of the plugin haded this feature, however, i removed it because some server panels dont allow other timezones. Ill do a website so its easier for everyone 🙂

crash

Posted

On 10/6/2025 at 4:12 AM, R0gerR0ger said:

BUG: /restart config (UI editor)

If you change the "title text" ("the server will restart in 5 minutes") and then try to change the font size of either the title or the message it defaults back to "the server will restart in 5 minutes"

image.png.d48ef35743d2afd46413ffae031eede0.png

Will look sir!

crash

Posted

Hello @R0gerR0geri wasnt able to recreate your issue, did you pass the value with enter & saved?

Sulfur

Posted

9 hours ago, crash said:

Initial version of the plugin haded this feature, however, i removed it because some server panels dont allow other timezones. Ill do a website so its easier for everyone 🙂

yes this will work very good

Mankus

Posted

Hi Crash, I hope you are well! 

is there a functionality for the discord message to be edited instead of sending a new one every time?
This would be incredible and improve performance plus discord usesrs will be a lot happier, myself included!

If you could please add this it would be very neat! 

crash

Posted

4 hours ago, Malkizid said:

Hi Crash, I hope you are well! 

is there a functionality for the discord message to be edited instead of sending a new one every time?
This would be incredible and improve performance plus discord usesrs will be a lot happier, myself included!

If you could please add this it would be very neat! 

Sure, ill get tonight on it sir 🙂

  • Love 1
SlayersRust

Posted

I have a dedi machine with 3 servers on it and for some reason for all 3 of them today after their daily restarts none of them booted back online. Nothing unusual in the logs just the usual restarting now from AutoRestart then kicks players and shuts down. Anyone else experience this? My other 9 servers were fine on other dedi machines. Could this point to a hardware/network issue? I'll wait 24 hours for the next daily restart and see if the issue arrises again.

 

crash

Posted (edited)

5 minutes ago, SlayersRust said:

I have a dedi machine with 3 servers on it and for some reason for all 3 of them today after their daily restarts none of them booted back online. Nothing unusual in the logs just the usual restarting now from AutoRestart then kicks players and shuts down. Anyone else experience this? My other 9 servers were fine on other dedi machines. Could this point to a hardware/network issue? I'll wait 24 hours for the next daily restart and see if the issue arrises again.

 

Hey slayers, autorestart doenst interfere with booting back up the server, it just triggers rust's internal command to quit/restart the server, so id recommend taking a look into your hardware or adding some logs into those hours to see whats really happening

Edited by crash
SlayersRust

Posted

3 minutes ago, crash said:

Hey slayers, autorestart doenst interfere with booting back up the server, it just triggers rust's internal command to quit/restart the server, so id recommend taking a look into your hardware or adding some logs into those hours to see whats really happening

I checked all my logs and nothing unusual happened during this time, the restart started as normal and server went offline but just didn't come back online, I'll have to ask my host to look at any direct hardware logs to see if anything is going on. Since it was all 3 servers on the machine at different times, sounds like could be a hardware issue

 

  • Love 1
crash

Posted

13 minutes ago, SlayersRust said:

I checked all my logs and nothing unusual happened during this time, the restart started as normal and server went offline but just didn't come back online, I'll have to ask my host to look at any direct hardware logs to see if anything is going on. Since it was all 3 servers on the machine at different times, sounds like could be a hardware issue

 

let me know sir

Mankus

Posted

Neat update Crash, glad you were able to implement the Edit Discord message into it!
Finally cleared out my old channel after 6+months  of restart messages 😄

  • Love 1
SlayersRust

Posted

Needs an Update for forced wipe!

Failed to compile: 'Pool' does not contain a definition for 'FreeList' | Line: 4125, Pos: 24

 

  • Like 2

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Like 4
  • Love 1

User Feedback

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
3.1m
Total downloads
Customers
12.1k
Customers served
Files Sold
171.9k
Total sales
Payments
3.7m
Processed total
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.