Download
(104Kb)
Download
Updated: 01-28-21 04:12 AM
Addon for:
cargBags.
Pictures
File Info
Compatibility:
Shadowlands patch (9.0.2)
Updated:01-28-21 04:12 AM
Created:05-24-13 12:02 PM
Downloads:31,616
Favorites:127
MD5:

cargBags Nivaya  Popular! (More than 5000 hits)

Version: 9.0 r93
by: Nibelheim, humfras

A fan update of cargBags_Nivaya for Mists of Pandaria. Thanks to all addon coders who contributed to this update.


About

This is an inventory addon featuring item filters, new items, support for item sets, empty bagspace compression and alot more. It is a layout for cargBags. However, cargBags 2.x is included, so you don't need to download it separately.


Features

  • You can freely move the main inventory window (and the bank window), all the other containers move as you move that one.
  • Containers for Consumables, Quest Items, Armor/Weapons, Trade Goods and Junk.
  • Container for Blizzards Equipment Manager.
  • Container for new Items (items you recently obtained).
  • Empty containers are hidden, without just leaving an emtpy space.
  • Easy-to-use dropdown menu to move items between containers (alt + right-click an item).
  • Option to compress empty bagspace to a single slot.
  • Restack button to stack all items in your bags.
  • Sell Junk (toggle on/off) to automatically vendor all grey items.
  • Item sorting by rarity and item ID, so that identical items or stacks will be grouped together.
  • Clicking on the "Bags" Button allows you to switch bags and to buy new bag slots (bank).
  • The "New Items" Container
  • When you login using this layout the first time, all the items in your inventory will be marked as "new". This is because new items will exclusively be reset when you click the "Reset New" button, which should be your first action in order to have the items filtered to their corresponding category. The advantage of this behaviour is that items marked as new "survive" disconnects, logouts and reloading the UI.
    Of course, you can toggle this filter off via the slash command (/cbniv).


The Cool Stuff Container

Initially a filter on its own, it is now simply a container for items you want to have in a special place. You can activate it by moving one or more items to it via the context menu (alt + right-click).


Custom Containers

You can also add your very own custom containers, which behave just like the "Cool Stuff" container. By default, their priority is higher than the "New Items" container, so items assigned to one of these will never be marked as new. This priority can be lowered.

Add a container with /cbniv addbag name, remove one with /cbniv delbag name, list all existing with /cbniv listbags etc. Type /cbniv for a full list of available commands.


Configuration

Via the slash command /cbniv you can adjust the following settings:
  • Enable/disable some of the filters (new items, trade goods, armor/weapons and junk)
  • Adjust the overall scale.
  • Toggle bank background color between black and blue.
  • Toggle bank filtering.
  • Toggle empty bagspace compression.
  • Toggle item sorting.

By editing config.lua you can adjust the following settings:
  • Item size
  • Number of columns
  • Fonts
  • Color of bag frames

9.0 r89

* added function to place items directly into the reagent bank by ctrl + right clicking them in the bags when the bankframe is shown

9.0 r89

* Shadowlands 9.0.2 toc update

9.0 r86

* Shadowlands pre patch update

8.2 r73

* fix potential bug with equipment manager

8.2 r73

* patch 8.2 changes/bugfixes

8.1.5 r63

* patch 8.1.5 changes/bugfixes

8.0 r59

* fixed a bug with itemLevel returning as nil on certain conditions

8.0 r57

* fix wrong item level display via Tooltip scanning until Blizzard fixes GetDetailedItemLevelInfo()
+ support for Caerdon Wardrobe

7.3 r54

* BfA preparation

7.3 r51

* fixed bank bag bar misbehavior

7.3 r50

update for 7.3
* minor bugfixes

7.2 r49

update for 7.2
* minor bugfixes


7.1 r46

* fixed a bug that showed the ilvl on Obliterum and Obliterum Ash
* fixed a bug that prevented item from being classified correctly on initial login

7.1 r45

* fixed a typo with the new artifact power bank container
* fixed frame anchoring bug with battlepet and AP frame

7.1 r44

* fixed artifact item level display
+ added ilvl display for artifact relics
+ added a default category for items that give artifact power

