Examples of SymbolInstance


Examples of lineage2.gameserver.model.instances.SymbolInstance

        else
        {
          symbolLoc = activeChar.getLoc();
        }
        Skill symbolSkill = getFirstAddedSkill();
        SymbolInstance symbol = new SymbolInstance(IdFactory.getInstance().getNextId(), symbolTemplate, activeChar, symbolSkill);
        symbol.setReflection(activeChar.getReflection());
        symbol.setShowName(false);
        symbol.spawnMe(symbolLoc);
        ThreadPoolManager.getInstance().schedule(new GameObjectTasks.DeleteTask(symbol), _lifeTime);
        break;
      case CLONE:
        if (activeChar.isMounted())
        {
View Full Code Here

Examples of lineage2.gameserver.model.instances.SymbolInstance

      ((Player) _effected).setGroundSkillLoc(null);
    }
    NpcTemplate template = NpcHolder.getInstance().getTemplate(_skill.getSymbolId());
    if (getTemplate()._count <= 1)
    {
      _symbol = new SymbolInstance(IdFactory.getInstance().getNextId(), template, _effected, skill);
    }
    else
    {
      _symbol = new NpcInstance(IdFactory.getInstance().getNextId(), template);
    }
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.