Package com.l2jfrozen.gameserver.model

Examples of com.l2jfrozen.gameserver.model.L2Object


  }

  private void removeSkillsPage(L2PcInstance activeChar, int page)
  {
    //TODO: Externalize HTML
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      player = (L2PcInstance) target;
View Full Code Here


    target = null;
  }

  private void showMainPage(L2PcInstance activeChar)
  {
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      player = (L2PcInstance) target;
View Full Code Here

    target = null;
  }

  private void adminGetSkills(L2PcInstance activeChar)
  {
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      player = (L2PcInstance) target;
View Full Code Here

    player = null;
  }

  private void adminResetSkills(L2PcInstance activeChar)
  {
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      player = (L2PcInstance) target;
View Full Code Here

    target = null;
  }

  private void adminAddSkill(L2PcInstance activeChar, String val)
  {
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      if(target==activeChar || (target!=activeChar && activeChar.getAccessLevel().getLevel()<3))
View Full Code Here

    target = null;
  }

  private void adminRemoveSkill(L2PcInstance activeChar, int idval)
  {
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      player = (L2PcInstance) target;
View Full Code Here

    target = null;
  }

  private void adminAddClanSkill(L2PcInstance activeChar, int id, int level)
  {
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      player = (L2PcInstance) target;
View Full Code Here

   * @param command
   * @param activeChar
   */
  private void snoop(String command, L2PcInstance activeChar)
  {
    L2Object target = null;
    if (command.length() > 12)
    {
      target = L2World.getInstance().getPlayer(command.substring(12));
    }
    if (target == null)
View Full Code Here

    {
      player.sendMessage("You selling items too fast");
      return;
    }
   
    L2Object object = L2World.getInstance().findObject(_storePlayerId);
    if (object == null || !(object instanceof L2PcInstance))
      return;
   
    L2PcInstance storePlayer = (L2PcInstance) object;
    if (storePlayer.getPrivateStoreType() != L2PcInstance.STORE_PRIVATE_BUY)
View Full Code Here

    return ADMIN_COMMANDS;
  }

  private void disconnectCharacter(L2PcInstance activeChar)
  {
    L2Object target = activeChar.getTarget();
    L2PcInstance player = null;

    if(target instanceof L2PcInstance)
    {
      player = (L2PcInstance) target;
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.L2Object

Copyright © 2018 www.massapicom. 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.