Package com.l2jfrozen.gameserver.model.actor.instance

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2ClassMasterInstance


   
    Hellows(activeChar);
   
    if (Config.ALLOW_CLASS_MASTERS && Config.ALLOW_REMOTE_CLASS_MASTERS)
    {
      final L2ClassMasterInstance master_instance = L2ClassMasterInstance.getInstance();
     
      if(master_instance != null){
       
        ClassLevel lvlnow = PlayerClass.values()[activeChar.getClassId().getId()].getLevel();
 
View Full Code Here


    boolean levelIncreased = super.addLevel(value);

    if(Config.ALLOW_CLASS_MASTERS && Config.ALLOW_REMOTE_CLASS_MASTERS)
    {
      final L2ClassMasterInstance master_instance = L2ClassMasterInstance.getInstance();
     
      if(master_instance != null){
       
        ClassLevel lvlnow = PlayerClass.values()[getActiveChar().getClassId().getId()].getLevel();
        if(getLevel() >= 20 && lvlnow == ClassLevel.First)
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.actor.instance.L2ClassMasterInstance

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.