Ejemplo n.º 1
0
 @Override
 public void onBypassFeedback(L2PcInstance player, String command) {
   if (command.startsWith("SkillList")) {
     player.setSkillLearningClassId(player.getClassId());
     showSkillList(player, this, player.getClassId());
   } else if (command.startsWith("EnchantSkillList"))
     showEnchantSkillList(player, this, player.getClassId());
   else if (command.startsWith("GiveBlessing")) giveBlessingSupport(player);
   else super.onBypassFeedback(player, command);
 }