Examples of standUp()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.standUp()

          break;
        }

        if(activeChar.isSitting() || activeChar.isFakeDeath())
        {
          activeChar.standUp();
        }
        else
        {
          activeChar.sitDown();
        }
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.standUp()

      return;
    }
   
    if (player.isSitting() && player.getPrivateStoreType() != 0)
    {
      player.standUp();
    }
   
    if (player.getMountType() != 0)
      return;
   
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.standUp()

   
    if (player.getPrivateStoreType() == L2PcInstance.STORE_PRIVATE_NONE)
    {
      if (player.isSitting())
      {
        player.standUp();
      }
     
      if (Config.SELL_BY_ITEM)
      {
        CreatureSay cs11 = new CreatureSay(0, 15, "", "ATTENTION: Store System is not based on Adena, be careful!"); // 8D
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.standUp()

        player.sitDown();
        player.broadcastPacket(cs);
      }

      if (_typeStand)
        player.standUp();
      else
        player.sitDown();
    }
  }
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.standUp()

        {
          pc.sitDown();
        }
        else
        {
          pc.standUp();
        }

        pc = null;
      }
      catch(Exception e)
View Full Code Here

Examples of l2p.gameserver.model.L2Player.standUp()

      {
        player.setIsPendingRevive(true);
      }
      if(player.isSitting())
      {
        player.standUp();
      }
      player.setTarget(null);
      player.setIsInOlympiadMode(true);
      if(player.getParty() != null)
      {
View Full Code Here

Examples of l2p.gameserver.model.L2Player.standUp()

      {
        activeChar.getTransaction().cancel();
      }
    }
    activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
    activeChar.standUp();
    activeChar.broadcastUserInfo(true);
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.standUp()

      {
        activeChar.getTransaction().cancel();
      }
    }
    activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
    activeChar.standUp();
    activeChar.broadcastUserInfo(true);
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.standUp()

          activeChar.breakFakeDeath();
          activeChar.updateEffectIcons();
        }
        else if(activeChar.isSitting())
        {
          activeChar.standUp();
        }
        else
        {
          activeChar.sitDown();
        }
View Full Code Here

Examples of l2p.gameserver.model.L2Player.standUp()

        {
          activeChar.setTradeList(new L2TradeList(0));
        }
        activeChar.getTradeList().updateSellList(activeChar, activeChar.getSellList());
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(false))
        {
          activeChar.sendActionFailed();
          return;
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.