Download
(5Kb)
Download
Updated: 08-10-09 11:58 AM
Pictures
File Info
Updated:08-10-09 11:58 AM
Created:02-16-09 01:26 PM
Downloads:2,408
Favorites:10
MD5:

Grunt

Version: v1.2-Release
by: PProvost [More]

A warcraft addon that does those dumb menial tasks you hate doing yourself. Simply install and go. No configuration required.

Functions

Performs the following functions for you

* Auto-repop to graveyard if in a battleground and don’t have a SS
* Hide all duel invitations (note: they are not declined, you just won't see them)
* Auto-accept invites from guildies or friends
* Hide that annoying “Are you sure you want to Quit?” dialog
* Show/hide enemy nameplates when you go in/out of combat

Disabling functions

If you dont’ want one of these functions, comment out the appropriate RegisterEvent call in the PLAYER_LOGIN event handler. It should be pretty easy to figure out.

Tagging as v1.2-release

--------------------

PProvost:
Updated TOC to 30200

Tagging as v1.1.1-Release

--------------------

PProvost:
Lots more code cleanup

--------------------

Tagging as v1.1-Release

--------------------

PProvost:
Updated README file
Update TOC for Patch 3.1
Fixed now-broken AcceptGroup() logic
Code cleanup

Tagging as v1.0-Release

--------------------

Initial release
Post A Reply Comment Options
Unread 04-27-11, 12:38 PM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
seems to work with 4.1 with TOC bump...

edit: works with 4.3 cataclysm
Last edited by oXid_FoX : 03-18-12 at 03:11 AM.
Report comment to moderator  
Reply With Quote
Unread 11-17-10, 02:06 AM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
still works with 4.0.1 with TOC bump...
Report comment to moderator  
Reply With Quote
Unread 07-03-10, 03:11 PM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
Re: Re: disable auto-accept invit when in LFG queue

Originally posted by PProvost
Thanks oXid... testing now.
any news?

patch 3.3.5 and realId friends ; to auto-accept realId friends, just do:

add this before "return false" in function IsFriend :
Code:
	-- realID friend
	for i = 1, BNGetNumFriends() do
	    _, _, _, toonName = BNGetFriendInfo(i)
		if toonName == name then
			return true
		end
	end
Report comment to moderator  
Reply With Quote
Unread 02-04-10, 08:44 PM  
PProvost
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 126
Uploads: 23
Re: disable auto-accept invit when in LFG queue

Originally posted by oXid_FoX
replace
Code:
if (IsFriend(sender) or IsGuildMember(sender)) then
by
Code:
local mode, submode = GetLFGMode();
if ((IsFriend(sender) or IsGuildMember(sender)) and not ( mode == "queued" or mode == "rolecheck" )) then
or maybe just check if mode == nil, but I don't like to play with nil... (I saw so much errors with nil values on patchdays, so I avoid this)
Thanks oXid... testing now.
Report comment to moderator  
Reply With Quote
Unread 01-27-10, 09:36 AM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
disable auto-accept invit when in LFG queue

replace
Code:
if (IsFriend(sender) or IsGuildMember(sender)) then
by
Code:
local mode, submode = GetLFGMode();
if ((IsFriend(sender) or IsGuildMember(sender)) and not ( mode == "queued" or mode == "rolecheck" )) then
or maybe just check if mode == nil, but I don't like to play with nil... (I saw so much errors with nil values on patchdays, so I avoid this)
Last edited by oXid_FoX : 01-27-10 at 09:44 AM.
Report comment to moderator  
Reply With Quote
Unread 01-11-10, 05:32 PM  
PProvost
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 126
Uploads: 23
Originally posted by oXid_FoX
can you remove the Auto-accept invites feature when we're in queue of "Dungeon finder" tool ?
because when a friend invit us just for a craft or something else whereas we're wainting for 15 minutes, it's pretty annoying to lose this time...
Aha! Good catch. I hadn't seen that happen yet.
Report comment to moderator  
Reply With Quote
Unread 01-10-10, 09:25 AM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
can you remove the Auto-accept invites feature when we're in queue of "Dungeon finder" tool ?
because when a friend invit us just for a craft or something else whereas we're wainting for 15 minutes, it's pretty annoying to lose this time...
Report comment to moderator  
Reply With Quote
Unread 12-13-09, 02:56 AM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
Thumbs up 3.3

it seems it works with current 3.3 live realms with .toc updated to 30300...
Last edited by oXid_FoX : 12-13-09 at 02:58 AM.
Report comment to moderator  
Reply With Quote
Unread 12-11-09, 09:00 AM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
no.
because it is so easy to miss-right-click on it... and so use the 30min cooldown just because you click on this stupid NPC... really annoying!
Report comment to moderator  
Reply With Quote
Unread 10-14-09, 12:45 PM  
PProvost
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 126
Uploads: 23
Originally posted by oXid_FoX
plz update description (skipping vendor gossip).
good feature... BUT !

you must take care of Argent Squire with its Pony Bridle... it seems your addon opens automatically our bank and doesn't give the choice (bank/trader/mailbox)...
You can make the skip vendor gossip feature NOT SKIP by holding down Alt when you open the vendor.
Report comment to moderator  
Reply With Quote
Unread 09-30-09, 03:52 PM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
plz update description (skipping vendor gossip).
good feature... BUT !

you must take care of Argent Squire with its Pony Bridle... it seems your addon opens automatically our bank and doesn't give the choice (bank/trader/mailbox)...
Report comment to moderator  
Reply With Quote
Unread 08-10-09, 11:54 AM  
PProvost
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 126
Uploads: 23
Re: 3.2

Originally posted by oXid_FoX
nice addon !

it seems to work correctly with 3.2 live...
Thanks!
Report comment to moderator  
Reply With Quote
Unread 08-06-09, 05:55 PM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
Wink 3.2

nice addon !

it seems to work correctly with 3.2 live...
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: