Returning to a loop once a player has left...?
Asked by
6 years ago Edited 6 years ago
Wondering if there is a way to stop a function from running after it has been called...in my case I have a function that runs a loop until 2 players join the game before moving on with the rest of the function. Now say 1 of those 2 players leaves the game, I now want it to return to the loop and wait again for 2 people to be in the game.
01 | while waiting = = true do |
02 | ToClient:FireAllClients( 'RequiredPlayers' , true ) |
03 | if #Playing > = RequiredPlayers then |
05 | ToClient:FireAllClients( 'RequiredPlayers' , false ) |
10 | for T = IntermissionTime, 0 ,- 1 do |
11 | ToClient:FireAllClients( 'IntermissionTimer' ,T) |
So, if a player would leave during the 15 second IntermissionTime time it would return back to the while loop...thats the idea.
Honestly while writing this i'm thinking I need to just come up with the logic to make that work, any ideas are appreciated :)