What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Auto Party Inviter

wowjones1234

New Member
Joined
Dec 7, 2012
Messages
8
Reaction score
0
Is this still working for everyone? I'm trying to set it up and I'm running into:

Compiler Error: d:\Wow\HB\Plugins\PartyInviter\PartyInviter.cs(4,20) : error CS0234: The type or namespace name 'PluginClass' does not exist in the namespace 'Styx.Plugins' (are you missing an assembly reference?)

and

Compiler Error: d:\Wow\HB\Plugins\PartyInviter\PartyInviter.cs(9,33) : error CS0246: The type or namespace name 'HBPlugin' could not be found (are you missing a using directive or an assembly reference?)

My PartyInviter.cs looks like this:
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 : NAME");
Lua.DoString("InviteUnit(\"NAME\")");
}
}
}
}


EDIT: http://www.thebuddyforum.com/archives/31266-plugin-auto-party-inviter.html is where I found it.
 

Attachments

was tired bad info
 
Last edited:
I'm trying to get this to work too, but I have no knowledge of coding. Could anyone fix the code to make it work again?
 
best to look at the namespaces for other plugins and just use that.
 
-Omation Profiles has a raf power leveling bot coming out soon that will include auto part invites and accepts and all that

Yes it's for hb.... Yes it will be automated 1-80
 
Back
Top