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
Copy file name to clipboardExpand all lines: README.md
+2-290Lines changed: 2 additions & 290 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,294 +47,6 @@ Chat from all servers gets bridged with a discord channel
47
47
2. Install the [YepTwo](https://github.com/unilock/YepTwo) backend mod/plugin on each of your backend servers that you want to
48
48
receive advancements/deaths from
49
49
50
-
## Configuration
50
+
###Configuration
51
51
52
-
Default config generated on startup:
53
-
54
-
```toml
55
-
# Don't change this
56
-
config_version = "2.0"
57
-
58
-
# Comma separated list of server names to exclude from the bridge (defined under [servers] inside your velocity.toml)
59
-
# e.g., exclude_servers = ["lobby", "survival"]
60
-
exclude_servers = []
61
-
excluded_servers_receive_messages = false
62
-
63
-
# How often to ping all servers to check for online status (seconds)
64
-
# Excluded servers will not be pinged
65
-
# Use a value of 0 to disable
66
-
ping_interval = 30
67
-
68
-
# Server display names
69
-
# If a server is not found in this list, the server name (from velocity.toml) will be used instead
70
-
[server_names]
71
-
# lobby = "Lobby"
72
-
73
-
[discord]
74
-
# Bot token from https://discordapp.com/developers/applications/
75
-
# Not server overridable
76
-
token = "TOKEN"
77
-
# Default channel ID to send Minecraft chat messages to
78
-
channel = "000000000000000000"
79
-
80
-
# Show messages from bots in Minecraft chat
81
-
show_bot_messages = false
82
-
# Show clickable links for attachments in Minecraft chat
83
-
show_attachments_ingame = true
84
-
85
-
# Activity text of the bot to show in Discord
86
-
# Placeholders available: {amount}
87
-
# Can be disabled with "" or false
88
-
# Not server overridable
89
-
activity_text = "with {amount} players online"
90
-
91
-
# Enable mentioning Discord users from Minecraft chat
92
-
enable_mentions = true
93
-
# Enable @everyone and @here pings from Minecraft chat
94
-
enable_everyone_and_here = false
95
-
96
-
# Interval (in minutes) for updating the channel topic
97
-
# Use a value of 0 to disable
98
-
# Not server overridable
99
-
update_channel_topic_interval = 0
100
-
101
-
# Channel topic config (if enabled)
102
-
[discord.channel_topic]
103
-
# Template for the channel topic
104
-
# Placeholders available:
105
-
# {players} - Total number of players online
106
-
# {player_list} - List of players (format is defined below)
107
-
# {servers} - Number of servers
108
-
# {server_list} - List of server names
109
-
# {hostname} - Server hostname
110
-
# {port} - Server port
111
-
# {motd} - Message of the Day (MOTD)
112
-
# {query_port} - Query port
113
-
# {max_players} - Maximum number of players
114
-
# {plugins} - Number of plugins
115
-
# {plugin_list} - List of plugin names
116
-
# {version} - Server version
117
-
# {software} - Software name
118
-
# {average_ping} - Average ping of all players
119
-
# {uptime} - Server uptime in hours and minutes
120
-
# {server[SERVERNAME]} - Dynamic placeholder for each server's name and status (e.g., {server[MyServer]}, {server[AnotherServer]}, {server[Lobby]}, etc.)
121
-
format = """{players}/{max_players}
122
-
{player_list}
123
-
{hostname}:{port}
124
-
Uptime: {uptime}"""
125
-
126
-
# Template for server[SERVERNAME] placeholder in the channel topic
0 commit comments