playMaker

Author Topic: round robin tournament  (Read 479 times)

visitor1980

  • Playmaker Newbie
  • *
  • Posts: 39
round robin tournament
« on: August 30, 2021, 08:20:01 AM »
Hi, any idea how to make round robin tournament with playmaker (not ui), here is the example link for layout with 4 teams https://excel-example.com/templates/sport-tournament-template

ch1ky3n

  • Full Member
  • ***
  • Posts: 208
Re: round robin tournament
« Reply #1 on: September 05, 2021, 02:13:22 PM »
1. You'll need 2 array tables  for it

one for the team (index,name,w,d,l,etc,etc)
one for matches (matchIndex, teamLeft,TeamRight,result)

2. Make the matchmaking generator by iterating the A vs B, A vs C, A vs D, B vs C, etc., and fill the array for matches. thus giving you a match-list that you can run

Good Luck