Jump to content
  • 0

[Help]Thread AWT-Windows


Question

Posted

i got thred AWT-Windows error when i restart the server

i have Java 6Update 21

JDK 6 update 13

Soo ...why get this error?

Acces LvL 200

I saw posted this problem...but i dont find the reason !!!

Thx MxC

8 answers to this question

Recommended Posts

  • 0
Posted

i got thred AWT-Windows error when i restart the server

i have Java 6Update 21

JDK 6 update 13

Soo ...why get this error?

Acces LvL 200

I saw posted this problem...but i dont find the reason !!!

Thx MxC

hi such a good look if you can provide more information and so the truth can not help you very little info.
  • 0
Posted

Hi

Finaly someone want to help me ...

So critical this error i get...i have JDK u21...is the last ...and i get this error

76656038.jpg

So please help me ?

  • 0
Posted

Hi

Finaly someone want to help me ...

So critical this error i get...i have JDK u21...is the last ...and i get this error

76656038.jpg

So please help me ?

umm well I try find iformation but don't have lucky just have 1 thing maybe can help you.. go to here SUN Forum
  • 0
Posted
/*

* This program is free software: you can redistribute it and/or modify it under

* the terms of the GNU General Public License as published by the Free Software

* Foundation, either version 3 of the License, or (at your option) any later

* version.

*

* This program is distributed in the hope that it will be useful, but WITHOUT

* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS

* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more

* details.

*

* You should have received a copy of the GNU General Public License along with

* this program. If not, see <http://www.gnu.org/licenses/>.

*/

package net.sf.l2j.gameserver;

 

import java.util.logging.Level;

import java.util.logging.Logger;

 

import net.sf.l2j.Config;

import net.sf.l2j.DataOtimize;

import net.sf.l2j.L2DatabaseFactory;

import net.sf.l2j.gameserver.datatables.CharSchemesTable;

import net.sf.l2j.gameserver.instancemanager.CastleManorManager;

import net.sf.l2j.gameserver.instancemanager.CursedWeaponsManager;

import net.sf.l2j.gameserver.instancemanager.GrandBossManager;

import net.sf.l2j.gameserver.instancemanager.ItemsOnGroundManager;

import net.sf.l2j.gameserver.instancemanager.QuestManager;

import net.sf.l2j.gameserver.instancemanager.RaidBossSpawnManager;

import net.sf.l2j.gameserver.model.L2World;

import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

import net.sf.l2j.gameserver.model.olympiad.Olympiad;

import net.sf.l2j.gameserver.network.L2GameClient;

import net.sf.l2j.gameserver.network.gameserverpackets.ServerStatus;

import net.sf.l2j.gameserver.network.serverpackets.ServerClose;

import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;

 

/**

* This class provides the functions for shutting down and restarting the server It closes all open clientconnections and saves all data.

*

* @Date: 2007/09/05 00:00:00 $

*/

public class Shutdown extends Thread

