Package l2p.gameserver.ai

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

Related Classes of l2p.gameserver.ai.NaiaSpore

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.