TimeLoop

7 days to die timeloop

This mod makes the server relive the same day over and over until an authorized player joins the server. This can be useful for public visible servers if you want to pause time progressing while other players are playing on your server but you do not want to whitelist it.

The mod will create a file (TimeLooper.xml) inside the mod folder where you can specify which players will enable normal time flow. There is a bug with JsonUtility and 7 days to die, so I had to switch to XML Serializer.

This is my first mod, please feel free to modify and contribute to it however you like.

Changelog

1.1.0

  • Added different modes for time loop trigger event
  • Added server commands (type help timeloop)

1.0.2

Switched to xml serialization

1.0.1

Fixed bug that data is not being serialized

DOWNLOAD (15 KB)

Credits: timeloop

Share this with your friends:
Subscribe
Notify of
guest

If you have any questions or have any problems/bugs, please use the support link (Discord, Forum Topic, GitHub Issues, etc.) in the post. If there is no support link in the post, please use the comments section.

17 Comments
Inline Feedbacks
View all comments
Mr. Cone
Mr. Cone
August 24, 2024 10:07 pm

Love the mod so far, but a QoL improvement could be to change the color of the Day/Time Counter when the days are being looped. That way people can know at a glance through the in-game UI that a day is in loop mode.

Maverick
Maverick
August 22, 2024 9:40 pm

It’s not working for me, I set to min 2 players, and Im the only one online and time still passes.
it’s a dedicated server.

ProfGetz
ProfGetz
August 29, 2024 12:32 am
Reply to  Maverick

Same here. Great idea, but so far not able to use threshold mode

Maverick
Maverick
September 8, 2024 9:02 am
Reply to  Maverick

The mod actually works! And in threshold mode too. The thing is time DOES pass, but the “day” will reset when trying to change to the next day (and a message appears on the server saying this), so the loop is the DAY, but hours do pass.

ProfGetz
ProfGetz
August 20, 2024 5:06 pm

This is such a good idea! Thank you!

Stefan
Stefan
August 17, 2024 10:18 pm

Hello, I downloaded from Github. Where can I set the steamid oder player id, which is “starting” the “olding process” ? Thanks for your reply

lehimebe
lehimebe
August 19, 2024 6:13 pm
Reply to  Stefan

Either in the TimeLooper.xml, generated inside the Mod’s folder when you run it for the first time (steam-id). Or through the admin console in the game directly (F1 – tilo player auth “Ingame Name”). You have to be an admin for the later.

SadLarry
SadLarry
August 16, 2024 5:34 pm

Im trying to run this mod through game MP (hosting on my pc) and i cant make it work, when i write “help timeloop” it will show commands, but if i type any of it, yellow message appears: “WRN data was not loaded”

lehimebe
lehimebe
August 17, 2024 11:12 am
Reply to  SadLarry

This means that the data from the TimeLooper.xml could not be loaded. Maybe it is corrupted. Have you modified this file? It should have been auto generated inside the Mod’s folder. What do the startup logs from the server console suggest? Are there any indicators that the mod could not be loaded successfully? There should be either “[TimeLoop] Loading Config …” or “[TimeLoop] Creating New Config …” depending on whether the file exists already. You could also try to delete the TimeLooper.xml and restart the server.

lehimebe
lehimebe
August 17, 2024 7:23 pm
Reply to  SadLarry

Hold on, you were saying that you tried to run this mod in a coop game hosted through the game directly? So no dedicated server from downloaded from steam tools?
I am sorry this won’t work as the mod was never intended for that usage. The following line (multiple occurences) prevents this:
if (GameManager.Instance != null && GameManager.IsDedicatedServer)

You can try to uncomment the last part of the query and recompile it, I guess it will work but it is untested so I you might experience unexpected behaviour even though it is unlikely.

SadLarry
SadLarry
August 17, 2024 10:34 pm
Reply to  lehimebe

Yes hosting through game, i do not know how to code so i cant really modify this mod, if you would be so kind and try to modify it? i can be your test specimen.

lehimebe
lehimebe
August 20, 2024 7:37 pm
Reply to  SadLarry

I added a client version to the latest release (see github)
https://github.com/lehimebe/7dtdTimeLoop/releases/tag/1.1.0

This is won’t become part of the official code though. It makes not so much sense to have the mod running in a non dedicated server. The admin has to be present anyhow and can set the time via console to his/her liking.

Zehel Fenris
Zehel Fenris
August 13, 2024 6:18 pm

Would it be possible to add an option so that instead of automatically progressing days when whitelisted people play they can write a start and stop command in the console to control the repeating of days?

I’m playing on a server where the admin is the most active player but we would like to be able to pause progressing days so we can all be online when we start the horde night.

lehimebe
lehimebe
August 13, 2024 9:23 pm
Reply to  Zehel Fenris

Sure, that would be possible. Might be a good idea for the next release!

lehimebe
lehimebe
August 15, 2024 9:24 pm
Reply to  lehimebe

I updated the mod with the features you mentioned.

Check out the latest version on github (1.1.0).

Unfortunately I can not change the description on this site.

The mod now uses xml serialization.

There are 3 different modes:
whitelist will trigger the timeloop until some person from the KnownPlayers who has skip timeloop set to true joins the server.
threshold will trigger the timeloop until enough players are online (MinPlayers)
none will disable the feature

The settings can be changed in the config during runtime or via server command (admin only). Just tpye in “help timeloop”. Example commands are:
tilo enable -> enables the mod
tilo disable -> disables the mod
tilo mode whitelist -> sets the mode to whitelist
tilo player min 3 -> changes the threshold to 3
tilo player auth “John Doe” -> disables timeloop while John Doe is playing.

Michael Scarn
Michael Scarn
August 15, 2024 11:09 pm
Reply to  lehimebe

There is a paragraph on Submit a Mod page that explains how to update your published mods.

Adagio
Adagio
August 12, 2024 5:48 pm

never even thought something like this is possible, thank you very much!