1 | # Simple Voice Chat server config v1.21.1-2.5.26
|
2 |
|
3 | # The port number to use for the voice chat communication.
|
4 | # Audio packets are always transmitted via the UDP protocol on the port number
|
5 | # specified here, independently of other networking used for the game server.
|
6 | # Set this to '-1' to use the same port number that is used by the Minecraft server.
|
7 | # However, it is strongly recommended NOT to use the same port number because UDP on
|
8 | # it is also used by default for the server query. Doing so may crash the server!
|
9 | port=24454
|
10 | # The server IP address to bind the voice chat to
|
11 | # Leave blank to use the 'server-ip' property from the 'server.properties' config file
|
12 | # To bind to the wildcard IP address, use '*'
|
13 | bind_address=
|
14 | # The distance to which the voice can be heard
|
15 | max_voice_distance=256.0
|
16 | # The multiplier of the voice distance when crouching
|
17 | crouch_distance_multiplier=0.5
|
18 | # The multiplier of the voice distance when whispering
|
19 | whisper_distance_multiplier=0.4
|
20 | # The Opus codec
|
21 | # Valid values are 'VOIP', 'AUDIO', and 'RESTRICTED_LOWDELAY'
|
22 | codec=VOIP
|
23 | # The maximum size that audio packets are allowed to have (in bytes)
|
24 | # Set this to a lower value if audio packets don't arrive
|
25 | mtu_size=1024
|
26 | # The frequency at which keep-alive packets are sent (in milliseconds)
|
27 | # Setting this to a higher value may result in timeouts
|
28 | keep_alive=1000
|
29 | # If group chats are allowed
|
30 | enable_groups=true
|
31 | # The hostname that clients should use to connect to the voice chat
|
32 | # This may also include a port, e.g. 'example.com:24454'
|
33 | # Do NOT change this value if you don't know what you're doing
|
34 | voice_host=
|
35 | # If players are allowed to record the voice chat audio
|
36 | allow_recording=true
|
37 | # If spectators are allowed to talk to other players
|
38 | spectator_interaction=true
|
39 | # If spectators can talk to players they are spectating
|
40 | spectator_player_possession=true
|
41 | # If players without the voice chat mod should be kicked from the server
|
42 | force_voice_chat=true
|
43 | # The amount of time the server should wait to check if a player has the mod installed (in milliseconds)
|
44 | # Only relevant when 'force_voice_chat' is set to 'true'
|
45 | login_timeout=10000
|
46 | # The range in which the voice chat should broadcast audio
|
47 | # A value less than 0 means 'max_voice_distance'
|
48 | broadcast_range=-1.0
|
49 | # If the voice chat server should reply to external pings
|
50 | allow_pings=true
|