I’m attempting an app for a card game I invented. I want multiple game rooms so when more than 5 people join a game a new game room will open up for more people to play the game.
I’m pretty sure the answer is no, but I’ll ask anyway. Can I create a game room, with the game as a template so when a game is full, it will open a new game room. I don’t want to recreate the same game room multiple times . I know the No code coding can go in the backpack, but I don’t want to recreate the interface several times for each game room.
You did not mention what Database you are using.
I assume you are using CloudDB.
You can use a tag named QUEUE, as a list.
When a user want to join the game, add his name in the QUEUE list, if its length == 5, send a message to this 5 users, and clear the list.
Something similar can be done with your card game. With appropriate coding, more than five participants can be directed to additional 'playing rooms'. You just have to code the app to do it.