r43

* 7.1 toc update
* fixed "Mark as New"
* improved CPU usage
* minor bugfixes/improvements

r37

few more fixes / enhancements
fix bank bags drag handling

r37

+ added a workaround for a potential bug when using Molinari

r33

added a new default bag for gems
(if you have a custom filter for gems, you can delete it via '/cbniv delbag NAMEOFBAG')
- fixed a rare bug with the item grouping
- performance upgrade for the 'new item' check

r27

- fixed green texture bug when not compressing empty bag slots ( /cbniv empty )
- fixed bugs with windowed mode
- added LibItemUpgradeInfo-1.0 to show the correct iLvl
- updated the locale strings
- fix bugs with RealUI implementation

r23

Update for 7.0

r14

Update for 6.0
Should be working with or without RealUI (no compatibility issues anymore!)


1.6

toc update for 5.4
Fixed NewItemTexture misbehavior


1.5

Fixed some text


1.4

Consumables and Quest filters can now be disabled
Option added to toggle between Icons and Text for the Currency display


1.3

Option added to show the Bag Buttons by default
Option added to adjust gap between item slots
Taint fix and DropDown menu now clamped to screen (thank you Humfras!)


1.2

Gap between bag frames now set to 1 pixel instead of 2
Bags remain pixel perfect when activating 'Toggle Bags'
New DropDown Menu to hopefully fix some taint issues (thanks to humfras)
Fix for Guild Bank item dragging (thanks to Klaygor)


1.1

Bags now dynamically scale to remain pixel perfect
c: Consumables added to filter options
Post A Reply Comment Options
Unread 11-03-22, 10:58 PM  
Smallinger
A Deviate Faerie Dragon
 
Smallinger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 7
Uploads: 2
The border-color for items are borken, anyone has a tip for fixing it ?



is the function in cargBags/mixins-add/default.scaffold.lua on line 104

Code:
local borderSize
local function GetBorderSizeFromScreenSize()
	if borderSize then return borderSize end
	local width, height = GetPhysicalScreenSize()
	local uiScale = GetCVar("uiScale")
	
	borderSize = 768/height/(uiScale*cBnivCfg.scale)
	return borderSize
end
after change this, its now working
Code:
local borderSize
local function GetBorderSizeFromScreenSize()
	if borderSize then return borderSize end
	local width, height = GetPhysicalScreenSize()
	local uiScale = GetCVar("uiScale")
	-- 768/height/(uiScale*cBnivCfg.scale)
	borderSize = 0.9
	return borderSize
end
Last edited by Smallinger : 11-03-22 at 11:21 PM.
Report comment to moderator  
Reply With Quote
Unread 02-09-21, 07:09 PM  
Ayrie
A Deviate Faerie Dragon

Forum posts: 10
File comments: 11
Uploads: 0
Mimic RealUI Setup

Is it possible to add an automatic filter to this, by chance? RealUI has the functionality of shipping with automatic filters for trade goods. I'm trying to get that setup for someone that doesn't use RealUI but enjoys that setup. Let me know if that's possible!
Report comment to moderator  
Reply With Quote
Unread 11-20-20, 02:58 AM  
Ruven
A Kobold Labourer
 
Ruven's Avatar

Forum posts: 0
File comments: 56
Uploads: 0
Thank you for still updating this addon, it's by far the best bags addon I've used over the years
Report comment to moderator  
Reply With Quote
Unread 12-08-19, 12:25 PM  
runamonk
A Theradrim Guardian
 
runamonk's Avatar
AddOn Author - Click to view AddOns

Forum posts: 61
File comments: 40
Uploads: 3
Howdy Ya'll,

Just curious if anyone is who is using this addon has had this UI somehow either blank or end up linked to their bags toggle button while playing.
Report comment to moderator  
Reply With Quote
Unread 09-24-19, 11:51 AM  
tordenflesk
A Deviate Faerie Dragon

Forum posts: 18
File comments: 213
Uploads: 0
Is there a way to disable the automatic open/close? Annoying to have to constantly re-open/close the bags.
Report comment to moderator  
Reply With Quote
Unread 08-27-19, 02:48 PM  
humfras
A Flamescale Wyrmkin
AddOn Author - Click to view AddOns

