Jump to content

Recommended Posts

  • 4 months later...
Posted

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

 

If you have something on mind just make it public.

Posted

If you have something on mind just make it public.

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

Posted

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".

Posted

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock