Skip to main content

Groups

Talo groups allow you to apply filters on your player-base to create distinct segments between players. For example, you could have a group for players who are beta testers or players who have completed the game.

To create a group, head over to the dashboard, visit the groups page and create your first group. Take note of the ID as this is how you'll be referring to your group.

Checking membership

You can check if a player's group membership using IsInGroup() by providing the group ID.

  public bool IsBetaTester()
{
return Talo.CurrentPlayer.IsInGroup('9e56e835-eff6-4a6d-ac35-db8e7561af0e')
}