You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is necessary to add an endpoint to allow the game to retrieve RTMP and RTMPT server list.
For adding this endpoint, it is necessary to take in mind this Red5's documentation, and that the game uses the following XML structure for processing the game server list:
<?xml version="1.0" encoding="UTF-8"?>
<servers>
<server>
<id><!-- Numeric ID --></id>
<urls>
<url><!-- RTMP URL --></url>
<url><!-- RTMPT URL --></url>
</urls>
<safeChat><!-- true or false --></safeChat>
<country><!-- Country code in lower case. e.g. ar --></country>
<name><!-- Name of the server, which will be visible by players when selecting a server after logging in the game --></name>
<clients><!-- Max number of players connected --></clients>
</server>
</servers>
The text was updated successfully, but these errors were encountered:
It is necessary to add an endpoint to allow the game to retrieve RTMP and RTMPT server list.
For adding this endpoint, it is necessary to take in mind this Red5's documentation, and that the game uses the following XML structure for processing the game server list:
The text was updated successfully, but these errors were encountered: