if(pay != null && pay.getCount() >= Config.SERVICES_EXPAND_INVENTORY_PRICE)
{
player.getInventory().destroyItem(pay, Config.SERVICES_EXPAND_INVENTORY_PRICE, true);
player.setExpandInventory(player.getExpandInventory() + 1);
player.setVar("ExpandInventory", String.valueOf(player.getExpandInventory()));
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);
}