Examples of MinionInstance


Examples of lineage2.gameserver.model.instances.MinionInstance

   */
  @Override
  protected void onEvtDead(Creature killer)
  {
    final NpcInstance actor = getActor();
    final MinionInstance _minion = getAliveMinion(actor);
    MonsterInstance _leader = null;
    switch (actor.getNpcId())
    {
      case SPIKE_STAKATO_NURSE:
        if (_minion == null)
View Full Code Here

Examples of lineage2.gameserver.model.instances.MinionInstance

            _master.spawnMinion(m);
          }
        }
        for (int i = 0; i < minionCount; i++)
        {
          MinionInstance m = new MinionInstance(IdFactory.getInstance().getNextId(), NpcHolder.getInstance().getTemplate(minionId));
          m.setLeader(_master);
          _master.spawnMinion(m);
          _minions.add(m);
        }
      }
    }
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.