приват + права
This commit is contained in:
parent
7d422e7e1d
commit
2e1aa7368d
16 changed files with 2618 additions and 55 deletions
12
config/serverconfigupdater-common.toml
Normal file
12
config/serverconfigupdater-common.toml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
["Version Configuration"]
|
||||
# Define a version here. On world load the mod will look up the serverconfig version and reset all files that specified up to the newest version.
|
||||
# Example: ["1=minecraft","2=forge"] will reset minecraft and forge config on first load, but will only reset forge if the world has been loaded before with only version 1 defined
|
||||
versions = [""]
|
||||
|
||||
["File Deleter"]
|
||||
# This is intended for deleting files for pack updates. This is a last resort! Replace with empty files instead when possible. The file will be deleted every launch if it exists! Specify the path to the file. Comma Separated List. Example: scripts/badscript.zs
|
||||
files = [""]
|
||||
# By default Folders are only deleted if they are empty. Set to true to change that.
|
||||
deleteFoldersWithContent = false
|
||||
|
||||
|
|
@ -10,5 +10,8 @@
|
|||
"toggle.rain": true,
|
||||
"toggle.day": true,
|
||||
"toggle.night": true
|
||||
},
|
||||
"ftbessentials": {
|
||||
"trash_can": true
|
||||
}
|
||||
}
|
||||
241
defaultconfigs/ftbessentials-server.snbt
Normal file
241
defaultconfigs/ftbessentials-server.snbt
Normal file
|
|
@ -0,0 +1,241 @@
|
|||
# Default config file that will be copied to world's serverconfig/ftbessentials.snbt location
|
||||
# Copy values you wish to override in here
|
||||
# Example:
|
||||
#
|
||||
# {
|
||||
# misc: {
|
||||
# enderchest: {
|
||||
# enabled: false
|
||||
# }
|
||||
# }
|
||||
# }
|
||||
|
||||
{
|
||||
# Admin commands for cheating and moderation
|
||||
admin: {
|
||||
# Allows admins to toggle flying status using a command, without having to use Creative Mode
|
||||
fly: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to toggle invincibility using a command, without having to use Creative Mode
|
||||
god: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to heal themselves using a command
|
||||
heal: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to view other users' inventories using a command
|
||||
invsee: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to restrict players from chatting by using a command to mute (or unmute) them
|
||||
mute: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
|
||||
# Miscellaneous features and utilities
|
||||
misc: {
|
||||
# Allows users to access their ender chest, as well as admins to manage other players' ender chests.
|
||||
enderchest: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows users to set a custom hat as their head item by using a command
|
||||
hat: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows users to kick themselves from the server, for example if they are stuck or desynced
|
||||
kickme: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows users to view player leaderboard stats.
|
||||
leaderboard: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows users to change their display name, as well as admins to change nicknames for other users
|
||||
nick: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows users to announce their recording or streaming status to the server by using commands
|
||||
rec: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Enables usage of a trash can inventory, which can be used to void unneeded items
|
||||
trashcan: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
|
||||
# Teleportation-related settings
|
||||
teleportation: {
|
||||
# Allows users to return to their previous location after teleporting (or dying)
|
||||
back: {
|
||||
# Cooldown between /back commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.back.cooldown
|
||||
# Default: 30
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 30
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Max size of the teleport history. This limits how many times you can use /back
|
||||
# You can override this with FTB Ranks using ftbessentials.back.max
|
||||
# Default: 10
|
||||
# Range: 0 ~ 2147483647
|
||||
max: 10
|
||||
|
||||
# Warm-up time before /back command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.back.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows users to set 'homes', which they can then freely teleport to by using /home afterwards
|
||||
home: {
|
||||
# Cooldown between /home commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.home.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Max amount of homes a user can have.
|
||||
# You can override this with FTB Ranks using ftbessentials.home.max
|
||||
# Default: 1
|
||||
# Range: 0 ~ 2147483647
|
||||
max: 1
|
||||
|
||||
# Warm-up time before /home command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.home.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows players to teleport to a random point in the Wilderness
|
||||
# Note: This currently does not respect Claimed Chunks yet!
|
||||
rtp: {
|
||||
# Cooldown between /rtp commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.rtp.cooldown
|
||||
# Default: 600
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 600
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# /rtp max distance from spawn point
|
||||
# Default: 100000
|
||||
# Range: 0 ~ 30000000
|
||||
max_distance: 100000
|
||||
|
||||
# Number of tries before /rtp gives up
|
||||
# Default: 100
|
||||
# Range: 1 ~ 1000
|
||||
max_tries: 100
|
||||
|
||||
# /rtp min distance from spawn point
|
||||
# Default: 1000
|
||||
# Range: 0 ~ 30000000
|
||||
min_distance: 1000
|
||||
|
||||
# Warm-up time before /rtp command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.rtp.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
spawn: {
|
||||
# Cooldown between /spawn commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.spawn.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Warm-up time before /spawn command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.spawn.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows players to create requests to teleport to other users on the server,
|
||||
# as well as requesting other players to teleport to them
|
||||
tpa: {
|
||||
# Cooldown between /tpa commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.tpa.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Warm-up time before /tpa command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.tpa.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows admins to teleport to the location a user was last seen at
|
||||
tpl: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows admins to teleport to dimension
|
||||
tpx: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to create 'warps', which are fixed points in the world that users may teleport to using /warp
|
||||
warp: {
|
||||
# Cooldown between /warp commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.warp.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Warm-up time before /warp command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.warp.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
232
defaultconfigs/ftbessentials.snbt
Normal file
232
defaultconfigs/ftbessentials.snbt
Normal file
|
|
@ -0,0 +1,232 @@
|
|||
# FTB Essentials config file
|
||||
# If you're a modpack maker, edit defaultconfigs/ftbessentials-server.snbt instead
|
||||
|
||||
{
|
||||
# Admin commands for cheating and moderation
|
||||
admin: {
|
||||
# Allows admins to toggle flying status using a command, without having to use Creative Mode
|
||||
fly: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to toggle invincibility using a command, without having to use Creative Mode
|
||||
god: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to heal themselves using a command
|
||||
heal: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to view other users' inventories using a command
|
||||
invsee: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows admins to restrict players from chatting by using a command to mute (or unmute) them
|
||||
mute: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
|
||||
# Miscellaneous features and utilities
|
||||
misc: {
|
||||
# Allows users to access their ender chest, as well as admins to manage other players' ender chests.
|
||||
enderchest: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows users to set a custom hat as their head item by using a command
|
||||
hat: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows users to kick themselves from the server, for example if they are stuck or desynced
|
||||
kickme: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows users to view player leaderboard stats.
|
||||
leaderboard: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
}
|
||||
|
||||
# Allows users to change their display name, as well as admins to change nicknames for other users
|
||||
nick: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows users to announce their recording or streaming status to the server by using commands
|
||||
rec: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Enables usage of a trash can inventory, which can be used to void unneeded items
|
||||
trashcan: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
}
|
||||
|
||||
# Teleportation-related settings
|
||||
teleportation: {
|
||||
# Allows users to return to their previous location after teleporting (or dying)
|
||||
back: {
|
||||
# Cooldown between /back commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.back.cooldown
|
||||
# Default: 30
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 30
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Max size of the teleport history. This limits how many times you can use /back
|
||||
# You can override this with FTB Ranks using ftbessentials.back.max
|
||||
# Default: 10
|
||||
# Range: 0 ~ 2147483647
|
||||
max: 10
|
||||
|
||||
# Warm-up time before /back command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.back.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows users to set 'homes', which they can then freely teleport to by using /home afterwards
|
||||
home: {
|
||||
# Cooldown between /home commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.home.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Max amount of homes a user can have.
|
||||
# You can override this with FTB Ranks using ftbessentials.home.max
|
||||
# Default: 1
|
||||
# Range: 0 ~ 2147483647
|
||||
max: 1
|
||||
|
||||
# Warm-up time before /home command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.home.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows players to teleport to a random point in the Wilderness
|
||||
# Note: This currently does not respect Claimed Chunks yet!
|
||||
rtp: {
|
||||
# Cooldown between /rtp commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.rtp.cooldown
|
||||
# Default: 600
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 600
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# /rtp max distance from spawn point
|
||||
# Default: 100000
|
||||
# Range: 0 ~ 30000000
|
||||
max_distance: 100000
|
||||
|
||||
# Number of tries before /rtp gives up
|
||||
# Default: 100
|
||||
# Range: 1 ~ 1000
|
||||
max_tries: 100
|
||||
|
||||
# /rtp min distance from spawn point
|
||||
# Default: 1000
|
||||
# Range: 0 ~ 30000000
|
||||
min_distance: 1000
|
||||
|
||||
# Warm-up time before /rtp command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.rtp.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
spawn: {
|
||||
# Cooldown between /spawn commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.spawn.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Warm-up time before /spawn command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.spawn.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows players to create requests to teleport to other users on the server,
|
||||
# as well as requesting other players to teleport to them
|
||||
tpa: {
|
||||
# Cooldown between /tpa commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.tpa.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Warm-up time before /tpa command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.tpa.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
|
||||
# Allows admins to teleport to the location a user was last seen at
|
||||
tpl: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows admins to teleport to dimension
|
||||
tpx: {
|
||||
# Default: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows admins to create 'warps', which are fixed points in the world that users may teleport to using /warp
|
||||
warp: {
|
||||
# Cooldown between /warp commands (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.warp.cooldown
|
||||
# Default: 10
|
||||
# Range: 0 ~ 604800
|
||||
cooldown: 10
|
||||
|
||||
# Default: true
|
||||
enabled: false
|
||||
|
||||
# Warm-up time before /warp command executes (in seconds)
|
||||
# You can override this with FTB Ranks using ftbessentials.warp.warmup
|
||||
# Default: 0
|
||||
# Range: 0 ~ 604800
|
||||
warmup: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
2103
defaultconfigs/ftbranks/README.txt
Normal file
2103
defaultconfigs/ftbranks/README.txt
Normal file
File diff suppressed because it is too large
Load diff
1
defaultconfigs/ftbranks/players.snbt
Normal file
1
defaultconfigs/ftbranks/players.snbt
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ }
|
||||
19
defaultconfigs/ftbranks/ranks.snbt
Normal file
19
defaultconfigs/ftbranks/ranks.snbt
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
member: {
|
||||
name: "Player"
|
||||
power: 1
|
||||
condition: "always_active"
|
||||
ftbranks.name_format: "<{name}>"
|
||||
}
|
||||
vip: {
|
||||
name: "VIP"
|
||||
power: 50
|
||||
ftbranks.name_format: "<&bVIP {name}&r>"
|
||||
}
|
||||
admin: {
|
||||
name: "Admin"
|
||||
power: 1000
|
||||
condition: "op"
|
||||
ftbranks.name_format: "<&cAdmin {name}&r>"
|
||||
}
|
||||
}
|
||||
|
|
@ -247,18 +247,6 @@
|
|||
spawnersHostile = false
|
||||
#When enabled, claimed chunk protection disables friendly mob spawners.
|
||||
spawnersFriendly = false
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning hostile mobs when they land (e.g. endermites). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitHostileSpawn = 1
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning non-hostile mobs when they land (e.g. chicken). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitFriendlySpawn = 1
|
||||
|
||||
[playerConfig.claims.protection.exceptionGroups]
|
||||
|
||||
|
|
|
|||
|
|
@ -247,18 +247,6 @@
|
|||
spawnersHostile = false
|
||||
#When enabled, claimed chunk protection disables friendly mob spawners.
|
||||
spawnersFriendly = false
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning hostile mobs when they land (e.g. endermites). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitHostileSpawn = 1
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning non-hostile mobs when they land (e.g. chicken). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitFriendlySpawn = 1
|
||||
|
||||
[playerConfig.claims.protection.exceptionGroups]
|
||||
|
||||
|
|
|
|||
|
|
@ -247,18 +247,6 @@
|
|||
spawnersHostile = false
|
||||
#When enabled, claimed chunk protection disables friendly mob spawners.
|
||||
spawnersFriendly = false
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning hostile mobs when they land (e.g. endermites). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitHostileSpawn = 1
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning non-hostile mobs when they land (e.g. chicken). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitFriendlySpawn = 1
|
||||
|
||||
[playerConfig.claims.protection.exceptionGroups]
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,12 @@
|
|||
#Range: 0 ~ 1024
|
||||
playerSubConfigLimit = 64
|
||||
#The permission system to use for everything that requires permission checks (e.g. permission_api, ftb_ranks, luck_perms, prometheus). Non-built-in permission systems can be registered through the API with an addon.
|
||||
permissionSystem = "prometheus"
|
||||
#The player party system to prefer and use for anything that can't support multiple systems (e.g. default, ftb_teams, argonauts, argonauts_guilds). Non-built-in party systems can be registered through the API with an addon.
|
||||
primaryPartySystem = "argonauts_guilds"
|
||||
permissionSystem = "ftb_ranks"
|
||||
#The player party system to prefer and use for anything that can't support multiple systems (e.g. default, ftb_teams, argonauts). Non-built-in party systems can be registered through the API with an addon.
|
||||
primaryPartySystem = "ftb_teams"
|
||||
#A list of options in the player config that individual players can reconfigure. If an option is in neither of the configurable option lists,
|
||||
#then the value in the default player config is used across the server. Check the default player config .toml file for the option names.
|
||||
playerConfigurablePlayerConfigOptions = ["claims.protectClaimedChunks", "claims.forceload.enabled", "claims.name", "claims.color", "claims.protection.fromParty", "claims.protection.fromAllyParties", "claims.protection.buttonsFromProjectiles", "claims.protection.targetsFromProjectiles", "claims.protection.platesFromPlayers", "claims.protection.platesFromMobs", "claims.protection.platesFromOther", "claims.protection.tripwireFromPlayers", "claims.protection.tripwireFromMobs", "claims.protection.tripwireFromOther", "claims.protection.cropTrample", "claims.protection.playerLightning", "claims.protection.fromFrostWalking", "claims.protection.entitiesFromPlayers", "claims.protection.entitiesFromMobs", "claims.protection.entitiesFromOther", "claims.protection.entitiesRedirect", "claims.protection.entitiesFromExplosions", "claims.protection.entitiesFromFire", "claims.protection.netherPortalsPlayers", "claims.protection.netherPortalsMobs", "claims.protection.netherPortalsOther", "claims.protection.fluidBarrier", "claims.protection.dispenserBarrier", "claims.protection.pistonBarrier", "claims.protection.itemTossPlayers", "claims.protection.itemTossMobs", "claims.protection.itemTossOther", "claims.protection.itemTossRedirect", "claims.protection.mobLoot", "claims.protection.playerDeathLoot", "claims.protection.itemPickupPlayers", "claims.protection.itemPickupMobs", "claims.protection.itemPickupRedirect", "claims.protection.xpPickup", "claims.protection.raids", "claims.protection.naturalSpawnHostile", "claims.protection.naturalSpawnFriendly", "claims.protection.spawnersHostile", "claims.protection.spawnersFriendly", "claims.protection.projectileHitHostileSpawn", "claims.protection.projectileHitFriendlySpawn", "parties.name", "parties.shareLocationWithParty", "parties.shareLocationWithMutualAllyParties", "parties.receiveLocationsFromParty", "parties.receiveLocationsFromMutualAllyParties", "claims.protection.exceptionGroups.block.interact.Controls", "claims.protection.exceptionGroups.block.interact.Doors", "claims.protection.exceptionGroups.block.interact.Chests", "claims.protection.exceptionGroups.block.interact.Barrels", "claims.protection.exceptionGroups.block.interact.Ender_Chests", "claims.protection.exceptionGroups.block.interact.Shulker_Boxes", "claims.protection.exceptionGroups.block.interact.Furnaces", "claims.protection.exceptionGroups.block.interact.Hoppers", "claims.protection.exceptionGroups.block.interact.Dispenser-like", "claims.protection.exceptionGroups.block.interact.Anvils", "claims.protection.exceptionGroups.block.interact.Beds", "claims.protection.exceptionGroups.block.interact.Beacons", "claims.protection.exceptionGroups.block.interact.Enchanting_Tables", "claims.protection.exceptionGroups.block.break.Crops", "claims.protection.exceptionGroups.entity.interact.Traders", "claims.protection.exceptionGroups.entity.handInteract.Item_Frames", "claims.protection.exceptionGroups.entity.interact.Armor_Stands", "claims.protection.exceptionGroups.entity.break.Livestock", "claims.protection.exceptionGroups.entity.blockAccess.Villagers", "claims.protection.exceptionGroups.entity.entityAccess.Zombies", "claims.protection.exceptionGroups.entity.droppedItemAccess.Villagers", "claims.protection.exceptionGroups.entity.droppedItemAccess.Piglins", "claims.protection.exceptionGroups.entity.droppedItemAccess.Foxes", "claims.protection.exceptionGroups.item.interact.Books", "claims.protection.exceptionGroups.entity.barrier.Ender_Pearls", "/*remove comment to enable*/claims.protection.exceptionGroups.entity.barrier.Players"]
|
||||
playerConfigurablePlayerConfigOptions = ["claims.protectClaimedChunks", "claims.forceload.enabled", "claims.name", "claims.color", "claims.protection.fromParty", "claims.protection.fromAllyParties", "claims.protection.buttonsFromProjectiles", "claims.protection.targetsFromProjectiles", "claims.protection.platesFromPlayers", "claims.protection.platesFromMobs", "claims.protection.platesFromOther", "claims.protection.tripwireFromPlayers", "claims.protection.tripwireFromMobs", "claims.protection.tripwireFromOther", "claims.protection.cropTrample", "claims.protection.playerLightning", "claims.protection.fromFrostWalking", "claims.protection.entitiesFromPlayers", "claims.protection.entitiesFromMobs", "claims.protection.entitiesFromOther", "claims.protection.entitiesRedirect", "claims.protection.entitiesFromExplosions", "claims.protection.entitiesFromFire", "claims.protection.netherPortalsPlayers", "claims.protection.netherPortalsMobs", "claims.protection.netherPortalsOther", "claims.protection.fluidBarrier", "claims.protection.dispenserBarrier", "claims.protection.pistonBarrier", "claims.protection.itemTossPlayers", "claims.protection.itemTossMobs", "claims.protection.itemTossOther", "claims.protection.itemTossRedirect", "claims.protection.mobLoot", "claims.protection.playerDeathLoot", "claims.protection.itemPickupPlayers", "claims.protection.itemPickupMobs", "claims.protection.itemPickupRedirect", "claims.protection.xpPickup", "claims.protection.raids", "claims.protection.naturalSpawnHostile", "claims.protection.naturalSpawnFriendly", "claims.protection.spawnersHostile", "claims.protection.spawnersFriendly", "parties.name", "parties.shareLocationWithParty", "parties.shareLocationWithMutualAllyParties", "parties.receiveLocationsFromParty", "parties.receiveLocationsFromMutualAllyParties", "claims.protection.exceptionGroups.block.interact.Controls", "claims.protection.exceptionGroups.block.interact.Doors", "claims.protection.exceptionGroups.block.interact.Chests", "claims.protection.exceptionGroups.block.interact.Barrels", "claims.protection.exceptionGroups.block.interact.Ender_Chests", "claims.protection.exceptionGroups.block.interact.Shulker_Boxes", "claims.protection.exceptionGroups.block.interact.Furnaces", "claims.protection.exceptionGroups.block.interact.Hoppers", "claims.protection.exceptionGroups.block.interact.Dispenser-like", "claims.protection.exceptionGroups.block.interact.Anvils", "claims.protection.exceptionGroups.block.interact.Beds", "claims.protection.exceptionGroups.block.interact.Beacons", "claims.protection.exceptionGroups.block.interact.Enchanting_Tables", "claims.protection.exceptionGroups.block.break.Crops", "claims.protection.exceptionGroups.entity.interact.Traders", "claims.protection.exceptionGroups.entity.handInteract.Item_Frames", "claims.protection.exceptionGroups.entity.interact.Armor_Stands", "claims.protection.exceptionGroups.entity.break.Livestock", "claims.protection.exceptionGroups.entity.blockAccess.Villagers", "claims.protection.exceptionGroups.entity.entityAccess.Zombies", "claims.protection.exceptionGroups.entity.droppedItemAccess.Villagers", "claims.protection.exceptionGroups.entity.droppedItemAccess.Piglins", "claims.protection.exceptionGroups.entity.droppedItemAccess.Foxes", "claims.protection.exceptionGroups.item.interact.Books", "claims.protection.exceptionGroups.entity.barrier.Ender_Pearls", "/*remove comment to enable*/claims.protection.exceptionGroups.entity.barrier.Players"]
|
||||
#A list of additional options in the player config that OPs can reconfigure for players.
|
||||
#This is meant for options that should be configured per player but not by the players.
|
||||
#If an option is in neither of the configurable option lists, then the value in the default player config is used across the server.
|
||||
|
|
@ -54,11 +54,11 @@
|
|||
#The maximum number of chunks that a player can claim. Additional claims can be configured in the player config.
|
||||
#This value can be overridden with a player permission.
|
||||
#Range: > 0
|
||||
maxPlayerClaims = 500
|
||||
maxPlayerClaims = 50
|
||||
#The maximum number of claimed chunks that a player can forceload. Additional forceloads can be configured in the player config.
|
||||
#This value can be overridden with a player permission.
|
||||
#Range: > 0
|
||||
maxPlayerClaimForceloads = 10
|
||||
maxPlayerClaimForceloads = 3
|
||||
#The permission that should override the default "maxPlayerClaims" value. Set it to an empty string to never check permissions. The used permission system can be configured with "permissionSystem".
|
||||
maxPlayerClaimsPermission = "xaero.pac_max_claims"
|
||||
#The permission that should override the default "maxPlayerClaimForceloads" value. Set it to an empty string to never check permissions.
|
||||
|
|
|
|||
|
|
@ -247,18 +247,6 @@
|
|||
spawnersHostile = false
|
||||
#When enabled, claimed chunk protection disables friendly mob spawners.
|
||||
spawnersFriendly = false
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning hostile mobs when they land (e.g. endermites). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitHostileSpawn = 1
|
||||
#When enabled, claimed chunk protection includes protection from projectiles spawning non-hostile mobs when they land (e.g. chicken). Might not work with projectiles from mods that don't implement this mod's API.
|
||||
#
|
||||
#1) Every - protected from all projectiles not owned by a player that has chunk access.
|
||||
#2) Not Party - all projectiles, except owned by a player in the same party as you.
|
||||
#3) Not Ally - all projectiles, except owned by a player in any party allied by yours.
|
||||
projectileHitFriendlySpawn = 1
|
||||
|
||||
[playerConfig.claims.protection.exceptionGroups]
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
BIN
mods/ftb-essentials-forge-2001.2.1.jar
Normal file
BIN
mods/ftb-essentials-forge-2001.2.1.jar
Normal file
Binary file not shown.
BIN
mods/ftb-ranks-forge-2001.1.3.jar
Normal file
BIN
mods/ftb-ranks-forge-2001.1.3.jar
Normal file
Binary file not shown.
BIN
mods/serverconfigupdater-4.0.2.jar
Normal file
BIN
mods/serverconfigupdater-4.0.2.jar
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue