Package l2p.gameserver.model.instances

Examples of l2p.gameserver.model.instances.L2DoorInstance.openMe()


      door.setReflection(this);
      addDoor(door);
      door.spawnMe();
      if(d.isOpen())
      {
        door.openMe();
      }
      door.setIsInvul(d.isInvul());
    }
  }
View Full Code Here


          r.addDoor(door);
          door.setReflection(r);
          door.spawnMe();
          if(d.isOpen())
          {
            door.openMe();
          }
        }
      }
    }
    World world = new World();
View Full Code Here

        if(targ.isDoor())
        {
          L2DoorInstance target = (L2DoorInstance) targ;
          if(!target.isOpen() && (target.key > 0 || Rnd.chance(_unlockPower - target.level * 100)))
          {
            target.openMe();
            target.onOpen();
          }
          else
          {
            activeChar.sendPacket(Msg.YOU_HAVE_FAILED_TO_UNLOCK_THE_DOOR);
 
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.