LF events for join and leave party

LF events for join and leave party

by Geigerkind » Fri Mar 11, 2016 6:17 pm

Hey,
im looking for the events that are fired when the player joins and leaves a party. Either the event that fires if the player actually does that or the chat msg event that outputs those messages.

"You leave the group"
My Addons:
DPSMate - A combat analyzation tool (/viewtopic.php?f=63&t=38042)
Vanilla Consolidated Buff-Frames (/viewtopic.php?f=63&t=18189)
Modified Power Auras (/viewtopic.php?f=63&t=18251)
User avatar
Geigerkind
Senior Sergeant
Senior Sergeant
 

Re: LF events for join and leave party

by Renew » Fri Mar 11, 2016 6:24 pm

i used "PARTY_MEMBERS_CHANGED"

and checked for UnitInRaid and GetNumPartyMembers

Code: Select all
if VHM.Close == 0 and not UnitInRaid("player") and GetNumPartyMembers() > 0 then
   VHM.Raidframe:Show()
elseif not UnitInRaid("player") and GetNumPartyMembers() == 0  then
   VHM.Raidframe:Hide()
end


this is explicit party join/leave - raid is excluded
my Addons:
- Vanilla Healing Assignments - /viewtopic.php?f=63&t=23326
- Vanilla Storyline -
User avatar
Renew
Senior Sergeant
Senior Sergeant
 

Re: LF events for join and leave party

by Geigerkind » Fri Mar 11, 2016 6:26 pm

I see, guess Im being stupid again for not noticing it, thanks man!
My Addons:
DPSMate - A combat analyzation tool (/viewtopic.php?f=63&t=38042)
Vanilla Consolidated Buff-Frames (/viewtopic.php?f=63&t=18189)
Modified Power Auras (/viewtopic.php?f=63&t=18251)
User avatar
Geigerkind
Senior Sergeant
Senior Sergeant
 


Return to Addons & macros