Examples of openCloseDoor()


Examples of l2p.gameserver.model.entity.residence.Castle.openCloseDoor()

      if(!val.equals(""))
      {
        boolean open = Integer.parseInt(val) == 1;
        while(st.hasMoreTokens())
        {
          castle.openCloseDoor(player, Integer.parseInt(st.nextToken()), open);
        }
      }
      NpcHtmlMessage html = new NpcHtmlMessage(player, this);
      html.setFile("data/html/castle/chamberlain/" + getTemplate().npcId + "-d.htm");
      html.replace("%npcname%", getName());
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.