Examples of NaiaSpore


Examples of l2p.gameserver.ai.NaiaSpore

    {
      for (L2MonsterInstance spore : _spores)
      {
        if (spore != null /*&& !spore.isDead()*/)
        {
          NaiaSpore ai = (NaiaSpore) spore.getAI();
          if (ai != null)
          {
            ai.notifyEpidosIndexReached();
            ThreadPoolManager.getInstance().scheduleGeneral(new SpawnEpidosTask(_currentAttribute), 3000);
            _isEpidosSpawned = true;
          }
        }
      }
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.