This commit is contained in:
SpeeeDCraft 2023-11-20 12:17:11 +07:00
commit 8f9e4bed3b
19 changed files with 3090 additions and 470 deletions

View file

@ -1,7 +1,46 @@
# Changelog
## [0.0.5] - 2023-11-17
## [0.0.6] - 2023-11-20
### Fixes
- Теперь используется последний фордж 47.2.6 для запуска сборки.
- Исправлены рецепты связанные с тфк листами металла, теперь все они используют GT вариант пластин.
- Исправлен баг, когда каменные инстурменты копали быстрей металлических. Также исправлены некоторые проблемы с прочностью инструментов.
- При первом запуске игры, отображается пояснительный текст об пароле, потому что это пугало некоторых пользователей.
- Множественные изменения начальных рецептов GT.
- Частично добавлены стартовые квесты для TFC.
- Из-за смены мода на команды, исправлен баг, когда вас выкидывало из команды на сервере.
- Добавлен рецепт Mortar в центрифуге.
- Исправлен крафт Jacks.
- Исправлен металл у касситерита.
- Добавлен металл чалкопириту.
- Удалены бесполезные кнопки в меню паузы.
- Исправлен mmc пакет.
### Update mods
- AmbientSounds_FORGE 5.3.2 -> 5.3.4
- Placebo 8.5.6 -> 8.5.8
- TFCAstikorCarts 1.1.7 -> 1.1.7.1
- Kubejs 2001.6.3-build.83 -> 2001.6.4-build.95
- PuzzlesLib 8.1.8 -> 8.1.9
- Sophisticatedbackpacks 3.18.66.941 -> 3.18.68.952
- Sophisticatedcore 0.5.105.485 -> 0.5.107.496
- terrafirmagreg 0.0.3 -> 0.0.5
### New mods
- inventory-sorter
- InventorySorter
- FTBQuests
- FTBLibrary
- FTBRanks
- FTBTeams
- Item filters
- MoreRed
- AdAstra
- ComputerCraft
- Macaw's Mods for TerraFirmaCraft
- ToolBelt
- TerraFirmaShips
- Small Ships
- Defaultoptions
### Removed mods
- Heracles
- Prometheus
## [0.0.5] - 2023-11-17
### Fixes

View 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

View file

@ -10,5 +10,8 @@
"toggle.rain": true,
"toggle.day": true,
"toggle.night": true
},
"ftbessentials": {
"trash_can": true
}
}

View 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
}
}
}

View 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
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1 @@
{ }

View 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>"
}
}

View file

@ -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]

View file

@ -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]

View file

@ -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]

View file

@ -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.

View file

@ -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]

View file

