Package net.sf.l2j.gameserver.model.actor.instance

Examples of net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.sendSkillList()


        L2PcInstance player = (L2PcInstance)activeChar.getTarget();
        for (L2Skill skill : player.getAllSkills())
          player.removeSkill(skill);
        activeChar.sendMessage("You removed all skills from " + player.getName());
        player.sendMessage("Admin removed all skills from you.");
        player.sendSkillList();
      }
    }
    else if (command.startsWith("admin_add_clan_skill"))
    {
      try
View Full Code Here


      skills = SkillTreeTable.getInstance().getAvailableSkills(player, player.getClassId());
    }
    //Notify player and admin
    player.sendMessage("A GM gave you " + skillCounter + " skills.");
    activeChar.sendMessage("You gave " + skillCounter + " skills to " + player.getName());
    player.sendSkillList();
  }

  @Override
  public String[] getAdminCommandList() {
    return ADMIN_COMMANDS;
View Full Code Here

    L2PcInstance cha = getClient().getActiveChar();
       
        if (cha == null)
            return;

        cha.sendSkillList();
  }

  /* (non-Javadoc)
   * @see net.sf.l2j.gameserver.clientpackets.ClientBasePacket#getType()
   */
 
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.