[Help]Help with this.... L2J 

Status
Not open for further replies.
Newbie Spellweaver
Joined
Dec 7, 2006
Messages
37
Reaction score
0
hey i have this auto restart file.. :
Code:
INSERT INTO global_tasks(task,type,last_activation,param1,param2,param3) VALUES ('restart','TYPE_GLOBAL_TASK','2147483647','1','03:50:00','600');

and what is what? i mean what to chance to every 3 hours it auto restart
and what does the other number do? i mean what function..
Like : '2147483647'
and: '1','03:50:00','600' and and those things!

Thx if you can help me!
 
Code:
INSERT INTO global_tasks(task,type,last_activation,param1,param2,param3) VALUES ('restart','TYPE_GLOBAL_TASK','2147483647','1','03:50:00','600');

That query will make your server automaticly restart at 03:50am every day.
Code:
'1','03:50:00'

The 600 tag at the end is how many seconds before the restart it should be announced in-game. (600 seconds = 10 minutes)
 
Upvote 0
Status
Not open for further replies.
Back