- Home
- Downloads
-
Addons & Mods
Featured
World of Warcraft
4,842 Addons
-
Popular Downloads
- Top World of Warcraft Addons
- Top Rift Addons
- Top Skyrim Mods
- Top Minecraft Server Mods
- Top Terraria Maps
- Top Starcraft II Maps
- Top Runes of Magic Addons
- Top Warhammer Online Addons
- Top Age of Conan Addons
-
- Curse Client
- Premium
- News
- Giveaways
- Forums
InviteMe
- 0 Likes
- World of Warcraft
- 5,612 Downloads
- Supports: 4.0.1
- 1 Average Daily Downloads
- Comments
- Created 10/8/2008 12:59:51 AM
- Updated 10/12/2010 2:44:30 AM
- 21 Favorites
- Project Site
- License: BSD License
- Release Type: Release
- Newest File: v40000.1
About InviteMe
InviteMe allows other people to invite themselves to your party.
Usage:
-- Enabled by default. Anyone can now whisper "!inviteme" to you to invite themselves to your party.
-- There is a simple configuration section at the top of InviteMe.lua
There is another addon of the same name with similar/more features located on WoWInterface, created by Striph. I make no claim as to which is the better addon, just a heads up to avoid confusion.
-- 40000.1: ToC Update. Reworked code and removed in game configuration.
-- 30100.1: ToC Update. Added license.
-- 30000.1: Works fine in Wrath.
-- 20400.1: In the beginning, the mod was made.
Comments
/invme msg will enable the mod and change the keyword to whatever msg was
/invme off will disable the mod
/invme shoud enable the mod with the default word "invite"
_
So here it is:
-- Slash Command
SLASH_INVME1, SLASH_INVME2 = '/invme', '/inviteme';
local function handler(msg, editbox)
if (msg == 'off') then
on = nil
print("InviteMe Disabled")
elseif (msg == '') then
on = 1
print("InviteMe Enabled")
whispCommand = "invite"
else
on = 1
print("InviteMe Enabled with keyword:"..msg)
whispCommand = msg
end
end
SlashCmdList["INVME"] = handler;
I don't know if you would want the code or if I should just upload the changed mod under my name or w/e :P
3 things I'd really like to see.
1st is a function to accept invite requests in /say chat.
2nd is recognizing invite requests anywhere in /whisper to me. For example, if someone says "Please invite" instead of just "invite". In other words it would recognize the word invite in a tell no matter where it is in a sentance to me. So someone says "I haven't ever done WG, can I get an invite?" the mod will pick them up.
3rd I'd love to have a blacklist option. There are people on my server that have taken total advantage of this mod auto promoting them to assist. I'd like options for it to demote or even remove them from the raid if someone invites them. I'm an equal opportunity guy so it'd be nice if this list is kept separate from my ignore list. My ignore list is for people that have made me mad, but I don't think that means they couldn't contribute to raids like WG.
The only feature not included is the blacklisting function, which I've been meaning to add for some time. It'll probably get added at some point, but I wouldn't count on it soon. I seem to spend more time playing than coding these days.