I think GetParty() is broken for Burning Crusade and possibly Legion? It is not broken in WoTLK, as below snippet works. Running code below always returns 0 members in the group in BC.
var party = wManager.Wow.Helpers.Party.GetParty(); Logging.Write("Total members in group: " + party.Count); foreach (var members in party) { Logging.Write("Player name: " + members.name); }
Recommended Comments
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now