I'm getting wierd errors with ClosetGnome_banker lately. Whenever I attempt to use the flush or flush&get functions, I get the following error.
[2007/08/06 10:58:07-65-x3]: ClosetGnome_Banker\Banker.lua:286: bad argument #1 to 'pairs' (table expected, got nil)
ClosetGnome_Banker\Banker.lua:286: in function `func'
Dewdrop-2.0-44792 (DewdropLib):710: in function <...erface\AddOns\DewdropLib\Dewdrop-2.0\Dewdrop-2.0.lua:649>
I think I have ClosetGnome_Mount working with druid flight form. The problem was that SpecialEvents_Mounted does not fire for flight form, so I had to use SpecialEvents_PlayerBuffGained and SpecialEvents_PlayerBuffLost to test for being in flight form. This is probably not the most elegant solution, but it seems to work. (Well enough for me anyway.) I have attached my modified ClosetGnome_Mount.lua to this post.
Can you upload that lua. somewhere else or reattach it pls? When I try to download it i get a 404 - Not Found error :(
Another thing, hope it wasn't answered before: I got me a Carrot on a Stick - my first item that increases mount speed. I made a set called "Riding" that only has a single trinket slot and put the carrot there. It works. The carrot gets equipped when I mount up, and switched back to the old set when I dismount. But: Unlike all other items, the carrot's set doesn't show in the tooltip, and promptly, the carraot isn't put into the correct bag by baggins. This is related, since baggins seems to rely on the tooltips to see if an item belongs to a set.
If anyone wants to check out a branch copy of ClosetGnome, please PM me with your feedback. New features are as follows.
- If you equip a set with the bank window open, ClosetGnome can get the items out of the bank
- If you update a set that has items missing, it will not overwrite those items/slots unless you tell it to. Missing items are denoted with a yellow highlight.
When i switch to my PVP Equip he get Probs to switch Cloak of the inciter with the PVP Cloak... and trinket same problem when the addon shoul switch 2 trinkets.
What to do?
Another thing, hope it wasn't answered before: I got me a Carrot on a Stick - my first item that increases mount speed. I made a set called "Riding" that only has a single trinket slot and put the carrot there. It works. The carrot gets equipped when I mount up, and switched back to the old set when I dismount. But: Unlike all other items, the carrot's set doesn't show in the tooltip, and promptly, the carraot isn't put into the correct bag by baggins. This is related, since baggins seems to rely on the tooltips to see if an item belongs to a set.
Baggins_ClosetGnome doesn't use the tooltip to determine if an item belongs to a set, but instead uses ClosetGnome's database. I might need to add item fuzzing similar to what was done for Baggins_ItemRack if it's related to the uniqId part of the item string.
Whenever i try to select a SLOT to be active/inactive for a Set. I can only take the item.
I know its maybe another addon, but cant that be changed ? i tried to edit the LUA (simply changed the sice of the hidden button), but this only worked for weapons and leg/feet/ ...
My flight forms show in ClosetGome_Switcher. Set up my Trinket in a set called 'FlightSuit' and set it to wear.
Works fabu!
This is not really the same as the mount set since when you reswitch back to druid form you keep the flight set equiped, it should revert back to your old set...
I am currently using ClosetGnome_Switcher but I ended up yesterday tanking in mechanar with my flight trinket equiped xD
problem with default sets and druids is that well...we don't really have default sets (or at least I, and many druids I know). I have quite a few sets I wear all the time...I mean it, there isn't one set that I really wear a lot more than the others. Flightforming in cat gear and then landing and having all of my gear default to beargear or a healsuit or whatever when I land is just no good.
I guess I could set a default trinket and not have an entire suit be 'default', but its still irksome (my trinkets change a lot depending on what I'm doing too)
local txt, speed = gratuity:GetLine(2)
if txt then _, _, speed = string.find(txt, mountSpeed) end
replace with:
local txt, speed = gratuity:GetLine(2)
if not txt:find(mountSpeed) and not txt:find(flightSpeed) then
txt, speed = gratuity:GetLine(3)
end
if txt then _, _, speed = string.find(txt, mountSpeed) end
I think that should make the lib recognize it as a mount, of course the it's really a shapeshift, I'll try to talk to the community before I officially commit it, if it works.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Can you upload that lua. somewhere else or reattach it pls? When I try to download it i get a 404 - Not Found error :(
Cheers Arso
Happens when you shift-click on a name in the list of sets twice - when you try to edit one and the same set more than once.
Hopefully, this works: http://docs.google.com/Doc?id=dhsffj7v_0hc7mx3
- If you equip a set with the bank window open, ClosetGnome can get the items out of the bank
- If you update a set that has items missing, it will not overwrite those items/slots unless you tell it to. Missing items are denoted with a yellow highlight.
svn @ http://svn.wowace.com/wowace/branches/ClosetGnome/ulic/ClosetGnome/
P.S. You too Rabbit, I'd love to know your thoughts.
When i switch to my PVP Equip he get Probs to switch Cloak of the inciter with the PVP Cloak... and trinket same problem when the addon shoul switch 2 trinkets.
What to do?
Baggins_ClosetGnome doesn't use the tooltip to determine if an item belongs to a set, but instead uses ClosetGnome's database. I might need to add item fuzzing similar to what was done for Baggins_ItemRack if it's related to the uniqId part of the item string.
* Formal support for druid flight forms in ClosetGnome_Mount
Works fabu!
I know its maybe another addon, but cant that be changed ? i tried to edit the LUA (simply changed the sice of the hidden button), but this only worked for weapons and leg/feet/ ...
This is not really the same as the mount set since when you reswitch back to druid form you keep the flight set equiped, it should revert back to your old set...
I am currently using ClosetGnome_Switcher but I ended up yesterday tanking in mechanar with my flight trinket equiped xD
only if you have a caster set defined!
I go now!
I'm waiting for a guildie to make me a Stylin' Purple Hat - the perfect addition. Just 'cause were druids, don't mean we can't be fashionable!
In the SpecialEvents-Mount-2.0.lua file find:
replace with:
I think that should make the lib recognize it as a mount, of course the it's really a shapeshift, I'll try to talk to the community before I officially commit it, if it works.