Skip to content

Commit

Permalink
Added defaultconfigs for new worlds
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaos02 committed Aug 13, 2022
1 parent 4d1ee0a commit 4f87d41
Show file tree
Hide file tree
Showing 61 changed files with 3,991 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modpack/overrides/defaultconfigs/bhc-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

[Server]
#Allow Starting Health Tweaks
allowStartingHealthTweaks = false
#Starting Health of Player (Default:20)
startingHealth = 20

103 changes: 103 additions & 0 deletions modpack/overrides/defaultconfigs/buildinggadgets-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@

#General mod settings
[general]
#Defined whether or not a player can use Absolute Coords mode in the Copy Paste Gadget
"Allow Absolute Coords" = true
#Defines how far away you can build
#Range: 1.0 ~ 48.0
MaxBuildDistance = 32.0
#Whether the Building / CopyPaste Gadget can overwrite blocks like water, lava, grass, etc (like a player can).
#False will only allow it to overwrite air blocks.
"Allow non-Air-Block-Overwrite" = true

#Configure the Gadgets
[Gadgets]
#The max range of the Gadgets
#Range: 1 ~ 32
"Maximum allowed Range" = 15
#Maximum amount of Blocks to be placed in one Tick.
#Notice that an EffectBlock takes 20 ticks to place, therefore a Server has to handle 20-times this value effect-block Tile's at once. Reduce this if you notice lag-spikes from Players placing Templates.
#Of course decreasing this value will result in more time required to place large TemplateItem's.
#Range: > 1
"Max Placement/Tick" = 1024

#Energy Cost & Durability of the Building Gadget
[Gadgets."Building Gadget"]
#The max energy of the Gadget, set to 0 to disable energy usage
#Range: > 0
"Maximum Energy" = 500000
#The Gadget's Energy cost per Operation
#Range: > 0
"Energy Cost" = 50
#The Gadget's Max Undo size (Note, the exchanger does not support undo)
#Range: 0 ~ 128
"Max Undo History Size" = 10

#Energy Cost & Durability of the Exchanging Gadget
[Gadgets."Exchanging Gadget"]
#The max energy of the Gadget, set to 0 to disable energy usage
#Range: > 0
"Maximum Energy" = 500000
#The Gadget's Energy cost per Operation
#Range: > 0
"Energy Cost" = 100
#The Gadget's Max Undo size (Note, the exchanger does not support undo)
#Range: 0 ~ 128
"Max Undo History Size" = 10

#Energy Cost, Durability & Maximum Energy of the Destruction Gadget
[Gadgets."Destruction Gadget"]
#The max energy of the Gadget, set to 0 to disable energy usage
#Range: > 0
"Maximum Energy" = 1000000
#The Gadget's Energy cost per Operation
#Range: > 0
"Energy Cost" = 200
#The Gadget's Max Undo size (Note, the exchanger does not support undo)
#Range: 0 ~ 128
"Max Undo History Size" = 1
#The maximum dimensions, the Destruction Gadget can destroy.
#Range: 0 ~ 32
"Destroy Dimensions" = 16
#The cost in energy/durability will increase by this amount when not in fuzzy mode
#Range: 0.0 ~ 1.7976931348623157E308
"Non-Fuzzy Mode Multiplier" = 2.0
#If enabled, the Destruction Gadget can be taken out of fuzzy mode, allowing only instances of the block clicked to be removed (at a higher cost)
"Non-Fuzzy Mode Enabled" = false

#Energy Cost & Durability of the Copy-Paste Gadget
[Gadgets."Copy-Paste Gadget"]
#The max energy of the Gadget, set to 0 to disable energy usage
#Range: > 0
"Maximum Energy" = 500000
#The Gadget's Energy cost per Operation
#Range: > 0
"Energy Cost" = 50
#The Gadget's Max Undo size (Note, the exchanger does not support undo)
#Range: 0 ~ 128
"Max Undo History Size" = 1
#Maximum amount of Blocks to be copied in one Tick.
#Lower values may improve Server-Performance when copying large Templates
#Range: > 1
"Max Copy/Tick" = 32768
#Maximum dimensions (x, y and z) that can be copied by a Template without requiring special permission.
#Permission can be granted using the '/buildinggadgets OverrideCopySize [<Player>]' command.
#Range: > -1
"Max Copy Dimensions" = 256
#Maximum dimensions (x, y and z) that can be build by a Template without requiring special permission.
#Permission can be granted using the '/buildinggadgets OverrideBuildSize [<Player>]' command.
#Range: > -1
"Max Build Dimensions" = 256

