Search Unity

Bug Unity Multiplay Matchmaking: OperationException: Game does not exist (ErrorCode: 32758)

Discussion in 'Matchmaker' started by forbiddenua, Sep 28, 2022.

  1. forbiddenua

    forbiddenua

    Joined:
    Dec 1, 2021
    Posts:
    3
    I use the Photon Fusion BR200 example. And the documentation on how to set up Matchmaking. Having done everything according to the documentation I end up with an error - game not found. Although Unity Gaming Services keeps statistics that Matchmaking happens and tickets are counted. What may be the problem because I did everything clearly according to the docs https://doc.photonengine.com/docs/c...tiplay-integration-documentation-by-unity.pdf

    I used Photon's documentation for Matchmaking integration

    I have contacted Photon's support on the forum and on discord and received this reply:
    "I suggest also asking this in the Multiplay forum. They created the integration and the documentation for it. We're simply hosting it for them for convenience"
    Screenshot 2022-09-28 at 01.05.44.png
     
  2. FlorianAtUnity

    FlorianAtUnity

    Unity Technologies

    Joined:
    Jun 16, 2021
    Posts:
    15
    In the dashboard, in Multiplayer > Servers, you can click on a server and there is a Logs tab, maybe there is more info in there.
     
  3. guillaumedUnity

    guillaumedUnity

    Unity Technologies

    Joined:
    Apr 1, 2021
    Posts:
    36
    Like Florian is saying, I suggest looking in the logs of the server.
    It sounds like matchmaker has found a match for you but the server has not opened the connection with Photon Fusion and therefore the client is not able to join
     
  4. forbiddenua

    forbiddenua

    Joined:
    Dec 1, 2021
    Posts:
    3
    Unfortunately, I can't figure out what the problem is on my own. The guys from photon also wrote me that your guide specifies a North America server when setting up Multiplay on the website. And they advised to change the parameter when starting the build from eu to us

    Now the parameters look like this:

    -nographics -dedicatedServer -batchmode -fps 60 -battleRoyale -logFile $$log_dir$$/Engine.log -dataPath $$log_dir$$ -port $$port$$ -region us -serverName "MP #$$serverid$$" -multiplay -backfill -sqp -matchmaking -maxPlayers 200

    At the same time, even if North America (us) is installed everywhere, I always get the same error. I have checked the server logs according to your recommendation and every time I try to connect the same scenario happens! I found in the event that there is the following error

    Server exit: triggering deallocation (exit: 139, signal: terminated)

    I will attach a link to the log file for you to read. There's also a shader compilation error in the log, but I don't think this has any effect Do you have any idea how to fix this?

    https://drive.google.com/file/d/1A93m2Oo1mGMdcznj6wUE4FqD9NaJXqjV/view?usp=sharing



    Here is another link to my ticket with Photon







    2022-09-29 (6).png
     
  5. Tykev

    Tykev

    Joined:
    Aug 25, 2014
    Posts:
    21
    I can see there's a hard crash right after shader compilation. This indicates:
    1) The build is incorrectly uploaded (some files missing on server machines)
    2) The build itself is broken. We've seen some hard crashes in project accidentally imported with Unity 2020.3 instead of 2021.3. After switching to 2021 it still didn't work because initial import produced some irrecoverable asset changes and deleting Library had no effect.

    I recommend starting from scratch. Make sure to use same version (2021.3.5f1), ideally put the project under a version control system immediately after import so you can track all unintentional changes. In the worst case it is something specific to your development environment and you'll have to find what is causing the crash.

    Edit: Checked our server logs and the next task after shaders is compilation of Burst code.
     
    Last edited: Oct 4, 2022
    Alexis_UGS likes this.
  6. tony040209_unity

    tony040209_unity

    Joined:
    Mar 21, 2021
    Posts:
    28
    There is a problem with that project itself,
    I also tested it myself,
    It may be that MatchMaker has an update,
    There is a problem with the code inside,
    The suggestion is to use PackageManager to download, and then there are example resources in it.
    Try to send a ticket to MatchMaker directly.
     
  7. SteveKouts

    SteveKouts

    Joined:
    Aug 23, 2012
    Posts:
    79
    Any fixes to this?
    I get the same thing.

    Im getting this error:
    Client#0 failed to start! Result: [StartGameResult: Ok:False, ShutdownReason: GameNotFound, ErrorMessage=Game does not exist (ErrorCode: 32758)]
    UnityEngine.Debug:LogError (object)
    TPSBR.Networking/<ConnectPeerCoroutine>d__37:MoveNext () (at Assets/TPSBR/Scripts/Networking/Networking.cs:358)
    UnityEngine.SetupCoroutine:InvokeMoveNext (System.Collections.IEnumerator,intptr)
     
    Filip8429 likes this.
  8. Filip8429

    Filip8429

    Joined:
    Dec 16, 2018
    Posts:
    20
    You mean with the BR200-project? I am having the same issue and could not find a solution anywhere. Whats interesting is that the last post here said that building with a mac and the correct C++ compiler configuration fixed the issue. I don't have a mac but that seems to imply that it's not an issue with the project? But I have a feeling that that he may have had a different cause that resulted in the same error.

    https://forum.photonengine.com/disc...on-game-does-not-exist-errorcode-32758#latest
     
  9. Dextex94

    Dextex94

    Joined:
    Oct 23, 2020
    Posts:
    8
    We have the same problem...
    we try to build it with Mac same error
     
  10. NEMZAKI

    NEMZAKI

    Joined:
    Apr 29, 2022
    Posts:
    6
    Anyone found a solution to this problem, It happens randomly on my end