fix: defaultconfigs

This commit is contained in:
Xikaro 2025-10-23 13:20:09 +05:00
parent 535b19d4f9
commit 98365b1ba8
4 changed files with 1416 additions and 425 deletions

View file

@ -4,6 +4,18 @@
{ {
# Admin commands for cheating and moderation # Admin commands for cheating and moderation
admin: { admin: {
# Allows admins to extinguish themselves or a player using a command
extinguish: {
# Default: true
enabled: true
}
# Allows admins to fully feed themselves or a player using a command
feed: {
# Default: true
enabled: true
}
# Allows admins to toggle flying status using a command, without having to use Creative Mode # Allows admins to toggle flying status using a command, without having to use Creative Mode
fly: { fly: {
# Default: true # Default: true
@ -16,7 +28,7 @@
enabled: true enabled: true
} }
# Allows admins to heal themselves using a command # Allows admins to fully heal (health, food, fire, potion effects) themselves or a player using a command
heal: { heal: {
# Default: true # Default: true
enabled: true enabled: true
@ -28,15 +40,45 @@
enabled: true enabled: true
} }
# Allows admins to configure kits of items that can be given to players.
kit: {
# Default: true
enabled: true
}
# Allows admins to restrict players from chatting by using a command to mute (or unmute) them # Allows admins to restrict players from chatting by using a command to mute (or unmute) them
mute: { mute: {
# Default: true # Default: true
enabled: true enabled: true
} }
# Allows admins to change walk speed for themselves or a player
speed: {
# Default: true
enabled: true
}
# Allows admins to change the location of offline players.
tp_offline: {
# Default: true
enabled: true
}
} }
# Miscellaneous features and utilities # Miscellaneous features and utilities
misc: { misc: {
# Allows users to access an Anvil GUI without needing an Anvil.
anvil: {
# Default: true
enabled: true
}
# Allows users to access a Crafting Table GUI without needing a Crafting Table.
crafting: {
# Default: true
enabled: true
}
# Allows users to access their ender chest, as well as admins to manage other players' ender chests. # Allows users to access their ender chest, as well as admins to manage other players' ender chests.
enderchest: { enderchest: {
# Default: true # Default: true
@ -46,7 +88,7 @@
# Allows users to set a custom hat as their head item by using a command # Allows users to set a custom hat as their head item by using a command
hat: { hat: {
# Default: true # Default: true
enabled: false enabled: true
} }
# Allows users to kick themselves from the server, for example if they are stuck or desynced # Allows users to kick themselves from the server, for example if they are stuck or desynced
@ -55,12 +97,18 @@
enabled: false enabled: false
} }
# Allows users to view player leaderboard stats. # Allows users to view leaderboard stats about everyone on the server.
leaderboard: { leaderboard: {
# Default: true # Default: true
enabled: true enabled: true
} }
# Allows users to list nearby players, sorted by distance
near: {
# Default: true
enabled: true
}
# Allows users to change their display name, as well as admins to change nicknames for other users # Allows users to change their display name, as well as admins to change nicknames for other users
nick: { nick: {
# Default: true # Default: true
@ -73,6 +121,18 @@
enabled: false enabled: false
} }
# Allows users to access a Smithing Table GUI without needing a Smithing Table.
smithing: {
# Default: true
enabled: true
}
# Allows users to access a Stonecutter GUI without needing a Stonecutter.
stonecutter: {
# Default: true
enabled: true
}
# Enables usage of a trash can inventory, which can be used to void unneeded items # Enables usage of a trash can inventory, which can be used to void unneeded items
trashcan: { trashcan: {
# Default: true # Default: true
@ -99,6 +159,10 @@
# Range: 0 ~ 2147483647 # Range: 0 ~ 2147483647
max: 10 max: 10
# Should be the /back command only be used for returning to the last death point?
# Default: false
only_on_death: false
# Warm-up time before /back command executes (in seconds) # Warm-up time before /back command executes (in seconds)
# You can override this with FTB Ranks using ftbessentials.back.warmup # You can override this with FTB Ranks using ftbessentials.back.warmup
# Default: 0 # Default: 0
@ -130,6 +194,12 @@
warmup: 0 warmup: 0
} }
# Allows admins to jump (teleport) to the focused block
jump: {
# Default: true
enabled: true
}
# Allows players to teleport to a random point in the Wilderness # Allows players to teleport to a random point in the Wilderness
# Note: This currently does not respect Claimed Chunks yet! # Note: This currently does not respect Claimed Chunks yet!
rtp: { rtp: {
@ -139,11 +209,21 @@
# Range: 0 ~ 604800 # Range: 0 ~ 604800
cooldown: 600 cooldown: 600
# Blacklisted dimension ID's for /rtp (player *must not* be in any of these dimensions)
# Wildcarded dimensions (e.g. 'somemod:*') are supported
# Default: ["minecraft:the_end"]
dimension_blacklist: ["minecraft:the_end"]
# Whitelisted dimension ID's for /rtp (if non-empty, player *must* be in one of these dimensions)
# Wildcarded dimensions (e.g. 'somemod:*') are supported
# Default: []
dimension_whitelist: [ ]
# Default: true # Default: true
enabled: false enabled: false
# /rtp max distance from spawn point # /rtp max distance from spawn point
# Default: 100000 # Default: 25000
# Range: 0 ~ 30000000 # Range: 0 ~ 30000000
max_distance: 100000 max_distance: 100000
@ -153,7 +233,7 @@
max_tries: 100 max_tries: 100
# /rtp min distance from spawn point # /rtp min distance from spawn point
# Default: 1000 # Default: 500
# Range: 0 ~ 30000000 # Range: 0 ~ 30000000
min_distance: 1000 min_distance: 1000
@ -208,7 +288,7 @@
# Allows admins to teleport to dimension # Allows admins to teleport to dimension
tpx: { tpx: {
# Default: true # Default: true
enabled: false enabled: true
} }
# Allows admins to create 'warps', which are fixed points in the world that users may teleport to using /warp # Allows admins to create 'warps', which are fixed points in the world that users may teleport to using /warp

File diff suppressed because it is too large Load diff

View file

@ -9,10 +9,10 @@
"defaultconfigs", "defaultconfigs",
"kubejs", "kubejs",
"tacz", "tacz",
"!kubejs/probe/**" "!kubejs/probe/**",
"!kubejs/assets/**"
], ],
"server_overrides": [ "server_overrides": [
"!kubejs/assets",
"forge-auto-install.txt", "forge-auto-install.txt",
"generate_auto_installation_file.bat", "generate_auto_installation_file.bat",
"minecraft_server.jar", "minecraft_server.jar",
@ -21,9 +21,11 @@
"server-icon.png", "server-icon.png",
"start_server.bat", "start_server.bat",
"README.md" "README.md"
], ],
"client_overrides": [ "client_overrides": [
"resourcepacks" "resourcepacks",
"kubejs/assets/**"
], ],
"projects": { "projects": {
"ambient-environment": { "ambient-environment": {