Download
(147Kb)
Download
Updated: 12-11-06 03:59 AM
Pictures
File Info
Updated:12-11-06 03:59 AM
Created:unknown
Downloads:18,448
Favorites:92
MD5:

Wardrobe2  Popular! (More than 5000 hits)

Version: Revision 19353
by: Kazun of Warsong [More]

Wardrobe2 allows you to define unlimited equipment sets known as 'Outfits'. It then lets you switch between these outfits manually or when you mount or change forms/stances. This makes it easy to manage gear sets when in different forms for druids and shaman. It also allows you the ability to switch equipment when in specific stances for tanking or DPS. You can also swap equipment when switching to stealth mode.

Commands: (/wd, /wardrobe)

----------
Revision 19353
o Fixed some 'nil' errors that happen when there are no outfits
o Fixed a change in the way wow returns buffs which prevented the mod from detecting your mounted status

Revision 19170
o WoW 2.0 Ready
o Ace2 Ready
o Built-in FuBar Plugin
o Complete Rewrite of the original

Version 3.2.0
o Added Simplified Chinese locals
o Added a new option to not set a default outfit when saving
o Minor client mod bug fixes

Version 3.1.1
o Minor bug fix related to the dewdrop lib and the refresh function

Version 3.1.0
o Fixed a bug with the database updater
o Added an unmount option to switch to your last outfit
o Added the ability to ignore slots in outfits
o Updated the xml file for the 1.10 tooltip bug

Version 3.0.0
o Minimap icon moved into its own mod
o Fixed ammo slot switching
o Fixed some bugs with weapon switching
o Mod will now reload your ui when it is started for the first time
o Most recent timex included in the package
o Updated toc files

Version 2.2.0
o Database update to support items of the same name but with different enchants
o Fixed a bug when zoning while in combat
o Added better mount support
o Fixed a nil error with the database checker

Version 2.1.5b
o Fix for issues with the 1.10 patch

Version 2.1.4
o Minor update to fix tooltip issues with patch 1.10
o Other misc bug fixes

Version 2.1.3
o Equipment swaps should attempt to take place even when in combat for druids
o Weapons will swap even if you are in combat
o New ability to update outfits
o When unmounting you will change to the last worn outfit instead of the default
o Fixed a bug with weapon swapping when changing from a 2h weapon to a 1h with shield
o Hunters should be able to swap gear after they feign death
o Druids now have a "Normal Form" when they are not in any special forms
o Fixed a bug where rogues couldn't set their stealthed form outfit
o Fixed a rare bug that was causing shields to become stuck in your inventory when changing outfits quickly
o Cloak and Helm visability settings are now saved in each outfit

Version 2.1.2
o Fixed a bug where unstealthing and dismounting was putting your default outfit in queue
o Corrected a UI error causing the menu to resize incorrectly

Version 2.1.1
o Fixed a bug when mousing over the mini-map icon when the titan panel plugin wasn't installed
o Fixed a database version update error that was causing new defaults to be reset each UI reload
o The mini-map icon should lock correctly and remember its position
o "No default outfit" messages should not display when in silent mode
o Druids should swap to their default outfit (if set) when changing back to their normal form

Version 2.1.0
o Mini-Map button added that will allow the switching of outfits via a gui
o Titan Panel Plugin introduced
o Added options to lock/hide the mini-map button
o Outfits should swap when a druid changes form even if they are in combat
o Fixed a bug where swapping outfits by name didn't always work

Version 2.0.2
o Unstealthing should no longer change your outfit to the default
o Ability to set an unstealthed outfit added
o Item slots that are not used in outfits will be correctly cleared
o Added a check to make sure you are not dead or a ghost
o Added a message for when you try to delete an unknown outfit
o Updated toc for the new patch

Version 2.0.1
o Corrected a bug that was causing items to end up on the cursor after an equipment swap
o Form changing should no longer be ignored in rare cases
o Changing outfits should be quicker and cause less of a lag spike

Version 2.0.0
o Complete code rewrite to make the mod smaller and faster
o Removed the UI with plans to develop an optional one
o Added the ability to define outfits for specific forms/stances

Post A Reply Comment Options
Unread 01-13-06, 03:03 AM  
Sargeant
A Murloc Raider
 
Sargeant's Avatar
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 23
Uploads: 5
Using the newest version (2.1.0)

My form sets do not attempt to switch while in combat (I play a druid)
I never switch back to my 'default' set after shifting out of a shapeshift.
Report comment to moderator  
Reply With Quote
Unread 01-13-06, 03:51 AM  
Sargeant
A Murloc Raider
 
Sargeant's Avatar
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 23
Uploads: 5
Edit: Found a new bug -- "locked" status of the minimap button is not saved over sessions
I also continually get the "Database info format was outdated and was updated" error on load

