Package services

Source Code of services.ExpandInventory

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package services;

import lineage2.gameserver.Config;
import lineage2.gameserver.cache.Msg;
import lineage2.gameserver.data.xml.holder.ItemHolder;
import lineage2.gameserver.model.Player;
import lineage2.gameserver.network.serverpackets.components.SystemMsg;
import lineage2.gameserver.scripts.Functions;
import lineage2.gameserver.templates.item.ItemTemplate;

/**
* @author Mobius
* @version $Revision: 1.0 $
*/
public class ExpandInventory extends Functions
{
  /**
   * Method get.
   */
  public void get()
  {
    Player player = getSelf();
    if (player == null)
    {
      return;
    }
    if (!Config.SERVICES_EXPAND_INVENTORY_ENABLED)
    {
      show("Expand Inventory", player);
      return;
    }
    if (player.getInventoryLimit() >= Config.SERVICES_EXPAND_INVENTORY_MAX)
    {
      player.sendMessage("Already max count.");
      return;
    }
    if (player.getInventory().destroyItemByItemId(Config.SERVICES_EXPAND_INVENTORY_ITEM, Config.SERVICES_EXPAND_INVENTORY_PRICE))
    {
      player.setExpandInventory(player.getExpandInventory() + 1);
      player.setVar("ExpandInventory", String.valueOf(player.getExpandInventory()), -1);
      player.sendMessage("Inventory capacity is now " + player.getInventoryLimit());
    }
    else if (Config.SERVICES_EXPAND_INVENTORY_ITEM == 57)
    {
      player.sendPacket(Msg.YOU_DO_NOT_HAVE_ENOUGH_ADENA);
    }
    else
    {
      player.sendPacket(SystemMsg.INCORRECT_ITEM_COUNT);
    }
    /**
     * Method show.
     */
    show();
  }
 
  public void show()
  {
    Player player = getSelf();
    if (player == null)
    {
      return;
    }
    if (!Config.SERVICES_EXPAND_INVENTORY_ENABLED)
    {
      show("Expand Inventory", player);
      return;
    }
    ItemTemplate item = ItemHolder.getInstance().getTemplate(Config.SERVICES_EXPAND_INVENTORY_ITEM);
    String out = "";
    out += "<html><body>Expand Personal Inventory";
    out += "<br><br><table>";
    out += "<tr><td>Current Slots:</td><td>" + player.getInventoryLimit() + "</td></tr>";
    out += "<tr><td>Max Slots:</td><td>" + Config.SERVICES_EXPAND_INVENTORY_MAX + "</td></tr>";
    out += "<tr><td>Price:</td><td>" + Config.SERVICES_EXPAND_INVENTORY_PRICE + " " + item.getName() + "</td></tr>";
    out += "</table><br><br>";
    out += "<button width=100 height=15 back=\"L2UI_CT1.Button_DF_Down\" fore=\"L2UI_CT1.Button_DF\" action=\"bypass -h scripts_services.ExpandInventory:get\" value=\"Upgrade\">";
    out += "</body></html>";
    show(out, player);
  }
}
TOP

Related Classes of services.ExpandInventory

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.