Guest TheVortex Posted February 6, 2007 Posted February 6, 2007 How to make an automatic task like restart server every xx hours ? A - From Layane: L2J have a internal cron called Global Task, Open your DB and open global_task table and add a new entry with this params: task = restart type = TYPE_SHEDULED param1 = "milleseconds to restart" (for example 1h =1*60*60*1000= 3600000) Other option is add this line with a SQL Statement like this: INSERT INTO global_tasks ( id , task , type , last_activation , param1 , param2 , param3 ) VALUES ('', 'restart', 'TYPE_SHEDULED', '0', '3600000', '', ''); More information about Global Task: type: TYPE_NONE = Never execute this task (to disable a task) TYPE_STARTUP = Execute this task every startup TYPE_SHEDULED = Execute this task after "param1" milleseconds TYPE_FIXED_SHEDULED = Execute this task every "param2" milleseconds with a initial delay of "param1" milleseconds TYPE_TIME = Execute this task on a concrete data defined on "param1" TYPE_SPECIAL = Internal purposes TYPE_GLOBAL_TASK = Execute this task each "param1" days on a defined hour defined on "param2" (format: HH:MM:SS) task: We created 3 posible task for administrator: restart = restart the server, use "param3" to defined milleseconds before restart the server and players alert with a message of restart. shudown = like restart but shutdown the server jython = execute the jython file defined on "param3" (cron jython files need to be located at data/jscript/cron directory)" CREDITS : HERO1771
killer_007 Posted February 6, 2007 Posted February 6, 2007 You could post everything in one topic with other posts in it or post the whole .txt and not spamming all the section...anyway you can find all these and much more in the guide.txt in most of the packets out there and in the l2jfree site... And as for the credits, all the guide.txt is a copy from the forums of l2jfree and their users and (of course) the l2j nightlies guide, and hero1711 just merged everything in one .txt file...so credits go to l2jfree and their users, not to hero1711... edit: the full .txt for these who don't have it... http://rapidshare.com/files/15235064/guide.txt.html
WebM0nst3r Posted November 14, 2008 Posted November 14, 2008 Are you joking right ?? Check The DAMN Dates!! « on: February 06, 2007, 06:46:00 PM » -1 karma for bumbing an old thread and spam + ban request
Recommended Posts