Jump to content

Auto Login Restart, all chronicle


`Rοmeο

Recommended Posts

  • 4 months later...

dont use sleep on your server guys, find an autorestart with threadpoolmanager

 

If you have something on mind just make it public.

Link to comment
Share on other sites

What else u need mate, I told that it should be done with threadpoolmanager, its easy

 

Make a topic and and show us how specific can you be in order to " Autorestart with Threadpoolmanager".

Link to comment
Share on other sites

Make a topic and and show us how specific can you be in order to " Autorestart with Threadpoolmanager".

 

I think that its to easy too create a topic for it, but quickly I made this:

	}
	_selectorThread.start();		
}
+	static int hours=1;//1 hour
+	private static void scheduleNextRestart()
+	{
+		_log.info("Scheduled GS restart after " + hours + " hours");
+		ThreadPoolManager.getInstance().scheduleGeneral(new Restart(), hours * 3600000);
+	}
+	public static class Restart implements Runnable
+	{
+		@Override
+		public void run()
+		{
+			L2PcInstance manager = L2PcInstance.createDummyPlayer(0, "Restart Manager");
+			Shutdown.getInstance().startShutdown(manager, 900000, true);
+			manager.decayMe();
+		}
+	}
public static SelectorThread<L2GameClient> getSelectorThread()
{
	return _selectorThread;
}

and

	Util.printSection("Game Server");
+		scheduleNextRestart();
	if (Config.IRC_ENABLED)
		IrcManager.getInstance().getConnection().sendChan(Config.IRC_MSG_START);

on GamerServer.java

This should work.

 

PS: about that dummy pc Instance, dont flame me dat was a quick fix xD

Link to comment
Share on other sites

  • 3 weeks later...
  • 10 years later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...