@ -3,7 +3,7 @@
"version": "1.20.1",
"modLoaders": [
{
"id": "forge-47.1.3",
"id": "forge-47.2.6",
"primary": true
}
]
@ -15,138 +15,13 @@
"author": "Exception, Xikaro",
"files": [
{
"projectID": 419699,
"fileID": 4663010,
"projectID": 302973,
"fileID": 4875028,
"required": true
},
{
"projectID": 306770,
"fileID": 4636277,
"required": true
},
{
"projectID": 416294,
"fileID": 4847655,
"required": true
},
{
"projectID": 237307,
"fileID": 4600191,
"required": true
},
{
"projectID": 299540,
"fileID": 4711441,
"required": true
},
{
"projectID": 475117,
"fileID": 4711435,
"required": true
},
{
"projectID": 570073,
"fileID": 4851864,
"required": true
},
{
"projectID": 282001,
"fileID": 4870180,
"required": true
},
{
"projectID": 232131,
"fileID": 4635878,
"required": true
},
{
"projectID": 297038,
"fileID": 4819672,
"required": true
},
{
"projectID": 570630,
"fileID": 4771655,
"required": true
},
{
"projectID": 633823,
"fileID": 4875432,
"required": true
},
{
"projectID": 223794,
"fileID": 4857895,
"required": true
},
{
"projectID": 60089,
"fileID": 4581240,
"required": true
},
{
"projectID": 459929,
"fileID": 4854662,
"required": true
},
{
"projectID": 435044,
"fileID": 4596768,
"required": true
},
{
"projectID": 328085,
"fileID": 4835191,
"required": true
},
{
"projectID": 881248,
"fileID": 4874233,
"required": true
},
{
"projectID": 551894,
"fileID": 4688940,
"required": true
},
{
"projectID": 908741,
"fileID": 4862491,
"required": true
},
{
"projectID": 908983,
"fileID": 4865171,
"required": true
},
{
"projectID": 240633,
"fileID": 4655091,
"required": true
},
{
"projectID": 551736,
"fileID": 4731947,
"required": true
},
{
"projectID": 326652,
"fileID": 4795348,
"required": true
},
{
"projectID": 308240,
"fileID": 4820041,
"required": true
},
{
"projectID": 310111,
"fileID": 4834408,
"required": true
},
{
"projectID": 511770,
"fileID": 4606615,
"projectID": 495693,
"fileID": 4870168,
"required": true
},
{
@ -154,201 +29,16 @@
"fileID": 4812568,
"required": true
},
{
"projectID": 908983,
"fileID": 4865171,
"required": true
},
{
"projectID": 618298,
"fileID": 4882572,
"required": true
},
{
"projectID": 317780,
"fileID": 4812594,
"required": true
},
{
"projectID": 254284,
"fileID": 4878223,
"required": true
},
{
"projectID": 823106,
"fileID": 4631831,
"required": true
},
{
"projectID": 288885,
"fileID": 4711423,
"required": true
},
{
"projectID": 844019,
"fileID": 4877639,
"required": true
},
{
"projectID": 357540,
"fileID": 4699629,
"required": true
},
{
"projectID": 513402,
"fileID": 4882807,
"required": true
},
{
"projectID": 410295,
"fileID": 4583492,
"required": true
},
{
"projectID": 312664,
"fileID": 4745380,
"required": true
},
{
"projectID": 272335,
"fileID": 4825638,
"required": true
},
{
"projectID": 367706,
"fileID": 4776833,
"required": true
},
{
"projectID": 634062,
"fileID": 4610474,
"required": true
},
{
"projectID": 309927,
"fileID": 4834490,
"required": true
},
{
"projectID": 351441,
"fileID": 4613538,
"required": true
},
{
"projectID": 348521,
"fileID": 4633444,
"required": true
},
{
"projectID": 251407,
"fileID": 4751740,
"required": true
},
{
"projectID": 927874,
"fileID": 4850914,
"required": true
},
{
"projectID": 450659,
"fileID": 4645815,
"required": true
},
{
"projectID": 316582,
"fileID": 4678972,
"required": true
},
{
"projectID": 404465,
"fileID": 4864329,
"required": true
},
{
"projectID": 283644,
"fileID": 4879089,
"required": true
},
{
"projectID": 268387,
"fileID": 4825810,
"required": true
},
{
"projectID": 257814,
"fileID": 4874915,
"required": true
},
{
"projectID": 521393,
"fileID": 4837449,
"required": true
},
{
"projectID": 324717,
"fileID": 4801177,
"required": true
},
{
"projectID": 916493,
"fileID": 4797195,
"required": true
},
{
"projectID": 495476,
"fileID": 4882383,
"required": true
},
{
"projectID": 583345,
"fileID": 4848425,
"required": true
},
{
"projectID": 270441,
"fileID": 4578892,
"required": true
},
{
"projectID": 302973,
"fileID": 4875028,
"required": true
},
{
"projectID": 704113,
"fileID": 4831434,
"required": true
},
{
"projectID": 714059,
"fileID": 4683092,
"required": true
},
{
"projectID": 289412,
"fileID": 4872462,
"required": true
},
{
"projectID": 890405,
"fileID": 4863475,
"required": true
},
{
"projectID": 635042,
"fileID": 4774342,
"required": true
},
{
"projectID": 422301,
"fileID": 4882589,
"required": true
},
{
"projectID": 790626,
"fileID": 4862982,
"required": true
},
{
"projectID": 260262,
"fileID": 4581167,
"required": true
},
{
"projectID": 448233,
"fileID": 4763645,
@ -360,38 +50,53 @@
"required": true
},
{
"projectID": 581495,
"fileID": 4767500,
"projectID": 890405,
"fileID": 4863475,
"required": true
},
{
"projectID": 286924,
"fileID": 4801419,
"projectID": 316582,
"fileID": 4678972,
"required": true
},
{
"projectID": 531761,
"fileID": 4757228,
"projectID": 513402,
"fileID": 4883048,
"required": true
},
{
"projectID": 429235,
"fileID": 4810975,
"projectID": 435044,
"fileID": 4596768,
"required": true
},
{
"projectID": 636608,
"fileID": 4784626,
"projectID": 927874,
"fileID": 4850914,
"required": true
},
{
"projectID": 433760,
"fileID": 4573913,
"projectID": 282001,
"fileID": 4870180,
"required": true
},
{
"projectID": 387638,
"fileID": 4691333,
"projectID": 254284,
"fileID": 4878223,
"required": true
},
{
"projectID": 790626,
"fileID": 4862982,
"required": true
},
{
"projectID": 551736,
"fileID": 4731947,
"required": true
},
{
"projectID": 308240,
"fileID": 4820041,
"required": true
},
{
@ -400,8 +105,13 @@
"required": true
},
{
"projectID": 688231,
"fileID": 4836196,
"projectID": 511770,
"fileID": 4606615,
"required": true
},
{
"projectID": 429235,
"fileID": 4810975,
"required": true
},
{
@ -410,8 +120,173 @@
"required": true
},
{
"projectID": 495693,
"fileID": 4870168,
"projectID": 633823,
"fileID": 4875432,
"required": true
},
{
"projectID": 410811,
"fileID": 4791525,
"required": true
},
{
"projectID": 310111,
"fileID": 4834408,
"required": true
},
{
"projectID": 908741,
"fileID": 4862491,
"required": true
},
{
"projectID": 916493,
"fileID": 4797195,
"required": true
},
{
"projectID": 635042,
"fileID": 4774342,
"required": true
},
{
"projectID": 237307,
"fileID": 4600191,
"required": true
},
{
"projectID": 257814,
"fileID": 4874915,
"required": true
},
{
"projectID": 268387,
"fileID": 4825810,
"required": true
},
{
"projectID": 459929,
"fileID": 4854662,
"required": true
},
{
"projectID": 404465,
"fileID": 4864329,
"required": true
},
{
"projectID": 270441,
"fileID": 4578892,
"required": true
},
{
"projectID": 450659,
"fileID": 4645815,
"required": true
},
{
"projectID": 328085,
"fileID": 4835191,
"required": true
},
{
"projectID": 367706,
"fileID": 4776833,
"required": true
},
{
"projectID": 475117,
"fileID": 4711435,
"required": true
},
{
"projectID": 289412,
"fileID": 4872462,
"required": true
},
{
"projectID": 583345,
"fileID": 4848425,
"required": true
},
{
"projectID": 570073,
"fileID": 4851864,
"required": true
},
{
"projectID": 286924,
"fileID": 4801419,
"required": true
},
{
"projectID": 324717,
"fileID": 4801177,
"required": true
},
{
"projectID": 688231,
"fileID": 4836196,
"required": true
},
{
"projectID": 844019,
"fileID": 4877639,
"required": true
},
{
"projectID": 521393,
"fileID": 4837449,
"required": true
},
{
"projectID": 636608,
"fileID": 4784626,
"required": true
},
{
"projectID": 387638,
"fileID": 4691333,
"required": true
},
{
"projectID": 704113,
"fileID": 4831434,
"required": true
},
{
"projectID": 272335,
"fileID": 4825638,
"required": true
},
{
"projectID": 326652,
"fileID": 4795348,
"required": true
},
{
"projectID": 60089,
"fileID": 4581240,
"required": true
},
{
"projectID": 433760,
"fileID": 4573913,
"required": true
},
{
"projectID": 251407,
"fileID": 4751740,
"required": true
},
{
"projectID": 410295,
"fileID": 4583492,
"required": true
},
{
"projectID": 357540,
"fileID": 4699629,
"required": true
},
{
@ -419,10 +294,150 @@
"fileID": 4838266,
"required": true
},
{
"projectID": 288885,
"fileID": 4711423,
"required": true
},
{
"projectID": 283644,
"fileID": 4879089,
"required": true
},
{
"projectID": 422301,
"fileID": 4882589,
"required": true
},
{
"projectID": 531761,
"fileID": 4757228,
"required": true
},
{
"projectID": 240633,
"fileID": 4655091,
"required": true
},
{
"projectID": 714059,
"fileID": 4683092,
"required": true
},
{
"projectID": 312664,
"fileID": 4745380,
"required": true
},
{
"projectID": 223794,
"fileID": 4857895,
"required": true
},
{
"projectID": 314905,
"fileID": 4596742,
"required": true
},
{
"projectID": 309927,
"fileID": 4834490,
"required": true
},
{
"projectID": 581495,
"fileID": 4767500,
"required": true
},
{
"projectID": 881248,
"fileID": 4874233,
"required": true
},
{
"projectID": 306770,
"fileID": 4636277,
"required": true
},
{
"projectID": 634062,
"fileID": 4610474,
"required": true
},
{
"projectID": 551894,
"fileID": 4688940,
"required": true
},
{
"projectID": 419699,
"fileID": 4663010,
"required": true
},
{
"projectID": 823106,
"fileID": 4631831,
"required": true
},
{
"projectID": 232131,
"fileID": 4635878,
"required": true
},
{
"projectID": 416294,
"fileID": 4847655,
"required": true
},
{
"projectID": 260262,
"fileID": 4581167,
"required": true
},
{
"projectID": 570630,
"fileID": 4771655,
"required": true
},
{
"projectID": 297038,
"fileID": 4819672,
"required": true
},
{
"projectID": 365281,
"fileID": 4612683,
"required": true
},
{
"projectID": 317780,
"fileID": 4812594,
"required": true
},
{
"projectID": 351441,
"fileID": 4613538,
"required": true
},
{
"projectID": 299540,
"fileID": 4711441,
"required": true
},
{
"projectID": 401648,
"fileID": 4863626,
"required": true
},
{
"projectID": 348521,
"fileID": 4633444,
"required": true
},
{
"projectID": 495476,
"fileID": 4882383,
"required": true
}
],
"overrides": "overrides"

