Examples of showTransformationSkillList()


Examples of l2p.gameserver.model.instances.L2NpcInstance.showTransformationSkillList()

      {
        trainer.showClanSkillList(activeChar);
      }
      else if(_skillType == AcquireSkillList.TRANSFORMATION)
      {
        trainer.showTransformationSkillList(activeChar);
      }
      else if(_skillType == AcquireSkillList.TRANSFER)
      {
        trainer.showTransferSkillList(activeChar);
      }
View Full Code Here

Examples of lineage2.gameserver.model.instances.NpcInstance.showTransformationSkillList()

        break;
      case TRANSFORMATION:
        learnSimpleNextLevel(player, skillLearn, skill, 0);
        if (trainer != null)
        {
          trainer.showTransformationSkillList(player, AcquireType.TRANSFORMATION);
        }
        break;
      case COLLECTION:
        learnSimpleNextLevel(player, skillLearn, skill, 0);
        if (trainer != null)
View Full Code Here

Examples of lineage2.gameserver.model.instances.NpcInstance.showTransformationSkillList()

          return;
        }
        learnSimpleNextLevel(player, skillLearn, skill, 1);
        if (trainer != null)
        {
          trainer.showTransformationSkillList(player, AcquireType.CERTIFICATION);
        }
        break;
      case DUAL_CERTIFICATION:
        if (!player.getActiveSubClass().isBase())
        {
View Full Code Here

Examples of lineage2.gameserver.model.instances.NpcInstance.showTransformationSkillList()

          return;
        }
        learnSimpleNextLevel(player, skillLearn, skill, 2);
        if (trainer != null)
        {
          trainer.showTransformationSkillList(player, AcquireType.DUAL_CERTIFICATION);
        }
        break;
    }
  }
 
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.