Package lineage2.gameserver.model

Examples of lineage2.gameserver.model.GameObject.sendMessage()


      System.out.println("Event: Master of Enchanting started.");
      Announcements.getInstance().announceByCustomMessage("scripts.events.MasOfEnch.AnnounceEventStarted", null);
    }
    else
    {
      player.sendMessage("Event 'Master of Enchanting' already started.");
    }
    _active = true;
    show("admin/events.htm", player);
  }
 
View Full Code Here


      System.out.println("Event: Master of Enchanting stopped.");
      Announcements.getInstance().announceByCustomMessage("scripts.events.MasOfEnch.AnnounceEventStoped", null);
    }
    else
    {
      player.sendMessage("Event 'Master of Enchanting' not started.");
    }
    _active = false;
    show("html/admin/events.htm", player);
  }
 
View Full Code Here

      activateAI();
      System.out.println("Event 'The Flow Of The Horror' started.");
    }
    else
    {
      player.sendMessage("Event 'The Flow Of The Horror' already started.");
    }
    show("admin/events.htm", player);
  }
 
  /**
 
View Full Code Here

      deactivateAI();
      System.out.println("Event 'The Flow Of The Horror' stopped.");
    }
    else
    {
      player.sendMessage("Event 'The Flow Of The Horror' not started.");
    }
    show("admin/events.htm", player);
  }
 
  /**
 
View Full Code Here

      System.out.println("Event 'Summer Meleons' started.");
      Announcements.getInstance().announceByCustomMessage("scripts.events.SummerMeleons.AnnounceEventStarted", null);
    }
    else
    {
      player.sendMessage("Event 'Summer Meleons' already started.");
    }
    _active = true;
    show("admin/events.htm", player);
  }
 
View Full Code Here

      System.out.println("Event 'Summer Meleons' stopped.");
      Announcements.getInstance().announceByCustomMessage("scripts.events.SummerMeleons.AnnounceEventStoped", null);
    }
    else
    {
      player.sendMessage("Event 'Summer Meleons' not started.");
    }
    _active = false;
    show("admin/events.htm", player);
  }
 
View Full Code Here

      System.out.println("Event: Coffer of Shadows started.");
      Announcements.getInstance().announceByCustomMessage("scripts.events.CofferofShadows.AnnounceEventStarted", null);
    }
    else
    {
      player.sendMessage("Event 'Coffer of Shadows' already started.");
    }
    _active = true;
    show("admin/events.htm", player);
  }
 
View Full Code Here

      System.out.println("Event: Coffer of Shadows stopped.");
      Announcements.getInstance().announceByCustomMessage("scripts.events.CofferofShadows.AnnounceEventStoped", null);
    }
    else
    {
      player.sendMessage("Event 'Coffer of Shadows' not started.");
    }
    _active = false;
    show("admin/events.htm", player);
  }
 
View Full Code Here

      System.out.println("Event '" + _name + "' started.");
      Announcements.getInstance().announceByCustomMessage(_msgStarted, null);
    }
    else
    {
      player.sendMessage("Event '" + _name + "' already started.");
    }
    _active = true;
    show("admin/events.htm", player);
  }
 
View Full Code Here

      System.out.println("Event '" + _name + "' stopped.");
      Announcements.getInstance().announceByCustomMessage(_msgEnded, null);
    }
    else
    {
      player.sendMessage("Event '" + _name + "' not started.");
    }
    _active = false;
    show("admin/events.htm", player);
  }
 
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.