{

private static Logger _log = Logger.getLogger(Shutdown.class.getName());

private static Shutdown _instance;

private static Shutdown _counterInstance = null;

private int _secondsShut;

private int _shutdownMode;

public static final int SIGTERM = 0;

public static final int GM_SHUTDOWN = 1;

public static final int GM_RESTART = 2;

public static final int ABORT = 3;

private static final String[] MODE_TEXT = { "SIGTERM", "shutting down", "restarting", "aborting" };

 

/**

* This function starts a shutdown countdown from Telnet (Copied from Function startShutdown())

*

* @param ip

*            IP Which Issued shutdown command

* @param seconds

*            seconds untill shutdown

* @param restart

*            true if the server will restart after shutdown

*/

@SuppressWarnings("deprecation")

private void SendServerQuit(int seconds)

{

for (L2PcInstance player : L2World.getInstance().getAllPlayers())

{

SystemMessage sysm = new SystemMessage(1);

sysm.addNumber(seconds);

player.sendPacket(sysm);

}

}

 

public void startTelnetShutdown(String IP, int seconds, boolean restart)

{

_log.warning("IP: " + IP + " issued shutdown command. " + MODE_TEXT[_shutdownMode] + " in " + seconds + " seconds!");

// _an.announceToAll("Server is " + _modeText[shutdownMode] + " in "+seconds+ " seconds!");

if (restart)

_shutdownMode = GM_RESTART;

else

_shutdownMode = GM_SHUTDOWN;

if (_shutdownMode > 0)

switch (seconds)

{

case 540:

case 480:

case 420:

case 360:

case 300:

case 240:

case 180:

case 120:

case 60:

case 30:

case 10:

case 5:

case 4:

case 3:

case 2:

case 1:

break;

default:

SendServerQuit(seconds);

}

if (_counterInstance != null)

_counterInstance._abort();

_counterInstance = new Shutdown(seconds, restart);

_counterInstance.start();

}

 

/**

* This function aborts a running countdown

*

* @param IP

*            IP Which Issued shutdown command

*/

public void telnetAbort(String IP)

{

_log.warning("IP: " + IP + " issued shutdown ABORT. " + MODE_TEXT[_shutdownMode] + " has been stopped!");

if (_counterInstance != null)

{

_counterInstance._abort();

Announcements _an = Announcements.getInstance();

_an.announceToAll("Server aborts " + MODE_TEXT[_shutdownMode] + " and continues normal operation!");

}

}

 

/**

* Default constucter is only used internal to create the shutdown-hook instance

*/

public Shutdown()

{

_secondsShut = -1;

_shutdownMode = SIGTERM;

}

 

/**

* This creates a countdown instance of Shutdown.

*

* @param seconds

*            how many seconds until shutdown

* @param restart

*            true is the server shall restart after shutdown

*/

public Shutdown(int seconds, boolean restart)

{

if (seconds < 0)

seconds = 0;

_secondsShut = seconds;

if (restart)

_shutdownMode = GM_RESTART;

else

_shutdownMode = GM_SHUTDOWN;

}

 

/**

* get the shutdown-hook instance the shutdown-hook instance is created by the first call of this function, but it has to be registrered externaly.

*

* @return instance of Shutdown, to be used as shutdown hook

*/

public static Shutdown getInstance()

{

if (_instance == null)

_instance = new Shutdown();

return _instance;

}

 

/** Method for the Exploit Prevention (Safe_Sigterm) * */

public static Shutdown getCounterInstance()

{

return _counterInstance;

}

 

/**

* this function is called, when a new thread starts if this thread is the thread of getInstance, then this is the shutdown hook and we save all data and disconnect all clients. after this thread ends, the server will completely exit if this is not the thread of getInstance, then this is a countdown thread. we start the countdown, and when we finished it, and it was not aborted, we tell the

* shutdown-hook why we call exit, and then call exit when the exit status of the server is 1, startServer.sh / startServer.bat will restart the server.

*/

@Override

public void run()

{

// disallow new logins

try

{

// Doesnt actually do anything

// Server.gameServer.getLoginController().setMaxAllowedOnlinePlayers(0);

}

catch (Throwable t)

{

// ignore

}

if (this == _instance)

{

// ensure all services are stopped

try

{

GameTimeController.getInstance().stopTimer();

}

catch (Throwable t)

{

// ignore

}

// stop all threadpolls

try

{

ThreadPoolManager.getInstance().shutdown();

}

catch (Throwable t)

{

// ignore

}

// last byebye, save all data and quit this server

// logging doesnt work here :(

saveData();

try

{

LoginServerThread.getInstance().interrupt();

}

catch (Throwable t)

{

// ignore

}

// saveData sends messages to exit players, so sgutdown selector after it

try

{

GameServer.gameServer.getSelectorThread().shutdown();

GameServer.gameServer.getSelectorThread().setDaemon(true);

}

catch (Throwable t)

{

// ignore

}

try

{

if (Config.DATABASE_AUTO_ANALYZE)

DataOtimize.AnalyzeGame();

if (Config.DATABASE_AUTO_CHECK)

DataOtimize.CheckGame();

if (Config.DATABASE_AUTO_OPTIMIZE)

DataOtimize.OptimizeGame();

if (Config.DATABASE_AUTO_REPAIR)

DataOtimize.RepairGame();

}

catch (Throwable t)

{

//null

}

// commit data, last chance

try

{

L2DatabaseFactory.getInstance().shutdown();

}

catch (Throwable t)

{

}

// server will quit, when this function ends.

if (_instance._shutdownMode == GM_RESTART)

Runtime.getRuntime().halt(2);

else

Runtime.getRuntime().halt(0);

}

else

{

// gm shutdown: send warnings and then call exit to start shutdown sequence

countdown();

// last point where logging is operational :(

_log.warning("GM shutdown countdown is over. " + MODE_TEXT[_shutdownMode] + " NOW!");

switch (_shutdownMode)

{

case GM_SHUTDOWN:

_instance.setMode(GM_SHUTDOWN);

System.exit(0);

break;

case GM_RESTART:

_instance.setMode(GM_RESTART);

System.exit(2);

break;

}

}

}

 

/**

* This functions starts a shutdown countdown

*

* @param activeChar

*            GM who issued the shutdown command

* @param seconds

*            seconds until shutdown

* @param restart

*            true if the server will restart after shutdown

*/

public void startShutdown(L2PcInstance activeChar, int seconds, boolean restart)

{

_log.warning("GM: " + activeChar.getName() + "(" + activeChar.getObjectId() + ") issued shutdown command. " + MODE_TEXT[_shutdownMode] + " in " + seconds + " seconds!");

if (restart)

_shutdownMode = GM_RESTART;

else

_shutdownMode = GM_SHUTDOWN;

if (_shutdownMode > 0)

switch (seconds)

{

case 540:

case 480:

case 420:

case 360:

case 300:

case 240:

case 180:

case 120:

case 60:

case 30:

case 10:

case 5:

case 4:

case 3:

case 2:

case 1:

break;

default:

SendServerQuit(seconds);

}

if (_counterInstance != null)

_counterInstance._abort();

// the main instance should only run for shutdown hook, so we start a new instance

_counterInstance = new Shutdown(seconds, restart);

_counterInstance.start();

}

 

/**

* This function aborts a running countdown

*

* @param activeChar

*            GM who issued the abort command

*/

public void abort(L2PcInstance activeChar)

{

_log.warning("GM: " + activeChar.getName() + "(" + activeChar.getObjectId() + ") issued shutdown ABORT. " + MODE_TEXT[_shutdownMode] + " has been stopped!");

if (_counterInstance != null)

{

_counterInstance._abort();

Announcements _an = Announcements.getInstance();

_an.announceToAll("Server aborts " + MODE_TEXT[_shutdownMode] + " and continues normal operation!");

}

}

 

/**

* set the shutdown mode

*

* @param mode

*            what mode shall be set

*/

private void setMode(int mode)

{

_shutdownMode = mode;

}

 

/**

* set shutdown mode to ABORT

*/

private void _abort()

{

_shutdownMode = ABORT;

}

 

/**

* this counts the countdown and reports it to all players countdown is aborted if mode changes to ABORT

*/

private void countdown()

{

try

{

while (_secondsShut > 0)

{

switch (_secondsShut)

{

case 540:

SendServerQuit(540);

break;

case 480:

SendServerQuit(480);

break;

case 420:

SendServerQuit(420);

break;

case 360:

SendServerQuit(360);

break;

case 300:

SendServerQuit(300);

break;

case 240:

SendServerQuit(240);

break;

case 180:

SendServerQuit(180);

break;

case 120:

SendServerQuit(120);

break;

case 60:

LoginServerThread.getInstance().setServerStatus(ServerStatus.STATUS_DOWN); // avoids new players from logging in

SendServerQuit(60);

break;

case 30:

SendServerQuit(30);

break;

case 10:

SendServerQuit(10);

break;

case 5:

SendServerQuit(5);

break;

case 4:

SendServerQuit(4);

break;

case 3:

SendServerQuit(3);

break;

case 2:

SendServerQuit(2);

break;

case 1:

SendServerQuit(1);

break;

}

_secondsShut--;

int delay = 1000; // milliseconds

Thread.sleep(delay);

if (_shutdownMode == ABORT)

break;

}

}

catch (InterruptedException e)

{

// this will never happen

}

}

 

/**

* this sends a last byebye, disconnects all players and saves data

*/

private void saveData()

{

switch (_shutdownMode)

{

case SIGTERM:

System.err.println("SIGTERM received. Shutting down NOW!");

break;

case GM_SHUTDOWN:

System.err.println("GM shutdown received. Shutting down NOW!");

break;

case GM_RESTART:

System.err.println("GM restart received. Restarting NOW!");

break;

}

if (Config.ACTIVATE_POSITION_RECORDER)

Universe.getInstance().implode(true);

try

{

Announcements _an = Announcements.getInstance();

_an.announceToAll("Server is " + MODE_TEXT[_shutdownMode] + " NOW!");

}

catch (Throwable t)

{

_log.log(Level.INFO, "", t);

}

disconnectAllCharacters();

// seven signs data is now saved along with festival data

if (!SevenSigns.getInstance().isSealValidationPeriod())

SevenSignsFestival.getInstance().saveFestivalData(false);

// save seven signs data before closing

SevenSigns.getInstance().saveSevenSignsData(null, true);

// save all Grandboss status

GrandBossManager.getInstance().cleanUp();

System.err.println("GrandBossManager: Data Saved.");

// save all raidboss status

RaidBossSpawnManager.getInstance().cleanUp();

System.err.println("RaidBossSpawnManager: Data Saved.");

// trade controller

TradeController.getInstance().dataCountStore();

System.err.println("TradeController: Data Saved.");

// olympiad

try

{

Olympiad.getInstance().save();

}

catch (Exception e)

{

e.printStackTrace();

}

System.err.println("Olympiad System: Data Saved.");

// save cursed weapons data

CursedWeaponsManager.getInstance().saveData();

System.err.println("CursedWeaponsManager: Data Saved.");

// save manor data

CastleManorManager.getInstance().save();

System.err.println("CastleManorManager: Data Saved.");

// Save all global (non-player specific) Quest data that needs to persist after reboot

QuestManager.getInstance().save();

// NPCBuffer: save player schemes data

if (Config.NPCBUFFER_FEATURE_ENABLED && Config.NPCBUFFER_STORE_SCHEMES)

CharSchemesTable.getInstance().onServerShutdown();

System.err.println("Quest Engine: Data Saved.");

// save items on ground

if (Config.SAVE_DROPPED_ITEM)

{

ItemsOnGroundManager.getInstance().saveInDb();

ItemsOnGroundManager.getInstance().cleanUp();

System.err.println("ItemsOnGroundManager:  Data Saved.");

}

System.err.println("Data saved. All players disconnected, shutting down.");

try

{

Thread.sleep(5000);

}

catch (InterruptedException e)

{ /* never happens :p */

}

}

 

/**

* this disconnects all clients from the server

*/

private void disconnectAllCharacters()

{

// logout character

for (L2PcInstance player : L2World.getInstance().getAllPlayers())

try

{

L2GameClient.saveCharToDisk(player);

ServerClose ql = new ServerClose();

player.sendPacket(ql);

}

catch (Throwable t)

{ /* ignore all */

}

try

{

Thread.sleep(1000);

}

catch (Throwable t)

{

_log.log(Level.INFO, "", t);

}

for (L2PcInstance player : L2World.getInstance().getAllPlayers())

try

{

player.closeNetConnection();

}

catch (Throwable t)

{ /*

* just to make sure we try to kill the connection

*/

}

}

}

  • 0
