GroupSize question

Status
Not open for further replies.

Mattr33

Lifetimer
Joined
Apr 11, 2005
Messages
265
Reaction score
0
Points
0
I cannot test this right now, but would this work? I just want the macro on other PCs to campout and end the macro if group goes less than 3.

Code:
If ${Me.GroupSize} < 3 {
   /camp
   /end
   }

Matt
 
Code:
/if (${Me.GroupSize} < 3) {
  /camp desktop
  /end
}

Should work fine.
 
Code:
/if (${Group.Members} < 2) {
    /camp
    /end
}
 
Status
Not open for further replies.