Hello !
I’m looking for MP solution for a simple puzzle game and I was wondering if something like this is possible on Photon.
Basically my game will generate a level, which can be recreated from simple string sent over server.
So idea is
-
one player starts a game
-
a level is generated for that player
-
when player completes a games the time it took him to complete is recorded
-
another player will “join” the game started by first player
-
he will receive a string that will recreate exactly the same puzzle from game client side
-
when he completes that puzzle his time is recorded
-
player with least time spent on a puzzle is declared a victor
So basically the only interaction between players is they get same random seed for puzzle, and their completetion time is compared. Can photon be used to create something like this?