File diff suppressed because one or more lines are too long

View file

@ -1,84 +1,87 @@
<ul>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/architectury-api">Architectury API (Fabric/Forge) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/patchouli">Patchouli (by Vazkii)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/rhino">Rhino (by LatvianModder)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cosmetic-armor-reworked">Cosmetic Armor Reworked (by LainMI)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fastfurnace">FastFurnace (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fastsuite">FastSuite (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/resourceful-lib">Resourceful Lib (by ThatGravyBoat)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cc-tweaked">CC: Tweaked (by SquidDev)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/default-options">Default Options (by BlayTheNinth)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/craftpresence">CraftPresence (by CDAGaming_)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/lootjs">LootJS: KubeJS Addon (by Lytho)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/almost-unified">Almost Unified (by AlmostReliable)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/applied-energistics-2">Applied Energistics 2 (by thetechnici4n)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/mouse-tweaks">Mouse Tweaks (by YaLTeR)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/applied-energistics-2-wireless-terminals">Applied Energistics 2 Wireless Terminals (by Mari_023)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-third-person">Better Third Person (by Socolio)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/create">Create (by simibubi)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/terrafirmaships">TerraFirmaShips (by w8b40t)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-compatibility-checker">Better Compatibility Checker (by Gaz_)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/embeddium">Embeddium (by embeddedt)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/macaws-for-terrafirmacraft">All-In-One, Macaw's Mods for TerraFirmaCraft (by ArcWolfGaming)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/inventory-sorter">Inventory Sorter (by cpw)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/dynamiclights-reforged">Magnesium/Rubidium Dynamic Lights (by Anthxny)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cupboard">Cupboard (by someaddon)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cherished-worlds">Cherished Worlds (Fabric/Forge/Quilt) (by TheIllusiveC4)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items">Roughly Enough Items Fabric/Forge (REI) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/drippy-loading-screen">Drippy Loading Screen [Forge] (by Keksuccino)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap">Xaero's Minimap (by xaero96)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/sophisticated-core">Sophisticated Core (by P3pp3rF1y)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map">Xaero's World Map (by xaero96)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ambientsounds">AmbientSounds 5 (by CreativeMD)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/blur-forge">Blur (Forge) (by dimadencep)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fastworkbench">FastWorkbench (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/astikor-carts-tfc">Astikor Carts TFC (by Verph)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/inventory-hud-forge">Inventory HUD+ (by dmitrylovin)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/terrafirmagreg-mod">TerraFirmaGreg (by Exception)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/konkrete">Konkrete [Forge] (by Keksuccino)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/simple-login">Simple Login (by seraph_jack)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cucumber">Cucumber Library (by BlakeBr0)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fancymenu-forge">FancyMenu [Forge] (by Keksuccino)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/no-chat-reports">No Chat Reports (by Aizistral)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/curios">Curios API (Forge) (by TheIllusiveC4)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/pick-up-notifier">Pick Up Notifier [Forge & Fabric] (by Fuzs)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cloth-config">Cloth Config API (Fabric/Forge) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/client-tweaks">Client Tweaks (by BlayTheNinth)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/treetap">Tree Tap (by LobsterJonn)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/small-ships">Small Ships [Fabric & Forge] (by talhanation)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/corpse">Corpse (by henkelmax)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-library-forge">FTB Library (Forge) (by FTB)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/placebo">Placebo (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/extended-crafting">Extended Crafting (by BlakeBr0)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/creativecore">CreativeCore (by CreativeMD)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items-hacks">REI Plugin Compatibilities (REIPC) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/jade">Jade 🔍 (by Snownee)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/astikor-carts-redux">AstikorCarts Redux (by jusipat)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/puzzles-lib">Puzzles Lib [Forge & Fabric] (by Fuzs)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/jade-addons">Jade Addons (Forge) (by Snownee)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/itemphysic-lite">ItemPhysic Lite (by CreativeMD)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/terrafirmacraft">TerraFirmaCraft (by Dries007)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/botarium">Botarium (by CodexAdrian)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/resourceful-config">Resourceful Config (by ThatGravyBoat)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-quests-forge">FTB Quests (Forge) (by FTB)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/gregtechceu-modern">GregTechCEu Modern (by KilaBash)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ad-astra">Ad Astra (by AlexNijjar)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/sophisticated-backpacks">Sophisticated Backpacks (by P3pp3rF1y)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/modernfix">ModernFix (by embeddedt)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tool-belt">Tool Belt (by gigaherz)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/farsight">Farsight [Forge] (by someaddon)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap">Xaero's Minimap (by xaero96)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/macaws-for-terrafirmacraft">All-In-One, Macaw's Mods for TerraFirmaCraft (by ArcWolfGaming)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/sophisticated-core">Sophisticated Core (by P3pp3rF1y)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/entityculling">Entity Culling Fabric/Forge (by tr7zw)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-teams-forge">FTB Teams (Forge) (by FTB)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/oculus">Oculus (by Asek3)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/customskinloader">CustomSkinLoader (by xfl03)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/balm">Balm (Forge Edition) (by BlayTheNinth)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ferritecore">FerriteCore (Forge) (by malte0811)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/open-parties-and-claims">Open Parties and Claims (by xaero96)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/not-enough-animations">Not Enough Animations (by tr7zw)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/more-red">More Red (by Commoble)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/gregtechceu-modern">GregTechCEu Modern (by KilaBash)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/corpse">Corpse (by henkelmax)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/terrafirmagreg-mod">TerraFirmaGreg (by Exception)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-third-person">Better Third Person (by Socolio)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/treetap">Tree Tap (by LobsterJonn)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cc-tweaked">CC: Tweaked (by SquidDev)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ambientsounds">AmbientSounds 5 (by CreativeMD)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/modernfix">ModernFix (by embeddedt)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/dynamiclights-reforged">Magnesium/Rubidium Dynamic Lights (by Anthxny)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cherished-worlds">Cherished Worlds (Fabric/Forge/Quilt) (by TheIllusiveC4)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-ping-display">Better Ping Display (by Quintinity)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/create-steam-n-rails">Create: Steam 'n' Rails (by mattentosh)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/drippy-loading-screen">Drippy Loading Screen [Forge] (by Keksuccino)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ferritecore">FerriteCore (Forge) (by malte0811)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/kubejs">KubeJS (by LatvianModder)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/farsight">Farsight [Forge] (by someaddon)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/almost-unified">Almost Unified (by AlmostReliable)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-essentials-forge">FTB Essentials (Forge & Fabric) (by FTB)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items">Roughly Enough Items Fabric/Forge (REI) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/embeddium">Embeddium (by embeddedt)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/astikor-carts-redux">AstikorCarts Redux (by jusipat)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ad-astra">Ad Astra (by AlexNijjar)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cosmetic-armor-reworked">Cosmetic Armor Reworked (by LainMI)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/creativecore">CreativeCore (by CreativeMD)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/extended-crafting">Extended Crafting (by BlakeBr0)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/applied-energistics-2-wireless-terminals">Applied Energistics 2 Wireless Terminals (by Mari_023)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-library-forge">FTB Library (Forge) (by FTB)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/itemphysic-lite">ItemPhysic Lite (by CreativeMD)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/small-ships">Small Ships [Fabric & Forge] (by talhanation)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/create">Create (by simibubi)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fancymenu-forge">FancyMenu [Forge] (by Keksuccino)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fastsuite">FastSuite (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-quests-forge">FTB Quests (Forge) (by FTB)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/jade-addons">Jade Addons (Forge) (by Snownee)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/resourceful-lib">Resourceful Lib (by ThatGravyBoat)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/customskinloader">CustomSkinLoader (by xfl03)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/jade">Jade 🔍 (by Snownee)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/create-steam-n-rails">Create: Steam 'n' Rails (by mattentosh)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/astikor-carts-tfc">Astikor Carts TFC (by Verph)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items-hacks">REI Plugin Compatibilities (REIPC) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/open-parties-and-claims">Open Parties and Claims (by xaero96)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/more-red">More Red (by Commoble)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/botarium">Botarium (by CodexAdrian)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cucumber">Cucumber Library (by BlakeBr0)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cupboard">Cupboard (by someaddon)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/mouse-tweaks">Mouse Tweaks (by YaLTeR)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/not-enough-animations">Not Enough Animations (by tr7zw)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/client-tweaks">Client Tweaks (by BlayTheNinth)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/konkrete">Konkrete [Forge] (by Keksuccino)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/inventory-hud-forge">Inventory HUD+ (by dmitrylovin)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/item-filters">Item Filters (by LatvianModder)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fastworkbench">FastWorkbench (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/placebo">Placebo (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/sophisticated-backpacks">Sophisticated Backpacks (by P3pp3rF1y)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/balm">Balm (Forge Edition) (by BlayTheNinth)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/inventory-sorter">Inventory Sorter (by cpw)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/resourceful-config">Resourceful Config (by ThatGravyBoat)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/simple-login">Simple Login (by seraph_jack)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/applied-energistics-2">Applied Energistics 2 (by thetechnici4n)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-ranks-forge">FTB Ranks (Forge) (by FTB)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/curios">Curios API (Forge) (by TheIllusiveC4)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/oculus">Oculus (by Asek3)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/terrafirmaships">TerraFirmaShips (by w8b40t)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/patchouli">Patchouli (by Vazkii)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/no-chat-reports">No Chat Reports (by Aizistral)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-compatibility-checker">Better Compatibility Checker (by Gaz_)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/architectury-api">Architectury API (Fabric/Forge) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/blur-forge">Blur (Forge) (by dimadencep)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/default-options">Default Options (by BlayTheNinth)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/rhino">Rhino (by LatvianModder)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tool-belt">Tool Belt (by gigaherz)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/lootjs">LootJS: KubeJS Addon (by Lytho)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/craftpresence">CraftPresence (by CDAGaming_)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater">ServerConfig Updater (by Darkere)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map">Xaero's World Map (by xaero96)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/pick-up-notifier">Pick Up Notifier [Forge & Fabric] (by Fuzs)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fastfurnace">FastFurnace (by Shadows_of_Fire)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/betterf3">BetterF3 (by cominixo)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cloth-config">Cloth Config API (Fabric/Forge) (by shedaniel)</a></li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods/puzzles-lib">Puzzles Lib [Forge & Fabric] (by Fuzs)</a></li>
</ul>

Binary file not shown.

Binary file not shown.

Binary file not shown.