ScRaB4ever Posted December 3, 2012 Posted December 3, 2012 is it even working?? ive test it and it doesnt work for me....
xdem Posted April 11, 2013 Posted April 11, 2013 dont use sleep on your server guys, find an autorestart with threadpoolmanager
Vision Posted April 11, 2013 Posted April 11, 2013 dont use sleep on your server guys, find an autorestart with threadpoolmanager If you have something on mind just make it public.
xdem Posted April 11, 2013 Posted April 11, 2013 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
Vision Posted April 11, 2013 Posted April 11, 2013 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".
xdem Posted April 11, 2013 Posted April 11, 2013 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
DarknessVoice Posted April 13, 2013 Posted April 13, 2013 :not bad: this won't restart the whole server ?!! :o
hendrickblaze Posted September 21, 2023 Posted September 21, 2023 more detailed pls? how to install/run or something? not everyone have the knogledges to do things pls have that in mind before post things...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now