View Single Post
11-15-12, 07:41 PM   #6
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
This is probably trivial and superfluous information now but here is also some kind of truth table to compare against
Lua Code:
  1. .                      solo     party(5)  raid(25)
  2.  
  3. IsInRaid               false    false     true
  4. IsInGroup              false    true      true
  5.  
  6. GetNumGroupMembers     0        5         25
  7. GetNumSubgroupMembers  0        4         4
  8.  
  9. UnitInRaid("player")   nil      nil       11
  10. UnitInParty("player")  nil      1         1

Last edited by Ketho : 11-15-12 at 07:55 PM.
  Reply With Quote