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,368
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 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 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 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 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-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-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-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-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-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 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 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-23-07, 08:26 AM  
Buio
A Kobold Labourer

Forum posts: 0
File comments: 150
Uploads: 0
Works fine, have had no problems with the fixed version.

For you Fubar fans, there is a fixed version of Fubar_ItemrackFu here:
http://www.wowace.com/forums/index.php?topic=5357.0
Report comment to moderator  
Reply With Quote
Unread 11-14-07, 06:01 PM  
Athanyel
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
...and now there's 2.1d!

Changes:
Updated the TOC files to 20300 (2.3) to avoid being marked "Out of date" in the AddOn List.
Updated the ItemRackOptions.xml file to show the build number while in-game.

Download at: http://athanyel.net/wow/mods/ItemRack_2_1d.zip
Report comment to moderator  
Reply With Quote
Unread 11-11-07, 12:41 PM  
Buio
A Kobold Labourer

Forum posts: 0
File comments: 150
Uploads: 0
Re: Re: Re: ItemRackFu

Originally posted by forty2j
Because this version was already prepared for the 2.2 patch, sans the toc file. The other needed some methods changed.
Maybe prepped but not bugfixed, as 2.1a-c are fan fixes for several bugs afaik.
Report comment to moderator  
Reply With Quote
Unread 11-10-07, 08:51 PM  
Dae
A Kobold Labourer

Forum posts: 1
File comments: 1
Uploads: 0
Re: Noted bug

I've noticed that my extra idols do not list in the drop-down for each set. Only the currently equipped idol is listed, and if it's already selected, I have nothing but an empty slot indicator as my choice. This is also true of the seperated item slot menus achieved by alt-clicking the idol slot.

Edit: Auto-queue doesn't detect them either.
Last edited by Dae : 11-10-07 at 09:00 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: