Download
(154Kb)
Download
Updated: 10-30-20 05:15 AM
Compatibility:
Shadowlands patch (9.0.2)
Classic Patch (1.13.5)
Updated:10-30-20 05:15 AM
Created:12-24-09 10:10 AM
Downloads:12,909
Favorites:31
MD5:
Categories:Miscellaneous, Classic - General

zz MiscHelper  Popular! (More than 5000 hits)

Version: 90002.42
by: Rilgamon [More]

MiscHelper automaticly answers requesters.

Included modules:

- Autogreed (Greed or disenchant blue and green)
- Autoport (Accept ports)
- NoDuel (Rejects duels)
- Autogroup (Accepts groupinvites)
- BoPconfirm (Confirms BoP requesters)
- Lootconfirm (Confirms BoP requesters)
- Deconfirm (Confirms disenchant requesters)
- Sellgrey (Automaticly sells grey items)
- Autorepair (Automaticly repairs)
- PassDragon (Ignore Reins of the Bronze Drake)
- HideClock (Hides the minimap clock)

r42 | robin | Fri, 30 Oct 20 10:59:35 +0100
Changed paths:
M /trunk/zz_MiscHelper/core.lua

Fix childName/name mixup
------------------------------------------------------------------------
r41 | robin | Fri, 30 Oct 20 10:47:25 +0100
Changed paths:
M /trunk/zz_MiscHelper/core.lua

Make OnClick mandatory for zz
------------------------------------------------------------------------
r24 | robin | Fri, 30 Oct 20 10:46:21 +0100
Changed paths:
M /trunk/zzLibCommon/Common/ldb.lua

Make OnClick mandatory for zz, remove default click function
------------------------------------------------------------------------
r23 | robin | Thu, 15 Oct 20 00:38:45 +0200
Changed paths:
M /trunk/zzLibCommon/Common/ldb.lua

Adjust clickevent
------------------------------------------------------------------------
r22 | robin | Thu, 15 Oct 20 00:15:18 +0200
Changed paths:
M /trunk/zzLibCommon/Common/ldb.lua

Use self for OnClick
------------------------------------------------------------------------
r21 | robin | Wed, 14 Oct 20 23:47:56 +0200
Changed paths:
M /trunk/zzLibCommon/Common/ldb.lua

Add 'OnEnter', 'OnLeave'
------------------------------------------------------------------------
r20 | robin | Wed, 14 Oct 20 20:23:57 +0200
Changed paths:
M /trunk/zzLibCommon/Common/ldb.lua

Add 'iconCoords'
------------------------------------------------------------------------
r19 | robin | Wed, 14 Oct 20 16:43:14 +0200
Changed paths:
M /trunk/zzLibCommon/Common/ldb.lua

Add GetLDB
------------------------------------------------------------------------
r211 | nevcairiel | Tue, 13 Oct 20 12:33:04 +0200
Changed paths:
M /trunk/LibBabble-Inventory-3.0.toc

Update for WoW 9.0
------------------------------------------------------------------------
r40 | robin | Tue, 06 Oct 20 18:02:04 +0200
Changed paths:
M /trunk/zz_MiscHelper/core.lua

Disable autorepair by default
------------------------------------------------------------------------
r18 | robin | Sun, 04 Oct 20 22:38:24 +0200
Changed paths:
M /trunk/zzLibCommon/Common/ldb.lua

Allow parent addon to set 'modsDir' for embedded addons.
------------------------------------------------------------------------
r17 | robin | Sun, 04 Oct 20 22:37:12 +0200
Changed paths:
M /trunk/zzLibCommon/Common/common.lua

Expand HandleFuncList with arguments
------------------------------------------------------------------------
r39 | robin | Sun, 04 Oct 20 17:04:09 +0200
Changed paths:
M /trunk/zz_MiscHelper/Moduls/autogroup.lua
M /trunk/zz_MiscHelper/Moduls/autoport.lua

Fix for moved spells
------------------------------------------------------------------------
r16 | robin | Sat, 03 Oct 20 17:40:34 +0200
Changed paths:
M /trunk/zzLibCommon/Common/frames.lua

Create OnUpdate only once
------------------------------------------------------------------------
r15 | robin | Sat, 03 Oct 20 09:16:57 +0200
Changed paths:
M /trunk/zzLibCommon/Common/frames.lua

Fix visible dragbar after alt-tab to desktop
------------------------------------------------------------------------
r38 | robin | Mon, 28 Sep 20 16:49:41 +0200
Changed paths:
M /trunk/zz_MiscHelper/zz_MiscHelper.toc
------------------------------------------------------------------------
r37 | robin | Mon, 28 Sep 20 15:40:51 +0200
Changed paths:
M /trunk/zz_MiscHelper/zz_MiscHelper.toc

Update Toc 90001
------------------------------------------------------------------------
r14 | robin | Sun, 27 Sep 20 21:34:13 +0200
Changed paths:
M /trunk/zzLibCommon/Common/common.lua

Remove preloads, inits after startup
------------------------------------------------------------------------
r1239 | nevcairiel | Sun, 20 Sep 20 12:22:02 +0200
Changed paths:
M /trunk/AceGUI-3.0/widgets/AceGUIWidget-DropDown.lua

AceGUI-3.0: DropDown: Anchor all items to the dropdown frame instead of chaining anchors, fixes anchoring on WoW 9.0 with many items
------------------------------------------------------------------------
r13 | robin | Mon, 07 Sep 20 18:22:05 +0200
Changed paths:
M /trunk/zzLibCommon/Common/config.lua

Add inline
Optional Files (0)


Post A Reply Comment Options
Unread 12-11-11, 09:41 PM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Looks good, I found a bug in my initcode that I want to fix before I push a new release so it will take a little before you'll see this included.
Additionally I'd like to add an itemlevel trashhold to disenchant eg za/zg epics even if you can use them.
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 12-10-11, 11:40 AM  
Justacase
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
The auto greed/disenchant wasn't working 100% for me (and didn't handle epics from new 5 mans) so i modified the code to only popup a need/greed/disenchant window when i could need on the item or it was a BoE blue or purple. Here is the changes to autogreed.lua:

Code:
local function START_LOOT_ROLL(event,id,...)
	if (not id) then return	end
	local _, _, _, quality, bop, canNeed, _, canDE = GetLootRollItemInfo(id)
	if(quality == 2 and not bop) then
		RollOnLoot(id, canDE and 3 or 2)
	elseif(quality == 3 and bop and not canNeed) then
		RollOnLoot(id, canDE and 3 or 2)
	elseif(quality == 3 and not bop and not canNeed) then
		RollOnLoot(id, 2)
	elseif(quality == 4 and bop and not canNeed) then
		RollOnLoot(id, canDE and 3 or 2)
	elseif(quality == 4 and not bop and not canNeed) then
		RollOnLoot(id, 2)
	end
end
I hope it is useful.
Last edited by Justacase : 12-10-11 at 11:41 AM.
Report comment to moderator  
Reply With Quote
Unread 07-01-11, 07:15 PM  
tsalem1
A Defias Bandit
 
tsalem1's Avatar

Forum posts: 3
File comments: 8
Uploads: 0
dude your mischelper broker had me dyin'!!! reading through what it does makes me think you were some dude who got hella peaved at little things in the game that you decided to make a mod that fixes them.... ALL AT ONCE!! lolz, no but i do use your repair broker, Thanks!!
__________________
M▲†▲

ϙUiΣ†Uϟ
Report comment to moderator  
Reply With Quote
Unread 05-29-11, 09:37 PM  
WDSpider
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Originally posted by Rilgamon
I've not yet added a pref for it. But its already in.
Open Moduls/autorepair.lua in a texteditor and in line 22 you find

Code:
local guildrepair = false -- switch to true to enable guildrepair
I'll see if I find some time this week to add it
thanks for the info... I'll check it out

Updated the specified line and it worked like a charm. Thanks
Last edited by WDSpider : 05-29-11 at 11:21 PM.
Report comment to moderator  
Reply With Quote
Unread 05-29-11, 08:11 PM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
I've not yet added a pref for it. But its already in.
Open Moduls/autorepair.lua in a texteditor and in line 22 you find

