Help with loop crashing game?
Okay, so i made this function to choose 3 random players to compete in a competition.
6 players are supposed to participate in the competition: the competition Host 2 pre-chosen Competitors, and 3 randomly chosen players. I tried to make a while loop so that if the any of the randomly chosen players are the competition host, prechosen competitors, or any of the other randomly chosen players, it would keep on doing math.random until it finds a player that isnt any of those. The thing is, the loop keeps on crashing my game, how would i fix/optimize this code so that it wont crash my game?
01 | function choosePlayersForCompetition() |
02 | local random 1 = math.random( 1 , #players) |
03 | local random 2 = math.random( 1 , #players) |
04 | local random 3 = math.random( 1 , #players) |
05 | while random 1 = = table.concat(CompetitionHost) or table.concat(prechosenCompetitor) do table.concat(prechosenCompetitor 2 ) or random 2 or random 3 then |
06 | povPlayer = math.random( 1 , #players) |
08 | while povPlayer 2 = = table.concat(CompetitionHost) or table.concat(prechosenCompetitor) do table.concat(prechosenCompetitor 2 ) or random 1 or random 3 then |
09 | povPlayer = math.random( 1 , #players) |
11 | while povPlayer 3 = = table.concat(CompetitionHost) or table.concat(prechosenCompetitor) do table.concat(prechosenCompetitor 2 ) or random 1 or random 2 then |
12 | povPlayer = math.random( 1 , #players) |
15 | local chosenpovPlayer = players [ random 1 ] |
16 | local chosenpovPlayer 2 = players [ random 2 ] |
17 | local chosenpovPlayer 3 = players [ random 3 ] |