[DiscordArchive] This is how we have been doing it, I take it the automatic reset is bugged/broken?
[DiscordArchive] This is how we have been doing it, I take it the automatic reset is bugged/broken?
Archived author: Tumultus • Posted: 2025-05-17T01:15:24.511000+00:00
Original source
This is how we have been doing it, I take it the automatic reset is bugged/broken?
Archived author: Tumultus • Posted: 2025-05-17T01:15:47.018000+00:00
Original source
pardon the ping
Archived author: Revision • Posted: 2025-05-17T01:19:32.851000+00:00
Original source
The server has to be running when it resets or it never will. It's weird. Personally I would like a way to set 7-day lockouts to be reset always on a specific day. Say you set it to reset on tuesday for example, even if you start a run on monday it'll reset the next day. Right now it seems to be 7 days from the time you down a boss. I assume it's the same for 3-day lockouts.
Archived author: Tumultus • Posted: 2025-05-17T01:21:38.906000+00:00
Original source
Thanks for the response, we'll just have to stick to what we know I suppose.
Archived author: Revision • Posted: 2025-05-17T01:26:44.639000+00:00
Original source
Yeah. I just ended up making the server run a SQL to delete all binds when it does automated weekly maintenace. It's not ideal but at least it makes resets predictable for me.
Archived author: Tumultus • Posted: 2025-05-17T01:34:46.290000+00:00
Original source
Out of curiosity, would you be willing to share how you did this? All we want is a properly working daily reset for heroics in Northrend.
Archived author: Revision • Posted: 2025-05-17T01:36:54.679000+00:00
Original source
I can't say I noticed issues with heroic dungeons. It seems to always reset at 6 AM my time. Raids are very different though.
Archived author: Tumultus • Posted: 2025-05-17T01:38:38.061000+00:00
Original source
Well, we don't have a proper 24-hour server, more of a "I turn it on when it is asked of me or when I want to play". So the server is never on at that 6AM timeframe.
Archived author: Revision • Posted: 2025-05-17T01:39:11.391000+00:00
Original source
That's the problem with the reset system, as far as I can tell. If the server is offline when the time is up it won't reset them when it starts back up.
Archived author: Revision • Posted: 2025-05-17T01:40:12.776000+00:00
Original source
The SQL file I created is incredibly simple but it would need where clauses to only include what one would want to reset at the time.
```sql
DELETE FROM `character_instance`;
DELETE FROM `instance`;
DELETE FROM `instance_reset`;
```