Configs generated, added some mods including Iron's spellbook. NOTE: need sound whitelist for player sounds

Added
cursery, sneaky curses: adds new curses, causes curses to have a chance to affix when enchanting regardless of its presence in the description, obfuscates curses from tooltip and instead makes the item's name red.
curse of pandora: adds curios and cursed curios
ancientcurses: adds altars where you can earn jewels (gems) to affix to an amulet for bonuses (future curio wip)
Sound attracts mobs, proximity chat, and simple radios for bequiet systems
Iron's spells & spellbook integrates with some of our mods and adds mobs and magic
tenseambiance: dynamic biome based creepy ambient noise
This commit is contained in:
2025-05-27 09:09:23 -05:00
parent d0d125303a
commit a4741227b9
60 changed files with 6378 additions and 1030 deletions

View File

@ -0,0 +1,14 @@
# Simple Voice Chat translations
# This file contains all server-side translations for the Simple Voice Chat mod
# The message a player gets when kicked for not having voice chat installed and the server has force_voicechat enabled
# The first parameter is the mod/plugin name and the second parameter is the mod/plugin version
force_voicechat_kick_message=You need %s %s to play on this server
# The message a player gets when joining a server with an incompatible voice chat version
# The first parameter is the mod/plugin version and the second parameter is the mod/plugin name
voicechat_not_compatible_message=Your voice chat client version is not compatible with the server-side version.\\nPlease install version %s of %s.
# The message a player gets when trying to execute a command that requires the voice chat mod installed on the client side.
# The first parameter is the mod/plugin name
voicechat_needed_for_command_message=You need to have %s installed on your client to use this command
# The message a player gets when trying to execute a command that can only be executed as a player
player_command_message=This command can only be executed as a player

View File

@ -0,0 +1,90 @@
# Simple Voice Chat client config v1.20.1-2.5.30
# If the voice chat onboarding process has been finished
onboarding_finished=false
# The voice chat volume
voice_chat_volume=1.0
# The threshold for the voice activation method (in dB)
voice_activation_threshold=-50.0
# The voice chat microphone amplification
microphone_amplification=1.0
# The microphone activation method
# Valid values are 'PTT' and 'VOICE'
microphone_activation_type=PTT
# The size of the audio output buffer (in packets)
# Higher values mean a higher latency but less crackling
# Increase this value if you have an unstable internet connection
output_buffer_size=5
# The maximum number of audio packets that should be held back if a packet arrives out of order or is dropped
# This prevents audio packets that are only slightly out of order from being discarded
# Set this to 0 to disable
audio_packet_threshold=3
# The time it takes for the microphone to deactivate when using voice activation
# A value of 1 means 20 milliseconds, 2=40 ms, 3=60 ms, and so on
voice_deactivation_delay=25
# The microphone used by the voice chat
# Leave blank to use the default device
microphone=
# The speaker used by the voice chat
# Leave blank to use the default device
speaker=
# If the microphone is muted (only relevant for the voice activation method)
muted=true
# If the voice chat is disabled (both sound and microphone off)
disabled=false
# If the voice chat HUD, group chat HUD, and other in-game icons should be hidden
hide_icons=false
# If the group chat HUD should be visible
show_group_hud=true
# If your own player icon should be displayed in the group chat HUD when you are in a group
show_own_group_icon=true
# The scale of the player icons in the group chat HUD
group_hud_icon_scale=2.0
# The orientation of the player icons in the group chat HUD
# Valid values are 'VERTICAL' and 'HORIZONTAL'
group_player_icon_orientation=VERTICAL
# The X position of the player icons in the group chat HUD
# Negative values mean anchoring to the right instead
group_player_icon_pos_x=4
# The Y position of the player icons in the group chat HUD
# Negative values mean anchoring to the bottom instead
group_player_icon_pos_y=4
# The X position of the icons in the voice chat HUD
# Negative values mean anchoring to the right instead
hud_icon_pos_x=16
# The Y position of the icons in the voice chat HUD
# Negative values mean anchoring to the bottom instead
hud_icon_pos_y=-16
# The scale of the icons in the voice chat HUD, such as microphone or connection status
hud_icon_scale=1.0
# The location where recordings should be saved
# Leave blank to use the default location
recording_destination=
# The quality of the recorded voice chat audio
# 0 = highest quality, 9 = lowest quality
recording_quality=2
# If noise suppression should be enabled
denoiser=false
# If the voice chat should work in singleplayer or in worlds shared over LAN
run_local_server=true
# Whether to use the Java implementation of microphone capture instead of OpenAL
java_microphone_implementation=false
# If the mod should check for microphone permissions (macOS only)
macos_check_microphone_permission=true
# If fake players should have the disconnected icon above their head
show_fake_players_disconnected=false
# If the volume adjustment interface should also display offline players
offline_player_volume_adjustment=false
# The 3D audio type
# Valid values are 'NORMAL', 'REDUCED', and 'OFF'
audio_type=NORMAL
# If the mod should load native libraries on the client
# When disabled, the Java Opus implementation will be used instead, the denoiser won't be available, and you won't be able to record the voice chat audio
use_natives=true
# How listening to other players should work when using freecam mods
# Valid values are 'CAMERA' and 'PLAYER'
# CAMERA: You will hear the voice chat around your camera. Whether you will still be able to hear the voice chat when the camera is far away from your character depends on the voice chat broadcast range of the server
# PLAYER: You will hear the voice chat around your character no matter where your camera is
freecam_mode=CAMERA
# If enabled, you will be automatically muted when joining a world
mute_on_join=false

View File

@ -0,0 +1,53 @@
# Simple Voice Chat server config v1.20.1-2.5.30
# The port number to use for the voice chat communication.
# Audio packets are always transmitted via the UDP protocol on the port number
# specified here, independently of other networking used for the game server.
# Set this to '-1' to use the same port number that is used by the Minecraft server.
# However, it is strongly recommended NOT to use the same port number because UDP on
# it is also used by default for the server query. Doing so may crash the server!
port=24454
# The server IP address to bind the voice chat to
# Leave blank to use the 'server-ip' property from the 'server.properties' config file
# To bind to the wildcard IP address, use '*'
bind_address=
# The distance to which the voice can be heard
max_voice_distance=48.0
# The multiplier of the voice distance when crouching
crouch_distance_multiplier=1.0
# The multiplier of the voice distance when whispering
whisper_distance_multiplier=0.5
# The Opus codec
# Valid values are 'VOIP', 'AUDIO', and 'RESTRICTED_LOWDELAY'
codec=VOIP
# The maximum size that audio packets are allowed to have (in bytes)
# Set this to a lower value if audio packets don't arrive
mtu_size=1024
# The frequency at which keep-alive packets are sent (in milliseconds)
# Setting this to a higher value may result in timeouts
keep_alive=1000
# If group chats are allowed
enable_groups=true
# The hostname that clients should use to connect to the voice chat
# This may also include a port, e.g. 'example.com:24454'
# Do NOT change this value if you don't know what you're doing
voice_host=
# If players are allowed to record the voice chat audio
allow_recording=true
# If spectators are allowed to talk to other players
spectator_interaction=false
# If spectators can talk to players they are spectating
spectator_player_possession=false
# If players without the voice chat mod should be kicked from the server
force_voice_chat=false
# The amount of time the server should wait to check if a player has the mod installed (in milliseconds)
# Only relevant when 'force_voice_chat' is set to 'true'
login_timeout=10000
# The range in which the voice chat should broadcast audio
# A value less than 0 means 'max_voice_distance'
broadcast_range=-1.0
# If the voice chat server should reply to external pings
allow_pings=true
# If the mod should load native libraries on dedicated servers
# This is mostly relevant for voice chat addons
use_natives=true

View File

@ -0,0 +1,2 @@
# Simple Voice Chat volume config