You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.3 KiB
2.3 KiB
Finding the Server Information for a Multiplayer Room
Use this guide when you need to determine the connection information for the Public Multiplayer Lobby you are connected to.
Click Here for a version of this guide with images & visual elements.
Pre-Requisites
- Eden set up and configured
- Internet Access
Steps
Method 1: Grabbing the Address from the Log File
- Open Eden and Connect to the room you want to identify.
- See Joining a Multiplayer Room for instructions on how to do so if you need them.
- Go to File → Open Eden Folder, then open the config folder.
- Open the the qt-config.ini file in a text editor.
- Search for the following keys:
Multiplayer\ip=Multiplayer\port=
- Copy the Server Address and Port.
Method 2: Using a Web Browser
- Obtain the name of the room you want the information for.
- Open a Web Browser.
- Navigate to
https://api.ynet-fun.xyz/lobby - Press Ctrl + F and search for the name of your room.
- Look for and copy the Server Address and Port.
Method 3: Using a Terminal (PowerShell or CURL)
-
Obtain the name of the room you want the information for.
-
Open the terminal supported by your operating system.
-
Run one of the following commands, replacing with the name of the server from step 1.
PowerShell Command [Windows Users]
# Calls the API to get the address and port information (Invoke-RestMethod -Method Get -Uri "https://api.ynet-fun.xyz/lobby").rooms | Where-Object {$_.Name -eq '<NAME>'} | Select address,port | ConvertTo-Json # Example Output #{ # "address": "118.208.233.90", # "port": 5001 #}CURL Command [MacOS/Linux Users] *Requires jq
# Calls the API to get the address and port information curl -s "https://api.ynet-fun.xyz/lobby" | jq '.rooms[] | select(.name == "<NAME>") | {address, port}' # Example Output #{ # "address": "118.208.233.90", # "port": 5001 #} -
Copy the Server Address and Port.