Skip to content

Display the correct number of online players

Yvan edited this page May 12, 2025 · 1 revision

A TransferProxy server does not maintain connections, so it cannot know the number of players connected to your server network.

To address this issue, several solutions are available to you.

1. Use ProxyOnlineLinker (Recommended)

A project has been designed to solve this problem, and you can find it here. It can be used without any additional installation, but the more reliable setup involves using it with a Redis server.

2. Custom Solution

You can also create your own solution using the STATUS event. Here is a related issue: #8 (Note: due to breaking changes, the behavior is no longer exactly the same). This approach requires you to find your own way to determine the actual number of connected players and replace the displayed information via the event, for example by using your database.

Clone this wiki locally