# Network Match Checker

{% hint style="danger" %}
**Network Match Checker is Obsolete - use** [**Network Match**](https://mirror-networking.gitbook.io/docs/manual/interest-management/match) **component instead.**
{% endhint %}

The Network Match Checker component controls visibility of networked objects based on match id.

![](https://462154250-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MGmQrf2z6FL0ZpExPAn%2F-MUN_Q_0G6Qds1Vt4wav%2F-MUN_XfH0FPq60gcYWUH%2Fimage.png?alt=media\&token=776d39d5-7fbd-4fe9-9a3b-65866109b861)

Any object with this component on it will only be visible to other objects in the same match.

This would be used to isolate players to their respective matches within a single game server instance.

When you create a match, generate and store, in a List for example, a new match id with `System.Guid.NewGuid();` and assign the same match id to the Network Match Checker via `GetComponent<NetworkMatchChecker>().matchId`.

Mirror's built-in Observers system will isolate SyncVar's and ClientRpc's on networked objects to only send updates to clients with the same match id.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mirror-networking.gitbook.io/docs/manual/components/deprecated/network-match-checker.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
