Examples of announceToAll()


Examples of com.l2jfrozen.gameserver.model.entity.Announcements.announceToAll()

      _shutdownMode = TELL_SHUTDOWN;
    }

    if(_shutdownMode > 0)
    {
      _an.announceToAll("Server is " + MODE_TEXT[_shutdownMode] + " in " + seconds + " seconds!");
      _an.announceToAll("Please exit game now!!");
    }

    if(_counterInstance != null)
    {
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.entity.Announcements.announceToAll()

    }

    if(_shutdownMode > 0)
    {
      _an.announceToAll("Server is " + MODE_TEXT[_shutdownMode] + " in " + seconds + " seconds!");
      _an.announceToAll("Please exit game now!!");
    }

    if(_counterInstance != null)
    {
      _counterInstance._abort();
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.entity.Announcements.announceToAll()

   */
  public void telnetAbort(String IP)
  {
    Announcements _an = Announcements.getInstance();
    _log.log(Level.WARNING,"IP: " + IP + " issued shutdown ABORT. " + MODE_TEXT[_shutdownMode] + " has been stopped!");
    _an.announceToAll("Server aborts " + MODE_TEXT[_shutdownMode] + " and continues normal operation!");
    _an = null;

    if(_counterInstance != null)
    {
      _counterInstance._abort();
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.entity.Announcements.announceToAll()

   */
  public void abort(L2PcInstance activeChar)
  {
    Announcements _an = Announcements.getInstance();
    _log.log(Level.WARNING,"GM: " + activeChar.getName() + "(" + activeChar.getObjectId() + ") issued shutdown ABORT. " + MODE_TEXT[_shutdownMode] + " has been stopped!");
    _an.announceToAll("Server aborts " + MODE_TEXT[_shutdownMode] + " and continues normal operation!");
    _an = null;

    if(_counterInstance != null)
    {
      _counterInstance._abort();
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.entity.Announcements.announceToAll()

        break;

    }
    try
    {
      _an.announceToAll("Server is " + MODE_TEXT[_shutdownMode] + " NOW!");
      _an = null;
    }
    catch(Throwable t)
    {
      if(Config.ENABLE_ALL_EXCEPTIONS)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.