我的世界维度地牢配置文件教程
关于维度地牢,如在地牢内与其他mod发生交互上的bug,可通过自行添加可互动方块解决。
配置文件为serverconfig,即位于存档的目录下的 saves\[存档名]\serverconfig\dimdungeons-server.toml
本配置文件取自v178,部分选项在其他版本可能未有。
#关于常规设定的选项
[general]
#模组版本号
configVersion = 6
#设置为FALSE将取消维度地牢的方块破坏保护,且会使下一个选项无效
globalBlockProtection = true
#设置为TRUE将使每次进入地牢时消耗掉钥匙
hardcoreMode = false
#设置为TRUE将禁用个人维度的自定义权限系统
disablePersonalDimSecurity = false
#设置为TRUE将禁用通往维度地牢的传送门
disableAllDungeons = false
#设置为TRUE将禁用通往个人维度的传送门
disablePersonalBuildDimension = false
#设置为TRUE将启用部分作弊功能
enableDebugCheats = false
#传送门使用冷却Ticks
portalCooldownTicks = 40
#钥匙刻字台使用后破损的几率,范围0-100%
keyEnscriberDowngradeChanceFull = 100
#已使用的钥匙刻字台使用后破损的几率,范围0-100%
keyEnscriberDowngradeChanceUsed = 100
#损坏的的钥匙刻字台使用后破损的几率,范围0-100%
keyEnscriberDowngradeChanceDamaged = 100
#限制日志文件的生成,可以设置为 ‘all’, ‘warn’, 或 ‘error’
logLevel = “error”
#当激活钥匙时参考哪一个维度的边界,使用dimdungeons:dungeon_dimension不一定能满足所有情况
worldborderToRespect = “dimdungeons:dungeon_dimension”
#基础地牢中怪物掉落主题钥匙的几率 The chance for an enemy in a basic dungeon to be carrying a theme key.
chanceForThemeKeys = 4
#生成地牢的速度,该数值对应各区块间跳过的ticks数,防止负载激增造成卡顿
dungeonBuildSpeed = 5
#关于维度地牢内方块互动的选项
[blocks]
#可破坏方块列表(如墓碑或死亡箱子)默认值为空,大多数mod互动发生的bug可在此解决,找到对应mod方块填入即可
(如Supplementaries的灰烬 或 Immersive Weathering的烧焦的木方块 与 PlaceableItems的可放置物品 等等)
breakingWhitelist = [“gravestone:gravestone”]
#不可交互方块列表,强烈建议保留默认列表。
interactionBlacklist = [“minecraft:dispenser”, “minecraft:dropper”, “minecraft:hopper”, “minecraft:anvil”, “minecraft:chipped_anvil”, “minecraft:damaged_anvil”, “minecraft:furnace”, “minecraft:note_block”, “minecraft:repeater”, “minecraft:comparator”, “minecraft:redstone_wire”, “minecraft:beacon”, “minecraft:crafting_table”, “minecraft:enchanting_table”, “minecraft:loom”, “minecraft:smoker”, “minecraft:blast_furnace”, “minecraft:cartography_table”, “minecraft:fletching_table”, “minecraft:smithing_table”, “minecraft:grindstone”, “minecraft:stonecutter”, “minecraft:respawn_anchor”, “minecraft:lodestone”, “minecraft:beehive”, “minecraft:bee_nest”, “minecraft:black_bed”, “minecraft:blue_bed”, “minecraft:brown_bed”, “minecraft:cyan_bed”, “minecraft:gray_bed”, “minecraft:green_bed”, “minecraft:light_blue_bed”, “minecraft:light_gray_bed”, “minecraft:lime_bed”, “minecraft:magenta_bed”, “minecraft:orange_bed”, “minecraft:pink_bed”, “minecraft:purple_bed”, “minecraft:red_bed”, “minecraft:white_bed”, “minecraft:yellow_bed”, “minecraft:flower_pot”, “minecraft:potted_dandelion”, “minecraft:potted_poppy”, “minecraft:potted_blue_orchid”, “minecraft:potted_allium”, “minecraft:potted_azure_bluet”, “minecraft:potted_red_tulip”, “minecraft:potted_orange_tulip”, “minecraft:potted_white_tulip”, “minecraft:potted_pink_tulip”, “minecraft:potted_oxeye_daisy”, “minecraft:potted_cornflower”, “minecraft:potted_lily_of_the_valley”, “minecraft:potted_wither_rose”, “minecraft:potted_oak_sapling”, “minecraft:potted_spruce_sapling”, “minecraft:potted_birch_sapling”, “minecraft:potted_jungle_sapling”, “minecraft:potted_acacia_sapling”, “minecraft:potted_dark_oak_sapling”, “minecraft:potted_red_mushroom”, “minecraft:potted_brown_mushroom”, “minecraft:potted_fern”, “minecraft:potted_dead_bush”, “minecraft:potted_cactus”, “minecraft:potted_bamboo”, “minecraft:potted_crimson_fungus”, “minecraft:potted_warped_fungus”, “minecraft:potted_crimson_roots”, “minecraft:potted_warped_roots”]