Auto Party Inviter This plugin will auto-invite a player you set into a party. This was created due to trying to RaF with IB, but always having to re-invite my RaF partner on dungeon end. You will need to install an auto party invite accept addon: Ceaphyrel's Auto Accept Invite - Addons - Curse (This should change in the future, im still new to all this) This currently has no GUI, so you will need to change CHARACTERNAME in the plugin yourself for now, i will probably update later today with added GUI. Code: using System; using Styx; using Styx.Helpers; using Styx.Plugins.PluginClass; using Styx.WoWInternals; namespace PartyInviter { public class PartyInviter : HBPlugin { public override string Name { get { return "Party Inviter"; } } public override string Author { get { return "neoDite"; } } public override Version Version { get { return new Version(0, 1, 0, 0);; } } public override string ButtonText { get { return "Comming Soon"; } } public override bool WantButton { get { return false; } } public override void Pulse() { if (!StyxWoW.Me.IsInParty) { Logging.Write("PartyInviting : CHARACTERNAME"); Lua.DoString("InviteUnit(\"CHARACTERNAME\")"); } } } } COMMING SOON The aim of this plugin will be Check to see if we are in party, if not invite <player you choose> If we are in party <check if player is in party> if not, leave and invite them Auto-accept party invite from <player you choose> As i said, this is my first plugin and it may take some time to add the other stuff (The GUI version is nearly done, just need to clean up some stuff and test) But if anyone that knows what there doing could let me pick at there brain for an hour i would <3 you forever
worked just as I wanted it using a relogger logged in and autoinvted my raf char and off they went ^^ Awsome!!
could this be made to invite more than one person? since I'm in a 4 person raf party and this only invites 1 person?
Jeppe64, yes this can invite several persons, just type in one name per copy of it. So in your case, 4 plugins that invite one person each. Just copy the snippet into wordpad or anything similar, enter the name instead of Charactername, and save as a .cs file! Simple as that!
You have to make a file in your Plugins folder in your honorbuddy folder. I made a file called PartyInviter.cs and pasted everything in, and changed CHARACTERNAME to my toons name i wanted to invite. Also don't forget to go to curse and get the auto party accept plugin too!
ive got my mate to download the addon, i know where to paste the information for the plugin, but what file do it put the information in for honorbuddy > plugins. notepad? wordpad? all the other plugins are cs.files but i am unable to create cs files. little help?
Party Invite File I just discovered this and it was exactly what i was looking for cheers man works like a charm. For those who are using the icecrown raf method duplicate this file, open the file with notepad and put the character name in each file where it says 'PLACECHARACTERNAMEHERE' (yes you will have to put the same name in the plugin twice) be sure to put both plugin files in your leader bot plugin folder. With the addon for wow ensure you go to the addon interface and allow the character name(on each character) to accept invitations from the leader. Cheers Incog btw +rep
any idea how to use this with more than 2 ppl since if the leader fails to invite 1 person as long as he is in a party he wont retry to invite the player who isn't in the party
Code: Lua.DoString("InviteUnit(\"CHARACTERNAME\")"); Lua.DoString("InviteUnit(\"CHARACTERNAME\")"); Lua.DoString("InviteUnit(\"CHARACTERNAME\")"); Lua.DoString("InviteUnit(\"CHARACTERNAME\")"); You could also just extend it with UnitInParty("arg1") to check whether the member is already in your party before inviting.