Package com.l2jfrozen.gameserver.model.actor.instance

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


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

   
    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

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

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

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

        pc = null;
      }
      catch(Exception e)
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.