Hey Droidz
Not sure if it's a bug or it is intended, but when you use the class editor, and you set it to check friends (For healing group).
It only casts on the group. Is there a way to change that to raid?
I am guessing that you are doing variableName {"party1", "party2", "party3" etc.} or some variation of that. (Array)
Should be possible to change that into raid1 raid2 etc. based on you being in a party or raid.
group = false if not group then group = "solo" end groupmembers = false if not groupmembers then groupmembers = 0 end if GetNumPartyMembers() > 0 then group ="party" groupmembers = GetNumPartyMembers() end if GetNumRaidMembers() > 0 then group = "raid" groupmembers = GetNumRaidMembers() end
This is how I personally define if i am in a group/raid/solo
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