Hey rexrainbow,
the plugin and server are working just fine and very easy to use. But right now I'm trying to solve the following problem:
The user should automatically connect to the next available game room or create a new one with the higher index. So I'm trying to do something like this:
"On room unavailable" > set RoomID to str(int(RoomID)+1)
Bottleneck "User MyUserName" join to room "RoomID"
But it doesn't work like this. It seems that after "onRoomUnavailable" there's no other "connectivity" actions possible. Ideally it should work recursively.
Or do I have to save room data somewhere on the server and parse the data with something like php?