# Merge With Project

#### Easy Merge <a href="#parenting-gamemode" id="parenting-gamemode"></a>

You should already have the Server Manager added into your project, next thing to do is implement the nodes and explain a bit what they do.

#### Init User

Notice we have NLP as provider, but you can put any provider from steam, epic, ur own provider. Then the ID will need to be Unique ID, for example in our Lobby System plugin we have a node called GetUniqueNetID that you can use inside ID.

<div align="left"><figure><img src="https://3554096695-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FClasSjSYpFMUFyy23ioF%2Fuploads%2FkwR3LT4ZJowcJesOW7eT%2Fimage.png?alt=media&#x26;token=94a6ab97-5cb2-446a-b24c-4c37f1b7313c" alt=""><figcaption></figcaption></figure></div>

#### Get Ranked ELO

Getting Current Ranked ELO is going to be used the most, as you will need it for Find Session. Maybe displaying the current ELO so you can match it to your Data Table of ranks.

<div align="left"><figure><img src="https://3554096695-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FClasSjSYpFMUFyy23ioF%2Fuploads%2FFIbjackAUwWv3f7o8qCG%2Fimage.png?alt=media&#x26;token=2eb9a6a2-70f8-41fb-aad6-fa323b7026fc" alt=""><figcaption></figcaption></figure></div>

#### Increase and Decreasing ELO

<div align="left"><figure><img src="https://3554096695-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FClasSjSYpFMUFyy23ioF%2Fuploads%2FScJnPppTmfWkATOtH5jb%2Fimage.png?alt=media&#x26;token=58dec97c-bcf2-49dc-9780-dddff4ffac52" alt=""><figcaption></figcaption></figure> <figure><img src="https://3554096695-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FClasSjSYpFMUFyy23ioF%2Fuploads%2Fql9VxKKRBe83IIVBaply%2Fimage.png?alt=media&#x26;token=1a8eda61-3826-4f92-aa0d-4d209b5eec98" alt=""><figcaption></figcaption></figure></div>

#### Find Session

Finding a ranked session is similar to the normal find session it just contains a Ranked Settings struct

<figure><img src="https://3554096695-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FClasSjSYpFMUFyy23ioF%2Fuploads%2FXBECMyKLWPBWoNgyw5sk%2Fimage.png?alt=media&#x26;token=99d25477-9c3f-4873-a615-078dc4e377c2" alt=""><figcaption></figcaption></figure>

<table><thead><tr><th>Field</th><th>Details</th><th data-hidden></th></tr></thead><tbody><tr><td>Elo</td><td>This is your users current elo</td><td></td></tr><tr><td>Max Elo Search Attempts</td><td>This is how many times it will search that elo before applying the step.</td><td></td></tr><tr><td>Elo Search Step</td><td>This is the amount that will be applied if a server wasn't found on top of the current elo. 0 Value to disable. * But at least one step has to have a value for results. * You can also step backwards by enabling it.</td><td></td></tr><tr><td>Enable Search Step Backwards</td><td>This just allows it to search the ranked backwards as well looking for lower ranked games.</td><td></td></tr><tr><td>Elo Max Before Hosting</td><td>If no server was found at this max elo and after all the search attempts, it will then create a server. For the players current elo</td><td></td></tr></tbody></table>


---

# 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://docs.nextlevelplugins.com/plugins/ranked-server-manager/how-tos/merge-with-project.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.
