Returns a list of player names in the player's party or raid
See also Party functions.
Signature:
names = GetHomePartyInfo()
Arguments:
nil- No Arguments ()
Returns:
names- list of party members. Note: returns nil if player is in Ashran but not in a party, otherwise returns list of party members. (table)
Examples:
local x1 = GetHomePartyInfo()
if x1 then print("in home party")
print(x1[1], x1[2], x1[3], x1[4])
else print("nope")
end