Posted

lol here

 

      if (_shutdownMode > 0)
         switch (seconds)
         {
            case 540:
            case 480:
            case 420:
            case 360:
            case 300:
            case 240:
            case 180:
            case 120:
            case 60:
            case 30:
            case 10:
            case 5:
            case 4:
            case 3:
            case 2:
            case 1:
               break;
            default:
               SendServerQuit(seconds);
         }

what pack are you using ?

Guest
This topic is now closed to further replies.


  • Posts

    • L2jBayev Chronicle 3: Rise of Darkness – AiEngine Edition In short: this is a C3 build with a full-fledged AI engine, live mercenaries, a built-in quiz, a “personal account” in the Community Board, and server logic neatly distributed across thread pools. The project is about a living world without lags : bots farm, communicate, gather parties, teleport along routes, and the server remains cold and stable.   What's inside (the most delicious) 1) Full-fledged AI engine for characters Behavior types: farming ( FarmAI ), combat ( CombatAI ), party logic ( PartyAI ), trading/walking ( TraderAI / WalkerAI ), support roles (healer, etc.). Class profiles: for mages/archers/daggers, etc., “smart” skill rotations, distance control, sleep/save skills, healing, loot pickup, etc. are implemented (see examples of classes like SpellSingerAI , NecromancerAI , etc.). Self-healing and teleports: when dying, the bot goes through a sequence of steps without sleep()- via AITaskSequence + AITeleportToLocTask , searches for the nearest gatekeeper and teleports via TeleportationManager with routes depending on the level. Auto-support: auto-nipples, arrows/bones, smart auto-proceduring of buffs and auto-banks CP/HP/MP with thresholds - all sewn into the auxiliary EtcPlayersAi . Chat context: ChatManagerAi processes mentions, makes responses with delays (anti-flood), supports party chat and “human” reaction. Understanding: ChatManagerAi system  processes the dialogue, bots remember your aggression and insults, they start to respond less often to modern users, stop accepting or inviting to a group (party) and when it goes beyond the peak they will simply merge you, and every time they see you on the PC, there is an opportunity to measure more often, communicate respectfully and beautifully, in general, a “human” reaction. Why a player/admin needs this: bots actually “live”, farm and interact, and don’t just stand on macros. This is a great background for online and PvE action.   2) Mercenaries (Mercenary system) Full-fledged companion character : L2MercenaryInstance with its own MercenaryAI (movement, attack, support, consumables, shots). Behavior modes: DEFENDER / SUPPORT / PASSIVE - switchable to suit your playing style. Progress and trust: the mercenary's trust/exp/level grows , skills are learned according to the MercenarySkillTree (conditions are based on the trust or level of the owner). Templates and equipment: via MercenaryTemplateTable and spawner - model/weapon/type are selected. Social: MercenarySpeechManager - a set of speeches; the mercenary "comes to life" in the chat. Premium Link: Premium account owners give the mercenary additional trust (faster progress). Why: This is not a dummy pet, but a playful companion with modes, training and “character”.   3) Quiz (event viktorina ) Rounds according to schedule: pre-launch with announcements (minutes/seconds before start), registration .reg, auto-opening of the window. Multiple choice questions: question + set of answer buttons; fair processing, timings, question change. Tops and history: results table, statistics, neat UI via HTML assembly. Flexible control: you can start immediately or set a delayed start (notification package 5/2/1 min, etc.). Why: regular activity for players, “social entertainment” module right in the build.   4) Personal account in Community Board KB managers: buff cabinet, teleports, clans/forums/mail/friends, tops (PK/PvP/wealth/players), character repair, viewing skill trees , etc. Premium logic: some services/mail are limited by premium; premium also affects the visual (nickname color) and bonuses (see effect on mercenary). Single sign-on: all in one place, no team chaos. Why: conveniently manage your character and services without going into the console or installing third-party mods.   Why is the system technically valuable? Minimum load and stability Separated thread pools: AI logic, hunting, teleports, chat - on separate onesScheduledExecutorService ( AI_THREAD_POOL , MONSTER_HUNT_POOL , TELEPORT_POOL , CHAT_POOL ). No "freezing": task sequencers (teleport/recovery) work through the scheduler, not Thread.sleep(). Bot limitation: protection against overload via thresholds/counters - “extra” bots do not start. One bot - one sequence: AITaskManager ensures that the character does not have parallel conflicting tasks. Smoothing out peaks: starting tasks with offsets so that there are no simultaneous “ticks” of hundreds of bots. Monitoring/logs: own loggers (separate files for info/errors/processes/chats), CPU load monitoring. Bottom line: the build is designed for “thick online” and mass activities without TPS failures .   Additional Features Auto-alliances for farming: party logic invites suitable players (checking level/equipment/clan flags), there are “human” responses to requests. Sub/class management: out of the box helpers for changing class/subclass, auto-learning of necessary skills and selection of equipment by level. Security/protection: secondary PIN/picture password support (used in KB/voiced commands; optional). Premium accounts: privileges in KB/mail/visual and synergy with mercenary progress. Ready-made services: tops, auctions/mail, teleports from KB, buff rooms, repairs, viewing skill trees, etc.   Who is this build for? Freeshare/project admins who want a living world “from the pack”: bots and mercenaries provide a constant background of activity. Players who value convenience: personal account, premium services, events and a mercenary companion. Developers who want a clean, predictable backend with thread pools and a neat task model without “magic”.   How it differs from standard assemblies Not macros - AI profiles with “brains”: rotations, positioning, healing, decision making. Not a decoration pet - a mercenary with his own modes, progress, skill tree and lines. Not a faceless gamemod - an event quiz with UI, schedule, tops. No chaos in flows - strict pools, planning and task managers designed for online and growth. No separate scripts - a single personal account in KB for most activities.   TL;DR (one paragraph for the project card) AiEngine C3 is a build with live AI, smart bots, mercenaries (modes/progress/skills), built-in quiz, premium logic and a convenient personal account in KB. Under the hood are distributed thread pools and task managers without sleep(), so even with a dense online the server remains stable and responsive.   Additionally add - there is still a lot of interesting things command .assassin or shift+target (order murder), shift+target for admins on AI characters for control, admin panel is completely rewritten, many additional functions, mercenaries change their appearance depending on trust, deepseek and chatGPT system is connected for communication of characters like real players, GPT - for newer java, there is still a very large list of fixes after the last versions, a lot has been fixed, including height coordinates (Z) geo-Squares, pathfinding, visibility through obstacles, fix pet summons, trade packages, shop packages, many effects, quests (including the original ones like nipples, etc.), Ai behavior of NPC and RB monsters, absolutely all epics have been transferred to AiLoader no longer in python scripts. Attention! The server is suitable for both classic mode and PvP format, as well as with various mods. Absolutely everything is configured in the configurations to suit your taste and purposes of use. It is recommended to launch the server through L2ServerControl (simplifies management and control of processes). Download Servers: Chronicle 3 Server Chronicle 4 Test Upgraded Server Full Desc & screens: Post & Screens c3 Post & Desc c4    
    • 🎃 HALLOWEEN EVENT 🎃   ‼️ Information and details: https://forum.l2harbor.com/threads/halloween-event-fall-harvest-30-10-07-11.8265/post-168620
  • Topics

×
×
  • 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