Edit2: Realized that the reason for the above bugs was that the SavedVariables file was not getting the correct version number saved to it. (I've manually edited my file to fix it)

Originally posted by Sargeant
Using the newest version (2.1.0)

My form sets do not attempt to switch while in combat (I play a druid)
I never switch back to my 'default' set after shifting out of a shapeshift.
I managed to resolve the issue I had with not changing back to my default outift after shifting back to caster form on my own, by editing your code. Here is the new function I edited:

function AceWardrobe:PlayerAurasChanged()
local tmpForm = self:GetForm()
local _, englishClass = UnitClass("player")
-----------------------------------------------------------------------
-- Stance/Form Stuff here
-----------------------------------------------------------------------
if (tmpForm == nil) then tmpForm = "" end
if (WARDROBE.CurrentForm ~= tmpForm) then
if (englishClass == "ROGUE" and tmpForm == "") then
WARDROBE.CurrentForm = "No Stealth"
else
WARDROBE.CurrentForm = tmpForm
end

selfebugPrint("Current Form: ["..WARDROBE.CurrentForm.."]")

-- lets look for the outfit number for this stance
local tmpOutfitNum = self.GetOpt({"Forms"}, WARDROBE.CurrentForm)
if (tmpOutfitNum ~= nil and tmpOutfitNum ~= "") then
if (WARDROBE.InCombat == FALSE or englishClass == "DRUID") then
self:WearOutfit(tmpOutfitNum)
else
-- queue us up to do this when combat breaks
WARDROBE.WearQueue = tmpOutfitNum
self:Print(string.format(WARDROBE.ERROR_INCOMBAT, WARDROBE.WearQueue))
end
end
if (tmpForm == "" and not self:IsPlayerMounted()) then
if (WARDROBE.InCombat == FALSE and englishClass == "DRUID") then
self:WearOutfit(self.GetOpt({ }, "Default"))
else


-- queue us up to do this when combat breaks
WARDROBE.WearQueue = self.GetOpt({ }, "Default")
self:Print(string.format(WARDROBE.ERROR_INCOMBAT, WARDROBE.WearQueue))
end
end

end
Last edited by Sargeant : 01-13-06 at 04:19 AM.
Report comment to moderator  
Reply With Quote
Unread 01-13-06, 07:39 AM  
Kazun of Warsong
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 8
Uploads: 1
I will fix the database repair issues in the next version. I forgot to update the variable in the update routine. I will also add in the switch to default set when not in any form like you added. Thanks for the code update.

Do you get any message when changing forms while in combat? Does it say it will queue the outfit or does it try to equip the stuff but fail?
Last edited by Kazun of Warsong : 01-13-06 at 08:06 AM.
Report comment to moderator  
Reply With Quote
Unread 01-13-06, 10:55 AM  
Sargeant
A Murloc Raider
 
Sargeant's Avatar
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 23
Uploads: 5
Originally posted by Kazun of Warsong
I will fix the database repair issues in the next version. I forgot to update the variable in the update routine. I will also add in the switch to default set when not in any form like you added. Thanks for the code update.

Do you get any message when changing forms while in combat? Does it say it will queue the outfit or does it try to equip the stuff but fail?
Nifty! Just dled the new version.

When I shift, it queues up the set. It never tries to equip in combat.
Kinda odd, considering I just looked at the code...

-- lets look for the outfit number for this stance
local tmpOutfitNum = self.GetOpt({"Forms"}, WARDROBE.CurrentForm)
if (tmpOutfitNum ~= nil and tmpOutfitNum ~= "") then
if (WARDROBE.InCombat == FALSE or englishClass == "DRUID") then
self:WearOutfit(tmpOutfitNum)
else
-- queue us up to do this when combat breaks
WARDROBE.WearQueue = tmpOutfitNum
self:Print(string.format(WARDROBE.ERROR_INCOMBAT, WARDROBE.WearQueue))
end
end

it looked like it should work, but it doesnt. **Shrug** Maybe englishClass isn't getting set properly?
Report comment to moderator  
Reply With Quote
Unread 01-13-06, 11:35 AM  
Kazun of Warsong
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 8
Uploads: 1
I posted 2.1.2 on curse that has a slight fix for it. I'm holding it off here though as I have a few more changes for 2.1.3 before I release it tonight.

I believe I finally squashed this bug in 2.1.3. I will post it before I head out to hang with the guys tonght. The issues was basically I check for combat in multiple functions. It was sending the wear command but I queue it if it gets there too.
Last edited by Kazun of Warsong : 01-13-06 at 12:56 PM.
Report comment to moderator  
Reply With Quote
Unread 01-31-06, 09:37 AM  
ghedrain
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
This addon is driving me crazy. I use ace and so i chose to use this as an outfit picker. I can't stand how it autochanges outfits for me. I keep clearing it but everytime I dismount it keeps putting me into a different outfit. I only want to change outfits manually.
Report comment to moderator  
Reply With Quote
Unread 02-28-06, 02:54 PM  
kaelthas
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Does not remove weapons

I am having 2 issues, the first, it does not seem to plug-in to the titan bar. It's in the directory, and activated, however nothing shows up on the titan bar or the titan bar menus.

Second, I was using Wardrobe-AL prior to Ace, until i ran into bugs with the latest version. I had an outfit on there which removes everything but my bow, ammo, rings, and necklace (used for situations with a lot of dieing, to save on repair bills). Ace Wardrobe does not remove the primary or secondary weapon, instead it gives me an error that "[] is not found in inventory"
Report comment to moderator  
Reply With Quote
Unread 04-03-06, 09:22 AM  
Kazun of Warsong
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 8
Uploads: 1
@ghedrain
/wd standby

@kaelthas
The plugin works fine for me. Make sure you are loading outdated addons since I forgot to update the toc files. I am currently working on a bug fix for the ditch primary + secondary slots.
Report comment to moderator  
Reply With Quote
Unread 04-08-06, 03:04 PM  
laerbeejo
The MMOiest Chick of All
 
laerbeejo's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 16
Uploads: 2
Profiles?

For some reason, though I have gone through on each of my nine characters and enabled per-char profiles, it always seems to be using the previous character's profile. Is anyone else noticing this?
Report comment to moderator  
Reply With Quote
Unread 04-13-06, 10:25 AM  
iwod
A Kobold Labourer

Forum posts: 1
File comments: 15
Uploads: 0
Would you consider adding a ui like Outfitter?

http://ui.worldofwar.net/ui.php?id=2051?
Report comment to moderator  
Reply With Quote
Unread 04-28-06, 04:02 PM  
SofaKing
A Kobold Labourer
 
SofaKing's Avatar

Forum posts: 1
File comments: 38
Uploads: 0
Mounting and DisMounting

Is there anyway to only equip the riding speed enhancement items (gloves, boots, carrot) when mounting and switch them back with the items I had on prior to mounting when dismounting?

Right now it appears to work as follows:
DPS gear on.
Mount -> Mounted Gear
Dismount -> Default Gear
Then I have to manually put it back to my DPS gear.

Please, let me know what I can do to only equip the 3 mount speed items and put back on whatever I was wearing before mounting. It's very very annoying to always have my Default gear put on when I dismount. I was using Outfitter and loved how it handled situational gear. Riding, mining, skinning, etc... Only changing the gear I need for that situation and switching it back out when I was done.

Edit: I see in the patch notes that it is suppose to switch back to the set you were wearing before mounting (ver2.1.3) Is there anyway to designate just the items to change instead of an entire outfit though? Ver. 2.2.0 says it added "better mount support", how so?
Last edited by SofaKing : 04-28-06 at 04:06 PM.
Report comment to moderator  
Reply With Quote
Unread 04-28-06, 07:28 PM  
Nuada Storm
A Murloc Raider

Forum posts: 7
File comments: 2
Uploads: 0
Originally posted by iwod
Would you consider adding a ui like Outfitter?

http://ui.worldofwar.net/ui.php?id=2051?
Please do... 20 minutes trying to figure out how to even create an outfit. More time trying to get them to save and still more time to get them even working. Over an hour trying to set this up for my druid and it still says "# of outfits: None" though a /wd save Default tells me it is saving.

Going back to Outfitter for now. At least it is easy to use.
Report comment to moderator  
Reply With Quote
Unread 05-02-06, 05:54 PM  
fred
A Cobalt Mageweaver

Forum posts: 208
File comments: 354
Uploads: 0
I'm gonna drop this mod, I failed to fugure it out. It does nothing, I even have the FuBar version also.....I think I'll stay with ItemRack
Report comment to moderator  
Reply With Quote
Unread 05-21-06, 08:17 AM  
Delodic
A Defias Bandit

Forum posts: 3
File comments: 1
Uploads: 0
I'm currently using itemrack, and the most important feature of it is that I can switch gear bashing a keybinding, or change gear when a certain event happens (for example I automaticcaly equip my spirit staff if I get innervate)

Does this mod also has these functions? (especially the keybinding stuff)
Report comment to moderator  
Reply With Quote
Unread 05-23-06, 07:40 AM  
Nickenyfiken
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 32
Uploads: 2
Someone who knows how this works should write a guide or something. I have tried every single command and nothing works. It refuse to save anything for me. When i made a new AceWardrobe profile with ace it also screwed up my FuBar settings.

I really think this mod has potential and can work very well but honestly i think its not very userfriendly.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: