Updated English (markdown)

Mathieu Broillet 2020-04-28 20:39:16 +02:00
parent 2f950bccec
commit e179f000dd

@ -27,6 +27,8 @@ Config file :
"_comment4": "%server-max-slot% - Number of server slots", "_comment4": "%server-max-slot% - Number of server slots",
"server-ip": "mc.hypixel.net", "server-ip": "mc.hypixel.net",
"server-port": "25565", "server-port": "25565",
"state": "%server-connected-player%/%server-max-slot% players connected",
"application-settings": { "application-settings": {
"applicationID": "601875975533232158", "applicationID": "601875975533232158",
"large-image-name": "discord_logo", "large-image-name": "discord_logo",
@ -35,22 +37,27 @@ Config file :
"advanced-status-custom": { "advanced-status-custom": {
"onJoinServer": { "onJoinServer": {
"enable": true, "enable": true,
"showState": true,
"message": "In game." "message": "In game."
}, },
"onQuitServer": { "onQuitServer": {
"enable": true, "enable": true,
"showState": false,
"message": "In mainmenu." "message": "In mainmenu."
}, },
"inPauseMenu": { "inPauseMenu": {
"enable": true, "enable": true,
"showState": true,
"message": "In pause menu" "message": "In pause menu"
}, },
"inMainMenu": { "inMainMenu": {
"enable": true, "enable": true,
"showState": false,
"message": "In mainmenu" "message": "In mainmenu"
}, },
"inInventory": { "inInventory": {
"enable": false, "enable": false,
"showState": true,
"message": "In inventory" "message": "In inventory"
} }
} }
@ -73,6 +80,14 @@ ___
"server-port": "25565", "server-port": "25565",
``` ```
Here you can define the IP address and port of your server if you want to use the variables ``%server-connected-player%`` and/or ``%server-max-slot%``. Here you can define the IP address and port of your server if you want to use the variables ``%server-connected-player%`` and/or ``%server-max-slot%``.
___
```json
"state": "%server-connected-player%/%server-max-slot% connected player",
```
This part is used to display the "state" of the game._(This is the third line of richpresence)_
![](https://i.imgur.com/coYDn1o.png)
___ ___
```json ```json
"application-settings": { "application-settings": {