Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: visitor1980 on August 30, 2021, 08:20:01 AM

Title: round robin tournament
Post by: visitor1980 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
Title: Re: round robin tournament
Post by: ch1ky3n 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