automatic shutdown on 2.7

Results 1 to 2 of 2
  1. #1
    Apprentice Baihrava is offline
    MemberRank
    Jan 2015 Join Date
    5Posts

    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.


  2. #2
    Valued Member podpol is offline
    MemberRank
    Mar 2015 Join Date
    136Posts

    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;



Advertisement