Hi,
I have a board game that is best to use the relayed match design. I only have a few issues and wish that someone would guide me to the right direction:
-
A match is indefinite (about 100 matches, and people can come and leave at will), how can I prevent the server from closing the match?
-
How to Store persistent data within a match, like boardState. – I looked into user storage and found that only owner has permission to modify the data, so it wouldn’t be applicable in this scenario. what is the best way to store data on the server for a relayed match?
-
I already have server side code written in dart/python so hence I do not want to go with the authoritative approach, having migrate that piece of code to nakama module in go/ts/lua. Is it good practice to have a server-side code login to nakama as a special user and relay messages from there? ie. check if a move is valid and return a valid board-state of the match?
thank you.