Package lineage2.gameserver.model

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


    if (activeChar == null)
    {
      return;
    }
    activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
    activeChar.standUp();
    activeChar.broadcastCharInfo();
  }
}
View Full Code Here


    {
      activeChar.sendActionFailed();
      return;
    }
    activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
    activeChar.standUp();
    activeChar.broadcastCharInfo();
  }
}
View Full Code Here

    {
      activeChar.sendActionFailed();
      return;
    }
    activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
    activeChar.standUp();
    activeChar.broadcastCharInfo();
  }
}
View Full Code Here

      if (activeChar.isInStoreMode())
      {
        if (!TradeHelper.checksIfCanOpenStore(activeChar, activeChar.getPrivateStoreType()))
        {
          activeChar.setPrivateStoreType(Player.STORE_PRIVATE_NONE);
          activeChar.standUp();
          activeChar.broadcastCharInfo();
        }
      }
      activeChar.setRunning();
      activeChar.standUp();
View Full Code Here

          activeChar.standUp();
          activeChar.broadcastCharInfo();
        }
      }
      activeChar.setRunning();
      activeChar.standUp();
      activeChar.startTimers();
    }
    activeChar.sendPacket(new ExBR_PremiumState(activeChar, activeChar.hasBonus()));
   
    activeChar.getMacroses().sendUpdate(0x01, 0, true);
View Full Code Here

    {
      player.setPendingRevive(true);
    }
    if (player.isSitting())
    {
      player.standUp();
    }
    player.setTarget(null);
    player.setIsInOlympiadMode(true);
    player.leaveParty();
    Reflection ref = _game.getReflection();
View Full Code Here

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

              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

              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

              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

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.