Package l2p.gameserver.model

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


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

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

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

        {
          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

        else
        {
          activeChar.setTradeList(new L2TradeList(0));
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(false))
        {
          activeChar.sendActionFailed();
          return;
View Full Code Here

        if(activeChar.getCreateList() == null)
        {
          activeChar.setCreateList(new L2ManufactureList());
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(true))
        {
          activeChar.sendActionFailed();
          return;
View Full Code Here

        if(activeChar.getCreateList() == null)
        {
          activeChar.setCreateList(new L2ManufactureList());
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        activeChar.sendPacket(new RecipeShopManageList(activeChar, false));
        break;
      }
      case 96: // Quit Party Command Channel?
View Full Code Here

      activeChar.sendActionFailed();
      return;
    }
    activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
    activeChar.broadcastUserInfo(true);
    activeChar.standUp();
  }
}
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.