• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved How to make server save like tibia cipsoft?

Gattaca

OTLand's Developer
Joined
Mar 13, 2009
Messages
158
Reaction score
2
Location
Venezuela
Hello, all.
This time i come here, with this dude...
If you see tibia cipsoft uses a server save like this:

Code:
Server will save in 10 minutes. Please logout!.
Server will save in 5 minutes. Logout Now!
Server will save in less of an minute!

Then it execute a server save, but. How i can do this?, because i want to the server save broadcast for the players can get into their respective towns or maybe they will die...

I hope the dude can be understood, its just i dont speak english that great...

Best Wishes...
 
Last edited:
In config.lua:

Code:
	-- Global save
	-- NOTE: globalSaveHour means like 03:00, not that it will save every 3 hours,
	-- if you want such a system please check out data/globalevents/globalevents.xml.
	globalSaveEnabled = "no"
	globalSaveHour = 8
	shutdownAtGlobalSave = "yes"
	cleanMapAtGlobalSave = "no"
 
For that serversave that he showed you, it will save exactly like cipsofts servers. It will kick everybody and they will have to log in. You can make it clean the map also.

Also for this, it will only save once a day, at the hour you set it to.
So if you have globalSaveHour = 1, then it will do it every day at 1:00
 
Back
Top