Forum posts: 131
File comments: 126
Uploads: 8
Originally Posted by Baltharus
Is there any chance of making a WoW Classic version of this?

cargBags_Nivaya has been my absolute favorite bag solution for years, would love to take it with me back to classic.
Check https://www.curseforge.com/wow/addon...date/files/all
r78-alpha or newer should support Classic.
Make sure to enable loading outdated AddOns in the AddOn menu in the character selection.
__________________
Author of VuhDo CursorCastBar OptiTaunt Poisoner RaidMobMarker
Report comment to moderator  
Reply With Quote
Unread 08-10-19, 07:06 PM  
Baltharus
A Chromatic Dragonspawn
 
Baltharus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 190
File comments: 14
Uploads: 1
Is there any chance of making a WoW Classic version of this?

cargBags_Nivaya has been my absolute favorite bag solution for years, would love to take it with me back to classic.
__________________
[SIGPIC][/SIGPIC]
Originally Posted by us2006027321 View Post
Certain long-standing political, pseudo-religious Roman traditions have taken you seriously and notified their Knights Templar and Illiuminati appropriately. Your move... /grin
Report comment to moderator  
Reply With Quote
Unread 07-30-19, 09:29 AM  
cocknose
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
is it possible to move the position of the equipment bag ?
Report comment to moderator  
Reply With Quote
Unread 07-05-19, 12:54 PM  
Lybrial
A Flamescale Wyrmkin
AddOn Compiler - Click to view compilations

Forum posts: 120
File comments: 55
Uploads: 1
Nice Addon. Someone just linked me it. I like it better than the other Bag Addons (Bagnon, Adibags, etc.)
Report comment to moderator  
Reply With Quote
Unread 07-04-19, 11:01 AM  
dzn1949
A Defias Bandit

Forum posts: 2
File comments: 34
Uploads: 0
Amazing work!
Thx.
Report comment to moderator  
Reply With Quote
Unread 03-13-19, 12:33 AM  
humfras
A Flamescale Wyrmkin
AddOn Author - Click to view AddOns

Forum posts: 131
File comments: 126
Uploads: 8
Originally Posted by Xionyus
As of 8.1.5, the addon is not working at all for me.
Should be working again with 8.1.5 r63
__________________
Author of VuhDo CursorCastBar OptiTaunt Poisoner RaidMobMarker
Report comment to moderator  
Reply With Quote
Unread 03-12-19, 03:06 PM  
Xionyus
A Deviate Faerie Dragon

Forum posts: 13
File comments: 29
Uploads: 0
As of 8.1.5, the addon is not working at all for me.
Report comment to moderator  
Reply With Quote
Unread 09-25-18, 05:19 AM  
Quokka
A Chromatic Dragonspawn
 
Quokka's Avatar
AddOn Author - Click to view AddOns

Forum posts: 196
File comments: 239
Uploads: 15
Pawn

Hey there,

I have some minor problems, for some reason the update arrow from pawn isn't shown.

Does anyone know where to "fix" this?

Cheers,
Quokka
__________________
Report comment to moderator  
Reply With Quote
Unread 09-08-18, 09:26 AM  
Ripture
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Feature request/rework?

One thing I'm really missing from other bag mods is the ability to do tooltip searching. Seems like right now, the search function only looks in the item name, which is largely unhelpful unless I know exactly the name of what I'm looking for. However, I can't seem to, for example, find all chest pieces or trinkets easily like with other addons.

This is one of my last few gripes about this addon. I otherwise prefer it over all of the rest.
Report comment to moderator  
Reply With Quote
Unread 09-06-18, 04:33 AM  
Vindica
A Kobold Labourer
 
Vindica's Avatar

Forum posts: 0
File comments: 10
Uploads: 0
Originally Posted by devilArt
item level problem
I got these items before 110 level, their item level are wrong

I've been having this issue too, with pretty much every bag addon I've tried. I wish I knew what caused it, but alas I am an addon noobie..
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: