Thread Tools Display Modes
09-12-13, 06:55 PM   #1
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 758
Please help fix DerpyStuffing!

Stuffing is a wonderfull One Bag addon created by Hungtar.
DerpyStuffing is an excellent edit of that old addon by AlleyKat but it hase not been updaed since Cata.

Now that Blizz added that new blue textures to all Bagslots I finaly can't use it any more.
There are also some other small bugs.

I'm not much into lua. If you think you can help me fix the addon (copy past code for me) or if you want me to add you to the project please contact me here or via privat massage. Thank you very much!

I uploaed the version of DerpyStuffing I extraced from DerpyUI so that everyone can easy download it and look at the code. Also I listed all known bugs at the Addon page.


__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________

Last edited by Tonyleila : 09-12-13 at 07:11 PM.
  Reply With Quote
09-24-13, 12:11 PM   #2
Sl1ce
A Kobold Labourer
AddOn Compiler - Click to view compilations
Join Date: Jul 2012
Posts: 1
Nice Addon!
I found a bug, every time the ui loads the items makt as a new one.

sry for my bad english
  Reply With Quote
09-24-13, 12:45 PM   #3
humfras
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Oct 2009
Posts: 131
Regarding the blue border texture:

In stuff.lua below line 323 to 325
Lua Code:
  1. if not ret.frame then
  2.     ret.frame = CreateFrame("Button", "StuffingBag" .. bag .. "_" .. slot, self.bags[bag], tpl)
  3. end

insert this:
Lua Code:
  1. --Fix 5.4 NewItemTexture
  2. local ni = _G["StuffingBag" .. bag .. "_" .. slot.."NewItemTexture"]
  3. if ni then
  4.     ni:SetAlpha(0)
  5.     ni:Hide()
  6. end

.
Regarding the "blocked" bug when items are not usable:
If you create a ContainerItemButton out of combat, you can do with it what ever you want.
BUT if you create a new button via CreateFrame dureing combat, it will taint and become non-clickable.
__________________
Author of VuhDo CursorCastBar OptiTaunt Poisoner RaidMobMarker

Last edited by humfras : 09-24-13 at 12:53 PM.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Please help fix DerpyStuffing!


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off