Examples of tempInventoryDisable()


Examples of l2p.gameserver.model.L2Player.tempInventoryDisable()

      }
    }
    else if(command.equalsIgnoreCase("_bbsshop_sell"))
    {
      L2Player player = L2ObjectsStorage.getPlayer(objectId);
      player.tempInventoryDisable();
      player.sendPacket(new ExBuySellList(null, player, 0));
    }
  }

  @Override
View Full Code Here

Examples of l2p.gameserver.model.L2Player.tempInventoryDisable()

    L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null || !activeChar.getPlayerAccess().UseWarehouse)
    {
      return;
    }
    activeChar.tempInventoryDisable();
    activeChar.sendPacket(new PackageSendableList(activeChar, _characterObjectId));
  }
}
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.