Forum Multiplayer Unity join room error.

Discussion and help relating to the PlayerIO Multiplayer API.

Unity join room error.

Postby Astrovolts » April 3rd, 2017, 7:13 pm

Hello,

I can connect to the room just fine, however a few other people who have tried recieve the following error:
Code: Select all
PlayerIOClient.PlayerIOError: NetworkIssue: Discount


My code:
Code: Select all
        client.Multiplayer.CreateJoinRoom(client.ConnectUserId, "Service", true, null, null, delegate (Connection sc)
        {
            con = sc;
            con.OnMessage += OnMessage;
            con.Send("i");
        },
        delegate (PlayerIOError error)
        {
            showError("Error: " + error);
        });
Astrovolts
 
Posts: 7
Joined: March 11th, 2017, 8:29 pm

Return to Multiplayer



cron