Thread Tools Display Modes
03-09-11, 09:05 AM   #1
JJLodge
A Fallenroot Satyr
Join Date: Nov 2007
Posts: 24
auto g invite

hi all

i got told of a mod/addon that could auto invite all non guild players in that area ive tried searching but have failed to find it

can anyone shed some light?
 
03-09-11, 09:36 AM   #2
Jigain
A Molten Giant
 
Jigain's Avatar
Join Date: Jul 2009
Posts: 732
So you want a guild invite spam machine?
__________________


 
03-09-11, 09:37 AM   #3
Nobgul
A Molten Giant
 
Nobgul's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2009
Posts: 693
This has been brought up before. I have never seen the addon, but in the last thread a ton of authors refused to make such a addon as well. If I remember correctly though the addon in question was for pre 3.x
__________________
[SIGPIC][/SIGPIC]
 
03-09-11, 09:54 AM   #4
JJLodge
A Fallenroot Satyr
Join Date: Nov 2007
Posts: 24
it definalty is out there started a new char last night on a popular realm with 3 others and we all had invite the same time asked all he said was it was auto invite to players not in a guild who are in that zone
 
03-09-11, 10:07 AM   #5
sacrife
An Onyxian Warder
 
sacrife's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 384
The addon exists, however the addon is purely ment to annoy people or abuse guildperks. No one here is going to tell what it's name is.

Either learn to google better or drop the search.
__________________

 
03-09-11, 10:25 AM   #6
JJLodge
A Fallenroot Satyr
Join Date: Nov 2007
Posts: 24
it was a simple question about a addon that i had a question about, there is no need to be rude and replys like yours sacrife its a surprise this forum actually has members who post, @ sacrife learn to be more social and less up your own arse
 
03-09-11, 11:14 AM   #7
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
good luck annoying the hell out of people

Last edited by Ketho : 03-09-11 at 02:06 PM.
 
03-09-11, 01:07 PM   #8
sacrife
An Onyxian Warder
 
sacrife's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 384
There is no need to throw personal attacks at me. I know exactly why you want the addon and I explained why I won't tell it's name.
__________________

 
03-09-11, 01:11 PM   #9
Nobgul
A Molten Giant
 
Nobgul's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2009
Posts: 693
No need to take to name calling, with that said the addon name has already been told. With that being said please lets get back on topic in this thread.
__________________
[SIGPIC][/SIGPIC]
 
03-09-11, 01:38 PM   #10
Aprikot
A Frostmaul Preserver
 
Aprikot's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 284
/TargetNearestFriendPlayer
/ginvite

Too simple? /mashableselfban

Would this function block all inc sig requests?

lua Code:
  1. function abc:GUILD_INVITE_REQUEST()
  2.     StaticPopup_Hide("GUILD_INVITE")
  3.     DeclineGuild()
  4. end
 
03-09-11, 03:49 PM   #11
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,313
Originally Posted by Aprikot View Post
Would this function block all inc sig requests?

lua Code:
  1. function abc:GUILD_INVITE_REQUEST()
  2.     StaticPopup_Hide("GUILD_INVITE")
  3.     DeclineGuild()
  4. end
If you had a frame watching that event and running the function.
I'd rather run it as a hook on UIParent, that would have 100% reliability to run after UIParent tries to show the popup (if the function runs before that, the popup could still show even though the guild is declined). This is based off the same code I use to auto-decline duel requests.

lua Code:
  1. UIParent:HookScript("OnEvent",function(self,event,...)
  2.     DeclineGuild();
  3.     StaticPopup_Hide("GUILD_INVITE");
  4. end);



On a side note, if such addon does exist, Blizzard would probably make it a protected function if not at least requiring a hardware event to run the API function to send out guild invites. Either way, it's impossible for an addon to detect nearby players that don't have a valid UnitID (those that aren't targeted by you or a party/raid member). There is a workaround for this theoretically if it's possible to take names form a /who scan run by the player. That would take players from the entire zone if written right, otherwise the first 49 players it finds on the entire server.

I would rather see an advertisement addon sending out a message to the general/recruitment channel every 5-10 minutes, or some other time that won't be considered spam or an annoyance to others.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)

Last edited by SDPhantom : 03-09-11 at 04:05 PM.
 
03-10-11, 05:00 AM   #12
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
I made such addon (didn't distribute) for testing purposes. All it does is simple scan /who for 1-10, 11-20, 21-30, etc and invite everyone that isn't guilded. Works wonders, a bit too good imo

I can confirm it's not protected and perhaps it is a good idea to make it protected.

Oh, and don't ask me for it, I'm not giving out the addon.
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
 
03-10-11, 07:05 AM   #13
JJLodge
A Fallenroot Satyr
Join Date: Nov 2007
Posts: 24
Originally Posted by sacrife View Post
There is no need to throw personal attacks at me. I know exactly why you want the addon and I explained why I won't tell it's name.
You no exactly why i want the addon?? well proves how wrong you can be, no everyone else in this thread has had constructive feedback can we say that about yours NO if you think its not valid DONT post its not welcome i reckon if i found all your posts 90% of them i could say the same, seems your head isnt quite out far enough yet

FYI i was hoping to tweak the addon for invites to grps from within and out of my guild NOT for guild invites but hey i guess you already new this !
 
03-10-11, 07:26 AM   #14
Lily.Petal
A Molten Giant
 
Lily.Petal's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 540
FYI i was hoping to tweak the addon for invites to grps from within and out of my guild NOT for guild invites but hey i guess you already new this !
Calender invites? :O And your attack back is unwarranted as well; but you got your answer(s) a few posts up~
__________________

Aggro Color to KG Panels Borders - Nibelheim
Lua Based UI Hider - Nibelheim
Custom LUA PowerText - Stuf - Nibelheim, Seerah
 
03-10-11, 07:38 AM   #15
Nobgul
A Molten Giant
 
Nobgul's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2009
Posts: 693
/--

function Wowinterface.Thread.Status:Closed(Closed)

self.db.profile.activated = Closed

if (status) then
self:Print("This Thread Has Been Closed!")
else
self:Print("Thank You Have A Good Day!")
end
end

--/

In other words the thread is closed due to lack of productivity. The answers have been given, as pointed out previously.
__________________
[SIGPIC][/SIGPIC]
 

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » auto g invite

Thread Tools
Display Modes

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