Package l2p.gameserver.model.instances

Examples of l2p.gameserver.model.instances.L2ReflectionBossInstance


    L2NpcInstance actor = getActor();
    if(actor == null)
    {
      return;
    }
    L2ReflectionBossInstance tiat = new L2ReflectionBossInstance(IdFactory.getInstance().getNextId(), NpcTable.getTemplate(TIAT_NPC_ID));
    tiat.setSpawnedLoc(TIAT_LOC);
    tiat.setReflection(actor.getReflection());
    tiat.onSpawn();
    tiat.spawnMe(tiat.getSpawnedLoc());
    actor.getReflection().addSpawn(tiat.getSpawn());
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.model.instances.L2ReflectionBossInstance

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.