Package instances

Examples of instances.KamalokaNightmare


    }
    final Reflection r = actor.getReflection();
    boolean spawnPossible = true;
    if (r instanceof KamalokaNightmare)
    {
      final KamalokaNightmare kama = (KamalokaNightmare) r;
      kama.addKilledKanabion(type);
      spawnPossible = kama.isSpawnPossible();
    }
    if (spawnPossible && (nextId > 0))
    {
      Creature player = null;
      if (!killer.isPlayer())
View Full Code Here


          player.teleToLocation(r.getTeleportLoc(), r);
        }
      }
      else if (player.canEnterInstance(val))
      {
        ReflectionUtils.enterReflection(player, new KamalokaNightmare(player), val);
      }
    }
    else
    {
      super.onBypassFeedback(player, command);
View Full Code Here

TOP

Related Classes of instances.KamalokaNightmare

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.