Download
(60Kb)
Download
Updated: 06-08-08 07:12 AM
Addon for:
ItemRack.
Pictures
File Info
Updated:06-08-08 07:12 AM
Created:unknown
Downloads:199,380
Favorites:315
MD5:

ItemRack 2.16 (Old version don't download)  Popular! (More than 5000 hits)

Version: 2.16
by: Gello [More]

ItemRack 2 is out of beta! Thanks to everyone for using this, helping to make it better and most of all your patience.

This "Plugin-Ins & Patches" version of the mod is being depreciated as 2.x becomes the primary version of the mod. The official version of ItemRack is at:

http://www.wowinterface.com/downloads/info4148.html

2.2 and future versions will be posted there.

This 2.16 version will remain for some time mostly to keep comments, but please post new comments on the primary link above.

Thanks!

Post A Reply Comment Options
Unread 11-28-07, 06:51 PM  
freche
A Kobold Labourer

Forum posts: 1
File comments: 7
Uploads: 0
would it be possible to add show/hide helm and cloak options for each sets just like the old ItemRack had ?
Report comment to moderator  
Reply With Quote
Unread 11-30-07, 10:01 PM  
danneracci
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 1
Is it possible to rotate the buttons, rather than just the pop out menu? I've tried every combination of modifiers and clicks but I can only get the menu to rotate. And I can't find an option to allow a vertical 'trinket menu'.
Report comment to moderator  
Reply With Quote
Unread 12-04-07, 02:35 PM  
galvin
A Frostmaul Preserver
AddOn Author - Click to view AddOns

Forum posts: 265
File comments: 166
Uploads: 1
When will events get added. Last release was july 5 months ago. Or is support totally done only updates I been seeing are from other people and not from the author.

Thanks.
Report comment to moderator  
Reply With Quote
Unread 12-09-07, 02:56 AM  
Oddible
A Murloc Raider

Forum posts: 6
File comments: 27
Uploads: 0
Looking for a way to mod the script for Mount to not work when I'm in a BG. Is this possible? Is there any way to test for whether I'm in a BG or not? Like the EPL event I guess.
Report comment to moderator  
Reply With Quote
Unread 12-14-07, 05:50 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
On the off chance Gello reads these comments and resumes development of ItemRack, I'd like to request that the addon not interfere with normal shift-clicking of slots on the character sheet to link the equipped item.
Report comment to moderator  
Reply With Quote
Unread 12-15-07, 10:06 PM  
rza
A Defias Bandit

Forum posts: 3
File comments: 55
Uploads: 0
Link?

Download at: http://athanyel.net/wow/mods/ItemRack_2_1d.zip doesn´t work anymore for me
Report comment to moderator  
Reply With Quote
Unread 12-18-07, 03:17 PM  
Athanyel
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
Re: Link?

Originally posted by rza
Download at: http://athanyel.net/wow/mods/ItemRack_2_1d.zip doesn´t work anymore for me
Should be fixed now. Had to restore my server from a backup that was prior to the 2.1d update.
Report comment to moderator  
Reply With Quote
Unread 12-22-07, 08:16 PM  
Toran
A Nerdscale Dorkin
 
Toran's Avatar
Premium Member

Forum posts: 143
File comments: 433
Uploads: 0
This is one of those addons where if it dies, my WoW experience lessens. I'm still using the old version for events, which seem to not always work (ex - mount/dismount and switching gear). When will we see events? Anyone know of another addon that is as effective as this one?
Report comment to moderator  
Reply With Quote
Unread 12-29-07, 12:45 AM  
Buio
A Kobold Labourer

Forum posts: 0
File comments: 150
Uploads: 0
Long time since Gello was active but that was the case when 2.0 was beta too, so I dunno maybe he'll pop up again and update it but it seems more unlikely now. I agree that this is the finest gear management addon, and I couldn't imagine being without it.

And maybe said it before, but anyway; Thanks to Athanyel for hosting an fixed version mostly updated by Romracer.

Edited cudos a bit, should have checked thread further back.
Last edited by Buio : 01-11-08 at 06:11 PM.
Report comment to moderator  
Reply With Quote
Unread 01-04-08, 12:50 AM  
Athanyel
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
While I appreciate the kudos, the majority of the recent fixes have been done by Romracer. I'm just hosting it and making the small changes (TOC, Idol support) that I know I can make without messing it up.

So, thanks to Romracer and all the people who've posted the small fixes as they come along.
Report comment to moderator  
Reply With Quote
Unread 02-09-08, 08:34 AM  
Denival
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
I've been having some problems with unique-equipped gems in itemrack sets. It comes down to the order in which the items are equipped. Itemrack seems to equip in order slots 0 through 19 which can cause a problem if an item that it is trying to equip in, say, slot three has an unique-equipped gem that you already have socketed in your current set in, say, slot 8.

I've written what I think is a work-round for this and I humbly submit it for review by the author/s of this mod to possibly incorporate in future releases.

In ItemRackEquip.lua, after line 116, add the following:

Code:
	-- Added code to change the swap order because of unique equipped gems
	local egid = {}
	local igid = {}
	local swapOrder = {}
	local reorder = false
	for i=0,19 do
		swapOrder[i] = i
	end
	for i=0,18 do
		if (swap[swapOrder[i]]) then
			itemID,_,igid[1],igid[2],igid[3],igid[4] = strsplit(":",swap[swapOrder[i]])
			itemName = ItemRack.GetInfoByID(itemID)
			reorder = false
			for j=i+1,19 do
				eqID = ItemRack.GetID(j)
				if (eqID ~= 0) then
					eqItemName = ItemRack.GetInfoByID(eqID)
					_,_,egid[1],egid[2],egid[3],egid[4] = strsplit(":",eqID)
					for ti=1,4 do
						for tj=1,4 do
							if (igid[ti]~="0" and igid[ti] == egid[tj]) then
								eqSlot = swapOrder[j]
								swapOrder[j] = swapOrder[i]
								swapOrder[i] = eqSlot
								reorder = true
								break
							end
						end
						if (reorder) then
							break
						end
					end
					if (reorder) then
						break
					end
				end
				if (reorder) then
					break
				end
			end
		end
	end
	-- End of added code
Then, change the for loop from:

Code:
	for i=0,19 do -- go in order to handle skips correctly
to

Code:
	for si=0,19 do -- go in order to handle skips correctly
		i = swapOrder[si]
Last edited by Denival : 02-10-08 at 06:26 AM.
Report comment to moderator  
Reply With Quote
Unread 02-12-08, 02:11 AM  
Burnum
A Defias Bandit
 
Burnum's Avatar

Forum posts: 2
File comments: 81
Uploads: 0
I sure hope this doesn't die out.

You know it would be great if the item Queues could be linked to a set. so for example, my PvP set could Queue these trinkets, and my main PvE set could do those, etc...
Report comment to moderator  
Reply With Quote
Unread 02-14-08, 11:08 AM  
Athanyel
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
Denival,

Are your line numbers based upon ItemRack 2.1 as published by Gello or ItemRack 2.1d as has been "fan-updated" by others here on the boards?

I'd happily integrate your changes into ItemRack 2.1d and post 2.1e after I run around and test it.
Report comment to moderator  
Reply With Quote
Unread 02-15-08, 05:16 PM  
Denival
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Originally posted by Athanyel
Denival,

Are your line numbers based upon ItemRack 2.1 as published by Gello or ItemRack 2.1d as has been "fan-updated" by others here on the boards?

I'd happily integrate your changes into ItemRack 2.1d and post 2.1e after I run around and test it.
They're based on 2.1d

I should point out that I am aware that this code is not a foolproof way to avoid the problem with unique-equipped gems. All it does is look through your "set to equip" items in order and check if there are any of the same socketed gems later on in the slot order in your "already equipped set" and then swap the order.

For example, if it finds a the same gem in slot 8 that you already have in slot 3, it will swap out slot 8 before slot 3. It runs through your "set to equip" once performing this check. This is definitely not a complete fix, but it does work as long as your sets aren't full of unique-equipped gems.

To be honest, I couldn't get my head around working out a bulletproof solution, so I just came up with a rough and ready one.
Last edited by Denival : 02-15-08 at 05:24 PM.
Report comment to moderator  
Reply With Quote
Unread 02-19-08, 07:28 AM  
Denival
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
The more I think about this, the more I'm convinced that there is no bulletproof solution to this problem that doesn't involve swapping items out to bags before equipping items from the new set. It's possible (although unlikely) that you have unique-equipped gems in your sets such that no swap order will be guaranteed to work. In such a case, you would have to have space in your bags to perform the set swap.

I don't feel confident enough hacking ItemRack code to try to make such a significant change for such a relatively small problem. Also, I've heard a rumour that Blizzard may be making some of the crafted gems that fall into this category non-unique-equipped come the next patch (or maybe come WotLK). Of course, they also say they will be including their own ItemRack function in WotLK, so all bets may be off.

Bearing this in mind, you may want to consider whether you want to include my hack. It's up to you.
Last edited by Denival : 02-19-08 at 07:29 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: