Package net.sf.l2j.gameserver.model.actor.instance

Examples of net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.standUp()


        if (player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_BUY || player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_BUY +1)
          player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_NONE);

        if (player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_NONE)
        {
      if (player.isSitting()) player.standUp();
      player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_BUY +1);
      player.sendPacket(new PrivateStoreManageListBuy(player));
        }
  }
View Full Code Here


        activeChar.broadcastPacket(cs);
        break;
      }

      if (activeChar.isSitting())
        activeChar.standUp();
      else
        activeChar.sitDown();

      if (Config.DEBUG)
        _log.fine("new wait type: "+(activeChar.isSitting() ? "SITTING" : "STANDING"));
View Full Code Here

      player.sitDown();
      player.broadcastPacket(cs);
    }
   
    if (_typeStand)
      player.standUp();
    else
      player.sitDown();
  }
 
  @Override
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.