bug: JoinRandom, get OperationResponse 226: ReturnCode: 32764 (Game closed).

Options
riovoxtools
edited May 2022 in Photon Server

I follow the steps below, it have a bug:JoinRandom, get OperationResponse 226: ReturnCode: 32764 (Game closed). 

Step 1. crete room:

RoomOptions roomOptions = new RoomOptions();

roomOptions.MaxPlayers = (byte)maxPlayers;

roomOptions.IsVisible = true;

roomOptions.IsOpen = true;

roomOptions.CustomRoomProperties = customroomproperties;

roomOptions.CustomRoomPropertiesForLobby = roomPropertiesList.ToArray();

roomOptions.PublishUserId = true;

roomOptions.PlayerTtl = -1;

roomOptions.EmptyRoomTtl = 0;

roomOptions.CleanupCacheOnLeave = false;

roomOptions.Plugins = new string[] { "XXGame" };

PhotonNetwork.CreateRoom(roomName, roomOptions, null);

Step 2.Join room:

PhotonNetwork.JoinRandomRoom();

Step 3: set isvisible/isopen on self-host server photon v5 

           if(PluginHost.GameProperties.ContainsKey((byte)GameParameter.IsVisible))

            {

              bool isVisible = (bool)PluginHost.GameProperties[(byte)GameParameter.IsVisible];

              if (isVisible)

              {

                PluginHost.SetProperties(0, new Hashtable() { { (byte)GameParameter.IsVisible, false } }, null, true);

              }

            }

            5 secondes later : Call PluginHost.SetProperties(0, new Hashtable() { { (byte)GameParameter.IsOpen, false } }, null, true);

Step 4: Quit the room

        PhotonNetwork.DestroyPlayerObjects(PhotonNetwork.player.ID);

      PhotonNetwork.LeaveRoom(false);

Step 5: Join another room: call PhotonNetwork.JoinRandomRoom();

  Get error: OperationResponse 226: ReturnCode: 32764 (Game closed). Parameters: {} Server: GameServer

32764 (Game closed) error is in callback OnPhotonJoinRoomFailed .

The OnPhotonRandomJoinFailed( object[] codeAndMsg ) is never call after (Game Closed)-error.

step 6: Join another room again: call PhotonNetwork.JoinRandomRoom();

OperationResponse 226: ReturnCode: 32758 (Game does not exist). Parameters: {} Server: GameServer

And I can't join any other room more.

   

Answers

  • riovoxtools
    Options

    Please help asap, when our game is published, this error occured.