#Configure the Paste Containers
["Paste Containers"]
#The maximum capacity of a tier 1 (iron) Construction Paste Container
#Range: > 1
"T1 Container Capacity" = 512
#The maximum capacity of a tier 2 (iron) Construction Paste Container
#Range: > 1
"T2 Container Capacity" = 2048
#The maximum capacity of a tier 3 (iron) Construction Paste Container
#Range: > 1
"T3 Container Capacity" = 8192

70 changes: 70 additions & 0 deletions modpack/overrides/defaultconfigs/carryon-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@

#Settings
[settings]
#Maximum distance from where Blocks and Entities can be picked up
#Range: 0.0 ~ 1.7976931348623157E308
maxDistance = 2.5
#Max width of entities that can be picked up in survival mode
#Range: 0.0 ~ 10.0
maxEntityWidth = 1.5
#Max height of entities that can be picked up in survival mode
#Range: 0.0 ~ 10.0
maxEntityHeight = 2.0
#Slowness multiplier for blocks
#Range: 0.0 ~ 1.7976931348623157E308
blockSlownessMultiplier = 1.7
#Slowness multiplier for entities
#Range: 0.0 ~ 1.7976931348623157E308
entitySlownessMultiplier = 1.2
#Maximum stack limit for entities
#Range: > 1
maxEntityStackLimit = 10
#More complex Tile Entities slow down the player more
heavyTiles = true
#Allow all blocks to be picked up, not just Tile Entites
pickupAllBlocks = false
#Whether Blocks and Entities slow the creative player down when carried
slownessInCreative = true
#Whether hostile mobs should be able to picked up in survival mode
pickupHostileMobs = false
#Larger Entities slow down the player more
heavyEntities = true
#Allow babies to be carried even when adult mob is blacklisted (or not whitelisted)
allowBabies = false
#Use Whitelist instead of Blacklist for Blocks
useWhitelistBlocks = false
#Use Whitelist instead of Blacklist for Entities
useWhitelistEntities = false
#Use Whitelist instead of Blacklist for Stacking
useWhitelistStacking = false
#Whether the player can hit blocks and entities while carrying or not
hitWhileCarrying = false
#Whether the player drops the carried object when hit or not
dropCarriedWhenHit = false
#Use custom Pickup Scripts. Having this set to false, will not allow you to run scripts, but will increase your performance
useScripts = false
#Whether entities' size matters when stacking or not
stackableEntities = true

[blacklist]
#Blocks that cannot be picked up
forbiddenTiles = ["#forge:immovable", "#forge:relocation_not_supported", "minecraft:end_portal", "minecraft:end_gateway", "minecraft:tall_grass", "minecraft:large_fern", "minecraft:peony", "minecraft:rose_bush", "minecraft:lilac", "minecraft:sunflower", "minecraft:*_bed", "minecraft:oak_door", "minecraft:iron_door", "minecraft:spruce_door", "minecraft:birch_door", "minecraft:jungle_door", "minecraft:acacia_door", "minecraft:dark_oak_door", "minecraft:waterlily", "minecraft:cake", "minecraft:nether_portal", "minecraft:tall_seagrass", "animania:block_trough", "animania:block_invisiblock", "colossalchests:*", "ic2:*", "bigreactors:*", "forestry:*", "tconstruct:*", "rustic:*", "botania:*", "astralsorcery:*", "quark:colored_bed_*", "immersiveengineering:*", "embers:block_furnace", "embers:ember_bore", "embers:ember_activator", "embers:mixer", "embers:heat_coil", "embers:large_tank", "embers:crystal_cell", "embers:alchemy_pedestal", "embers:boiler", "embers:combustor", "embers:catalzyer", "embers:field_chart", "embers:inferno_forge", "storagedrawers:framingtable", "skyresources:*", "lootbags:*", "exsartagine:*", "aquamunda:tank", "opencomputers:*", "malisisdoors:*", "industrialforegoing:*", "minecolonies:*", "thaumcraft:pillar*", "thaumcraft:infernal_furnace", "thaumcraft:placeholder*", "thaumcraft:infusion_matrix", "thaumcraft:golem_builder", "thaumcraft:thaumatorium*", "magneticraft:oil_heater", "magneticraft:solar_panel", "magneticraft:steam_engine", "magneticraft:shelving_unit", "magneticraft:grinder", "magneticraft:sieve", "magneticraft:solar_tower", "magneticraft:solar_mirror", "magneticraft:container", "magneticraft:pumpjack", "magneticraft:solar_panel", "magneticraft:refinery", "magneticraft:oil_heater", "magneticraft:hydraulic_press", "magneticraft:multiblock_gap", "refinedstorage:*", "mcmultipart:*", "enderstorage:*", "betterstorage:*", "practicallogistics2:*", "wearablebackpacks:*", "rftools:screen", "rftools:creative_screen", "create:*", "magic_doorknob:*", "iceandfire:*", "ftbquests:*", "waystones:*"]
#Entities that cannot be picked up
forbiddenEntities = ["minecraft:end_crystal", "minecraft:ender_dragon", "minecraft:ghast", "minecraft:shulker", "minecraft:leash_knot", "minecraft:armor_stand", "minecraft:item_frame", "minecraft:painting", "minecraft:shulker_bullet", "animania:hamster", "animania:ferret*", "animania:hedgehog*", "animania:cart", "animania:wagon", "mynko:*", "pixelmon:*", "mocreatures:*", "quark:totem", "vehicle:*"]
#Entities that cannot have other entities stacked on top of them
forbiddenStacking = ["minecraft:horse"]

[whitelist]
#Entities that CAN be picked up (useWhitelistEntities must be true)
allowedEntities = []
#Blocks that CAN be picked up (useWhitelistBlocks must be true)
allowedBlocks = []
#Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true)
allowedStacking = []

[custom_pickup_conditions]
#Custom Pickup Conditions for Blocks
customPickupConditionsBlocks = []
#Custom Pickup Conditions for Entities
customPickupConditionsEntities = []

7 changes: 7 additions & 0 deletions modpack/overrides/defaultconfigs/charginggadgets-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

#General settings
[general]
#Maximum power for the Charging Station
#Range: > 0
chargerMaxEnergy = 1000000

23 changes: 23 additions & 0 deletions modpack/overrides/defaultconfigs/chiselsandbits-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

[balancing]
#Disallow blocks which tick randomly from being chiseled.
blacklist-random-ticking-blocks = false
#Enables the compatibility mode of the chiselability checked.
enable-compatibility-mode = false
#The max size of the stacks of bits in the bit bag.
#Range: > 64
bit-bag-stack-size = 512
#The amount of changes that are being held in the change track.
#Range: 10 ~ 40
change-tracker-size = 20
#When enabled this deletes excess bits which are created during chisel operations but which don't fit into the players inventory and bit bags.
delete-excess-bits = true
#Multiplies a chiseled blocks light output with this value. Allows for users to override the default scaling of the light value with the amount of bits. 0 Disables light emission, 1 Keeps the linear growth with the amount of light emitting bits. And any value above makes each bit emit more light then it normally should. Using the amount of bits in a block as a value (normally 4096 makes any bit emit light-level 15).
#Range: 0.0 ~ 4096.0
light-factor-multiplier = 1.0

[style]
#Configures the size of a single bit, relative to one block.
#Allowed Values: ONE_SIXTEENTH, ONE_EIGHT, ONE_QUARTER, ONE_HALF, ONE
bit-size = "ONE_SIXTEENTH"

