1. #1

    Any inventory addons that seperates gear by slot?

    I have arkinventory, which I like very much but it won't let me make groups of each gear slot. For example, I wanted a box just for hands, one for legs, other for weapons/shields, etc. I think it's doable with arkinventory but I need to know how to play with scripts.

    (Avatar was too big, sorry!)

  2. #2

    Re: Any inventory addons that seperates gear by slot?

    You can sort by slot, go into the sorting options and check the custom box, and move Item Equip Location to the top.

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  3. #3

    Re: Any inventory addons that seperates gear by slot?

    Ok the sorting is nice, but I wanted separate boxes for each slot category.
    (Avatar was too big, sorry!)

  4. #4

    Re: Any inventory addons that seperates gear by slot?

    Another mod is bankstak. I use this with combuctor.
    /sort will sort your inventory by slot and the rest of the items.
    http://www.wowinterface.com/download...BankStack.html

  5. #5
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040

    Re: Any inventory addons that seperates gear by slot?

    You don't need to know how to "play with scripts". Just go in and use the rules system.

    Code:
    tooltip( hands )
    Should make a rule that matches all "hands" slot items (gauntlets/gloves/etc). You can then assign this "rule" to one of AI's virtual bars.

  6. #6

    Re: Any inventory addons that seperates gear by slot?

    Quote Originally Posted by Taryble
    You don't need to know how to "play with scripts". Just go in and use the rules system.

    Code:
    tooltip( hands )
    Should make a rule that matches all "hands" slot items (gauntlets/gloves/etc). You can then assign this "rule" to one of AI's virtual bars.

    Yes it worked! Thank you!
    (Avatar was too big, sorry!)

  7. #7
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040

    Re: Any inventory addons that seperates gear by slot?

    You're welcome. And of course, to do other slots, just make new rules with things like "tooltip( waist )" or "tooltip( back )", whatever the "slot name" is.

  8. #8

    Re: Any inventory addons that seperates gear by slot?

    I also use similar rule to organize my gear in ark inventory. Is there a way to make the rules more complex though, so as to have all epic quality boots in one bar, while the green and blue boots are kept in a different bar?

  9. #9
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040

    Re: Any inventory addons that seperates gear by slot?

    glox18, you sure can.

    Put all the epic and legendary boots in one rule:
    Code:
    equip( feet ) and itemquality( epic, legendary )
    Put all other boots in another rule
    Code:
    equip( feet ) and itemquality( common, uncommon, rare, heirloom )
    And yes, I did change from using "tooltip" to "equip" - it should speed the rule up (use less CPU than tooltip scanning does). Not that any of us have the ability to notice that slight a hitch.

  10. #10
    Quote Originally Posted by Taryble View Post
    glox18, you sure can.

    Put all the epic and legendary boots in one rule:
    Code:
    equip( feet ) and itemquality( epic, legendary )
    Put all other boots in another rule
    Code:
    equip( feet ) and itemquality( common, uncommon, rare, heirloom )
    And yes, I did change from using "tooltip" to "equip" - it should speed the rule up (use less CPU than tooltip scanning does). Not that any of us have the ability to notice that slight a hitch.

    This does not seem to be working anymore.

    - - - Updated - - -

  11. #11
    Hi! @rubmuh
    This thread is almost 9 years old and are pretty much deprecated.
    Be free to open a new one asking for the desired addon

    [Moderator Note: Thread Closed]
    Reason: Age.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •