-
Apprentice
automatic shutdown on 2.7
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 by Baihrava; 05-12-16 at 10:43 AM.
-
-
Valued Member
Re: automatic shutdown on 2.7
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;