• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

automatic shutdown on 2.7

Newbie Spellweaver
Joined
Jan 20, 2015
Messages
5
Reaction score
0
looking for params in DB gameserver, "task", to shutdown automaticaly the server at 7:25.
Server running on windows.

Windows server 2008R2 SP1
Mysql 5.5


Tanks a lot
 
Last edited:
Junior Spellweaver
Joined
Mar 11, 2015
Messages
154
Reaction score
85
DROP TABLE IF EXISTS `tasks`;
CREATE TABLE `tasks` (
`id` int(5) NOT NULL,
`task_type` enum('SHUTDOWN','RESTART') NOT NULL,
`trigger_type` enum('FIXED_IN_TIME') NOT NULL,
`trigger_param` text NOT NULL,
`exec_param` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
Upvote 0
Back
Top