So im coding a makecode verson of poker and i also want to make this multiplayer but since all players share one screen they would be able to see each other’s cards. I need to make it to where each player “has” their own screen.
1 Like
You can use the splitscreen extension! Hopefully that’s what you mean!
1 Like
not exactly, the problem would be is that other players could still see the other cards, i need each player to basiclly have their own screen
1 Like
But then they would still be able to see each other’s decks
1 Like
Unfortunately the answer is no unless the devs change it. Currently the way multiplayer works is that it simply sends the host’s screen to the joined players every frame. You could try creating a server and using websockets to connect to the server, and having the server do all the logic and stuff. This would, of course, be a JavaScript only endeavor. Though I have seen something similar done before. Goodluck!
1 Like