49 changes: 49 additions & 0 deletions modpack/overrides/defaultconfigs/cofh_core-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

[Gameplay]

[Gameplay.Fishing]
#If TRUE, Fishing will cause exhaustion.
"Fishing Exhaustion" = true
#This option sets the amount of exhaustion caused by fishing, if enabled.
#Range: 0.0 ~ 10.0
"Fishing Exhaustion Amount" = 0.125

[Gameplay.World]
#If TRUE, Sapling growth will be slowed by a configurable factor.
"Sapling Growth Reduction" = false
#This option sets the growth factor for saplings - they will only grow 1 in N times.
#Range: > 1
"Sapling Growth Reduction Factor" = 4

[Commands]
#The required permission level for the '/cofh crafting' command.
#Range: 0 ~ 4
"Crafting Permission Level" = 2
#The required permission level for the '/cofh enderchest' command.
#Range: 0 ~ 4
"EnderChest Permission Level" = 2
#The required permission level for the '/cofh heal' command.
#Range: 0 ~ 4
"Heal Permission Level" = 2
#The required permission level for the '/cofh ignite' command.
#Range: 0 ~ 4
"Ignite Permission Level" = 2
#The required permission level for the '/cofh repair' command.
#Range: 0 ~ 4
"Repair Permission Level" = 2

[Enchantments]
#If TRUE, Feather Falling will prevent Farmland from being trampled. This option will work with alternative versions (overrides) of Feather Falling.
"Improved Feather Falling" = true
#If TRUE, Mending behavior is altered so that Experience Orbs always repair items if possible, and the most damaged item is prioritized. This option may not work with alternative versions (overrides) of Mending.
"Improved Mending" = true

[Enchantments.Holding]
#If TRUE, the Holding Enchantment is available for various Storage Items and Blocks.
Enable = true
#This sets whether or not the Enchantment is considered a 'treasure' enchantment.
Treasure = false
#This option adjusts the maximum allowable level for the Enchantment.
#Range: 1 ~ 10
"Max Level" = 4

20 changes: 20 additions & 0 deletions modpack/overrides/defaultconfigs/comforts-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

[server]
#Set to true to automatically use sleeping bags when placed
autoUse = false
#Set to true to prevent sleeping depending on how long you previously slept
wellRested = false
#If well rested is true, this value is used to determine how long you need before being able to sleep again (larger numbers = can sleep sooner)
#Range: 1.0 ~ 20.0
sleepyFactor = 2.0
#Set to true to enable sleeping in hammocks at night
nightHammocks = true
#The chance that a sleeping bag will break upon usage
#Range: 0.0 ~ 1.0
sleepingBagBreakage = 0.0
#List of debuffs to apply to players after using the sleeping bag
#Format: [effect] [duration(secs)] [power]
sleepingBagDebuffs = []
#[Survive Mod Integration] Set to true to have sleeping bags increase your body temperature after sleeping
insulatedSleepingBag = false

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

31 changes: 31 additions & 0 deletions modpack/overrides/defaultconfigs/compactmachines-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

#Machines
[machines]
#Specifies machine breakability while players are inside.
# 'unbreakable' = Nobody can break while players are inside.
# 'owner' = Only the owner can break while players are inside.
# 'anyone' = Anyone can break while players are inside.
#Allowed Values: UNBREAKABLE, OWNER, ANYONE
breakHandling = "UNBREAKABLE"
#The Y-dimension to spawn machine floors at.
#Range: 10 ~ 200
floor = 40
#default: false
allowOutside = false

[commands]

[commands.permLevels]
#Command level required for using the rebind and unbind commands.
#Range: 0 ~ 4
rebind = 2
#Command level required for giving new machines to players.
#Range: 0 ~ 4
give = 2
#Command level required for changing room spawn information.
#Range: 0 ~ 4
spawn = 2
#Command level required for changing room upgrades.
#Range: 0 ~ 4
upgrades = 2

Loading

0 comments on commit 4f87d41

Please sign in to comment.