Code:
local guildrepair = false -- switch to true to enable guildrepair
I'll see if I find some time this week to add it
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 05-29-11, 05:31 PM  
WDSpider
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
I really like this addon as it handles accepting / performing many of the menial tasks. However, I was wondering if the auto-repair could be updated to use guild funds when available.
Report comment to moderator  
Reply With Quote
Unread 12-18-10, 03:18 AM  
spiralofhope
A Deviate Faerie Dragon
 
spiralofhope's Avatar

Forum posts: 13
File comments: 276
Uploads: 0
Thanks for this compilation addon.

I'm especially happy with the minimap clock hiding.
__________________
spiralofhope.com
Report comment to moderator  
Reply With Quote
Unread 12-09-10, 10:55 AM  
pomr
A Kobold Labourer
 
pomr's Avatar

Forum posts: 1
File comments: 46
Uploads: 0
Originally posted by Rilgamon
hehe, without ppl complaining I'd think nobody cares
Complaining means there must be something right ... sounds stupid, I know
Actually it makes perfect sense - silence is far worse than feedback.

EDIT: Works great now! Thanks for your rapid responses!
Last edited by pomr : 12-12-10 at 10:18 AM.
Report comment to moderator  
Reply With Quote
Unread 12-09-10, 08:53 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Originally posted by pomr
Thanks a million, sorry to be a pest! I really do think this is the best of the convenience bundles out there. I'm very anal about my UI, my wife finds my endless tinkering to be vastly amusing.
hehe, without ppl complaining I'd think nobody cares
Complaining means there must be something right ... sounds stupid, I know
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 12-09-10, 07:46 AM  
pomr
A Kobold Labourer
 
pomr's Avatar

Forum posts: 1
File comments: 46
Uploads: 0
Originally posted by Rilgamon
4.2 is pending and should store the setting.
(Looked at the code for hours ... to realise that I simply forgot a "DB" in the
toc-file.)
Thanks a million, sorry to be a pest! I really do think this is the best of the convenience bundles out there. I'm very anal about my UI, my wife finds my endless tinkering to be vastly amusing.
Report comment to moderator  
Reply With Quote
Unread 12-09-10, 04:11 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
4.2 is pending and should store the setting.
(Looked at the code for hours ... to realise that I simply forgot a "DB" in the
toc-file.)
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 12-07-10, 06:34 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Re: Re: Re: Minimap Button

Originally posted by pomr
That helps! Now, is there any way to have it save that preference once clicked? Every time I login I have to shift-click it off.
I'll look into this after work. This should be saved automaticly.
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 12-07-10, 05:01 AM  
pomr
A Kobold Labourer
 
pomr's Avatar

Forum posts: 1
File comments: 46
Uploads: 0
Re: Re: Minimap Button

Originally posted by Rilgamon
Thanks All minimap-buttons can be toggled by shift-click. I forgot to add
a tooltip for this in some addons.
That helps! Now, is there any way to have it save that preference once clicked? Every time I login I have to shift-click it off.
Report comment to moderator  
Reply With Quote
Unread 12-06-10, 10:35 AM  
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 822
File comments: 303
Uploads: 43
Re: Minimap Button

Originally posted by pomr
In previous iterations I was able to hide the minimap button - really no need since I have an LDB display addon. Was that ability removed on purpose or by accident?

How do I hide the minimap button? I prefer not to have any buttons on it.

I must say that this is one of the best bundles of useful stuff in a single addon out there. Kudos!
Thanks All minimap-buttons can be toggled by shift-click. I forgot to add
a tooltip for this in some addons.
__________________
The cataclysm broke the world ... and the pandas could not fix it!
Report comment to moderator  
Reply With Quote
Unread 12-06-10, 09:06 AM  
pomr
A Kobold Labourer
 
pomr's Avatar

Forum posts: 1
File comments: 46
Uploads: 0
Minimap Button

In previous iterations I was able to hide the minimap button - really no need since I have an LDB display addon. Was that ability removed on purpose or by accident?

How do I hide the minimap button? I prefer not to have any buttons on it.

I must say that this is one of the best bundles of useful stuff in a single addon out there. Kudos!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: