Examples of standUp()


Examples of lineage2.gameserver.model.Player.standUp()

                activeChar.sitDown(null);
              }
            }
            else
            {
              activeChar.standUp();
            }
            break;
          case 1:
            if (activeChar.isRunning())
            {
View Full Code Here

Examples of lineage2.gameserver.model.Player.standUp()

              return;
            }
            if (activeChar.isInStoreMode())
            {
              activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
              activeChar.standUp();
              activeChar.broadcastCharInfo();
            }
            else if (!TradeHelper.checksIfCanOpenStore(activeChar, _actionId == 61 ? Player.STORE_PRIVATE_SELL_PACKAGE : Player.STORE_PRIVATE_SELL))
            {
              activeChar.sendActionFailed();
View Full Code Here

Examples of lineage2.gameserver.model.Player.standUp()

              return;
            }
            if (activeChar.isInStoreMode())
            {
              activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
              activeChar.standUp();
              activeChar.broadcastCharInfo();
            }
            else if (!TradeHelper.checksIfCanOpenStore(activeChar, Player.STORE_PRIVATE_BUY))
            {
              activeChar.sendActionFailed();
View Full Code Here

Examples of lineage2.gameserver.model.Player.standUp()

              return;
            }
            if (activeChar.isInStoreMode())
            {
              activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
              activeChar.standUp();
              activeChar.broadcastCharInfo();
            }
            else if (!TradeHelper.checksIfCanOpenStore(activeChar, Player.STORE_PRIVATE_MANUFACTURE))
            {
              activeChar.sendActionFailed();
View Full Code Here

Examples of lineage2.gameserver.model.Player.standUp()

              return;
            }
            if (activeChar.isInStoreMode())
            {
              activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
              activeChar.standUp();
              activeChar.broadcastCharInfo();
            }
            else if (!TradeHelper.checksIfCanOpenStore(activeChar, Player.STORE_PRIVATE_MANUFACTURE))
            {
              activeChar.sendActionFailed();
View Full Code Here

Examples of lineage2.gameserver.model.Player.standUp()

              target.setReflection(re.length > 3 ? Integer.parseInt(re[3]) : 0);
              target.stopUnjailTask();
              target.unsetVar("jailedFrom");
              target.unsetVar("jailed");
              target.unblock();
              target.standUp();
              activeChar.sendMessage("You unjailed " + player + ".");
            }
            else
            {
              activeChar.sendMessage("Can't find char " + player + ".");
View Full Code Here

Examples of lineage2.gameserver.model.Player.standUp()

      targ.kick();
    }
    else if (targ.isInStoreMode())
    {
      targ.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
      targ.standUp();
      targ.broadcastCharInfo();
      targ.getBuyList().clear();
    }
    if (Config.BANCHAT_ANNOUNCE_FOR_ALL_WORLD)
    {
View Full Code Here

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

    if (player == null)
        return;

    player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_NONE);
    player.broadcastUserInfo();
    player.standUp();
  }

  @Override
  public String getType()
  {
View Full Code Here

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

            || player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_PACKAGE_SELL)
          player.setPrivateStoreType(L2PcInstance.STORE_PRIVATE_NONE);

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

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

       Iterator<String> it = linked.iterator();
       while(it.hasNext()){
           try{L2PcInstance pc = L2World.getInstance().getPlayer(it.next().toString());
           pc.eventSitForced = !pc.eventSitForced;
           if(pc.eventSitForced) pc.sitDown();
           else pc.standUp();}catch(Exception e){}
       }

   }
   void killTeam(L2PcInstance activeChar, int team){
       LinkedList<String> linked = L2Event.players.get(team);
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.