configsss

This commit is contained in:
SpeeeDCraft 2023-10-12 21:00:16 +07:00
parent 7bb78939e2
commit 6b6fe8a57c
18 changed files with 1011 additions and 0 deletions

146
config/create-client.toml Normal file
View file

@ -0,0 +1,146 @@
#.
#Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder!
[client]
#.
#Show item descriptions on Shift and controls on Ctrl.
enableTooltips = true
#.
#Display a tooltip when looking at overstressed components.
enableOverstressedTooltip = true
#.
#Log a stack-trace when rendering issues happen within a moving contraption.
explainRenderErrors = false
#.
#Higher density means more spawned particles.
#Range: 0.0 ~ 1.0
fanParticleDensity = 0.5
#.
#[in Blocks]
#Maximum Distance to the player at which items in Blocks' filter slots will be displayed
#Range: 1.0 ~ 3.4028234663852886E38
filterItemRenderDistance = 10.0
#.
#Show kinetic debug information on blocks while the F3-Menu is open.
enableRainbowDebug = false
#.
#The maximum amount of blocks for which to try and calculate dynamic contraption lighting. Decrease if large contraption cause too much lag
#Range: > 0
maximumContraptionLightVolume = 16384
#.
#Choose the menu row that the Create config button appears on in the main menu
#Set to 0 to disable the button altogether
#Range: 0 ~ 4
mainMenuConfigButtonRow = 2
#.
#Offset the Create config button in the main menu by this many pixels on the X axis
#The sign (-/+) of this value determines what side of the row the button appears on (left/right)
#Range: > -2147483648
mainMenuConfigButtonOffsetX = -4
#.
#Choose the menu row that the Create config button appears on in the in-game menu
#Set to 0 to disable the button altogether
#Range: 0 ~ 5
ingameMenuConfigButtonRow = 3
#.
#Offset the Create config button in the in-game menu by this many pixels on the X axis
#The sign (-/+) of this value determines what side of the row the button appears on (left/right)
#Range: > -2147483648
ingameMenuConfigButtonOffsetX = -4
#.
#Setting this to true will prevent Create from sending you a warning when playing with Fabulous graphics enabled
ignoreFabulousWarning = false
#.
#Configure your vision range when submerged in Create's custom fluids
[client.fluidFogSettings]
#.
#The vision range through honey will be multiplied by this factor
#Range: 0.125 ~ 256.0
honey = 1.0
#.
#The vision range though chocolate will be multiplied by this factor
#Range: 0.125 ~ 256.0
chocolate = 1.0
#.
#Settings for the Goggle Overlay
[client.goggleOverlay]
#.
#Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay
#Range: > -2147483648
overlayOffsetX = 20
#.
#Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay
#Range: > -2147483648
overlayOffsetY = 0
#.
#Enable this to use your custom colors for the Goggle- and Hover- Overlay
customColorsOverlay = false
#.
#The custom background color to use for the Goggle- and Hover- Overlays, if enabled
#[in Hex: #AaRrGgBb]
#[@cui:IntDisplay:#]
#Range: > -2147483648
customBackgroundOverlay = -267386864
#.
#The custom top color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled
#[in Hex: #AaRrGgBb]
#[@cui:IntDisplay:#]
#Range: > -2147483648
customBorderTopOverlay = 1347420415
#.
#The custom bot color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled
#[in Hex: #AaRrGgBb]
#[@cui:IntDisplay:#]
#Range: > -2147483648
customBorderBotOverlay = 1344798847
#.
#Settings for the Placement Assist
[client.placementAssist]
#.
#What indicator should be used when showing where the assisted placement ends up relative to your crosshair
#Choose 'NONE' to disable the Indicator altogether
#Allowed Values: TEXTURE, TRIANGLE, NONE
indicatorType = "TEXTURE"
#.
#Change the size of the Indicator by this multiplier
#Range: 0.0 ~ 3.4028234663852886E38
indicatorScale = 1.0
#.
#Ponder settings
[client.ponder]
#.
#Slow down a ponder scene whenever there is text on screen.
comfyReading = false
#.
#Show additional info in the ponder view and reload scene scripts more frequently.
editingMode = false
#.
#Sound settings
[client.sound]
#.
#Make cogs rumble and machines clatter.
enableAmbientSounds = true
#.
#Maximum volume modifier of Ambient noise
#Range: 0.0 ~ 1.0
ambientVolumeCap = 0.10000000149011612
#.
#Railway related settings
[client.trains]
#.
#How far away the Camera should zoom when seated on a train
#Range: 0.0 ~ 3.4028234663852886E38
mountedZoomMultiplier = 3.0
#.
#Display nodes and edges of a Railway Network while f3 debug mode is active
showTrackGraphOnF3 = false
#.
#Additionally display materials of a Rail Network while f3 debug mode is active
showExtendedTrackGraphOnF3 = false

View file

@ -0,0 +1,9 @@
#.
#Modify Create's impact on your terrain
[worldgen]
#.
#.
#Prevents all worldgen added by Create from taking effect
disableWorldGen = false

33
config/entityculling.json Normal file
View file

@ -0,0 +1,33 @@
{
"configVersion": 5,
"renderNametagsThroughWalls": true,
"blockEntityWhitelist": [
"create:rope_pulley",
"botania:flame_ring",
"minecraft:beacon",
"create:hose_pulley",
"betterend:eternal_pedestal",
"botania:magic_missile",
"botania:falling_star"
],
"entityWhitelist": [
"botania:mana_burst"
],
"tracingDistance": 128,
"debugMode": false,
"sleepDelay": 10,
"hitboxLimit": 50,
"skipMarkerArmorStands": true,
"tickCulling": true,
"tickCullingWhitelist": [
"create:contraption",
"create:stationary_contraption",
"create:gantry_contraption",
"minecraft:boat",
"minecraft:firework_rocket",
"create:carriage_contraption"
],
"disableF3": false,
"skipEntityCulling": false,
"skipBlockEntityCulling": false
}

View file

@ -0,0 +1,8 @@
#Select the backend to use.
#Allowed Values: OFF, BATCHING, INSTANCING
backend = "INSTANCING"
#Enable or disable a debug overlay that colors pixels by their normal.
debugNormals = false
#Enable or disable instance update limiting with distance.
limitUpdates = true

16
config/forge-client.toml Normal file
View file

@ -0,0 +1,16 @@
#Client only settings, mostly things related to rendering
[client]
#Enable Forge to queue all chunk updates to the Chunk Update thread.
#May increase FPS significantly, but may also cause weird rendering lag.
#Not recommended for computers without a significant number of cores available.
alwaysSetupTerrainOffThread = false
#EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models.
experimentalForgeLightPipelineEnabled = false
#When enabled, Forge will show any warnings that occurred during loading.
showLoadWarnings = true
#Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones.
useCombinedDepthStencilAttachment = false
#When enabled, Forge will convert discovered 'Open to LAN' IPv6 addresses to their more compact, compressed representation
compressLanIPv6Addresses = true

View file

@ -0,0 +1,7 @@
{
"__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.",
"values": [
"minecraft:barrier"
],
"version": 1
}

View file

@ -0,0 +1,10 @@
{
"__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.",
"values": [
"minecraft:area_effect_cloud",
"minecraft:firework_rocket",
"minecraft:interaction",
"minecraft:text_display"
],
"version": 1
}

40
config/jade/jade.json Normal file
View file

@ -0,0 +1,40 @@
{
"general": {
"hintOverlayToggle": true,
"hintNarratorToggle": true,
"previewOverlay": true,
"displayTooltip": true,
"displayBlocks": true,
"displayEntities": true,
"displayBosses": true,
"displayMode": "TOGGLE",
"hideFromDebug": true,
"hideFromTabList": true,
"enableTextToSpeech": false,
"ttsMode": "PRESS",
"fluidMode": "ANY",
"reachDistance": 0.0,
"debug": false,
"itemModNameTooltip": true,
"bossBarOverlapMode": "PUSH_DOWN"
},
"overlay": {
"activeTheme": "jade:dark",
"themesHash": -328442023,
"overlayPosX": 0.5,
"overlayPosY": 1.0,
"overlayScale": 1.0,
"overlayAnchorX": 0.5,
"overlayAnchorY": 0.0,
"overlaySquare": false,
"flipMainHand": false,
"autoScaleThreshold": 0.4,
"alpha": 0.7,
"iconMode": "TOP",
"animation": true,
"disappearingDelay": 0.0
},
"formatting": {
"modName": "§9§o%s"
}
}

109
config/jade/plugins.json Normal file
View file

@ -0,0 +1,109 @@
{
"minecraft": {
"item_storage.show_name_amount": 5,
"furnace": true,
"harvest_tool.show_unbreakable": false,
"animal_owner": true,
"animal_owner.fetch_names": true,
"harvest_tool.effective_tool": true,
"item_storage": true,
"item_storage.normal_amount": 9,
"harvest_tool": true,
"armor_stand": true,
"fluid_storage.detailed": false,
"energy_storage": true,
"entity_armor.max_for_render": 40,
"breaking_progress": true,
"tnt_stability": true,
"item_storage.items_per_line": 9,
"item_frame": true,
"crop_progress": true,
"command_block": true,
"mob_growth": true,
"harvest_tool.new_line": false,
"entity_health.max_for_render": 40,
"entity_health.show_fractions": false,
"mob_spawner": true,
"redstone": true,
"fluid_storage": true,
"chicken_egg": true,
"jukebox": true,
"brewing_stand": true,
"energy_storage.detailed": false,
"note_block": true,
"beehive": true,
"item_storage.detailed_amount": 54,
"player_head": true,
"block_states": false,
"lectern": true,
"entity_armor": true,
"horse_stats": true,
"item_tooltip": true,
"entity_health": true,
"enchantment_power": true,
"zombie_villager": true,
"villager_profession": true,
"mob_breeding": true,
"entity_health.icons_per_line": 10,
"total_enchantment_power": true,
"potion_effects": true,
"painting": true,
"chiseled_bookshelf": true
},
"tfc": {
"bloomery": true,
"nest_box": true,
"bellows": true,
"sheet_pile": true,
"hoe_overlay": true,
"charcoal_forge": true,
"mud_bricks": true,
"loom": true,
"bloom": true,
"frog": true,
"pit_kiln_above": true,
"sapling": true,
"rabbit": true,
"composter": true,
"chested_horse": true,
"pack_predator": true,
"barrel": true,
"decaying": true,
"wall_torch": true,
"predator": true,
"wild_animal": true,
"crucible": true,
"torch": true,
"lamp": true,
"ocelot": true,
"candle_cake": true,
"fishing_hook": true,
"horse": true,
"powder_keg": true,
"pit_kiln_internal": true,
"fish": true,
"candle": true,
"animal": true,
"fruit_tree_sapling": true,
"jack_o_lantern": true,
"firepit": true,
"squid": true,
"crop": true,
"blast_furnace": true,
"ingot_pile": true
},
"gtceu": {
"recipe_logic_provider": true,
"workable_provider": true,
"electric_container_provider": true,
"controllable_provider": true
},
"jade": {
"coordinates.rel": false,
"distance": false,
"block_face": false,
"coordinates": false,
"registry_name": "OFF",
"mod_name": true
}
}

View file

@ -0,0 +1,90 @@
{
"minecraft:brewing_stand": null,
"minecraft:beehive": null,
"minecraft:command_block": null,
"minecraft:jukebox": null,
"minecraft:lectern": null,
"minecraft:redstone": null,
"minecraft:furnace": null,
"minecraft:chiseled_bookshelf": null,
"minecraft:animal_owner": null,
"minecraft:potion_effects": null,
"minecraft:mob_growth": null,
"minecraft:mob_breeding": null,
"minecraft:chicken_egg": null,
"minecraft:zombie_villager": null,
"minecraft:block_states": null,
"minecraft:horse_stats": null,
"minecraft:item_frame": null,
"minecraft:tnt_stability": null,
"minecraft:note_block": null,
"minecraft:armor_stand": null,
"minecraft:painting": null,
"minecraft:harvest_tool": null,
"minecraft:enchantment_power": null,
"minecraft:total_enchantment_power": null,
"minecraft:player_head": null,
"minecraft:item_ber": null,
"minecraft:villager_profession": null,
"minecraft:item_tooltip": null,
"minecraft:falling_block": null,
"minecraft:entity_health": null,
"minecraft:entity_armor": null,
"minecraft:crop_progress": null,
"minecraft:mob_spawner": null,
"minecraft:item_display": null,
"minecraft:block_display": null,
"minecraft:item_storage": null,
"minecraft:fluid_storage": null,
"minecraft:energy_storage": null,
"minecraft:progress": null,
"jade:object_name": null,
"jade:registry_name": null,
"jade:mod_name": null,
"jade:distance": null,
"jade:block_face": null,
"gtceu:electric_container_provider": null,
"gtceu:workable_provider": null,
"gtceu:controllable_provider": null,
"gtceu:recipe_logic_provider": null,
"tfc:barrel": null,
"tfc:bellows": null,
"tfc:sapling": null,
"tfc:blast_furnace": null,
"tfc:bloomery": null,
"tfc:bloom": null,
"tfc:charcoal_forge": null,
"tfc:composter": null,
"tfc:crop": null,
"tfc:crucible": null,
"tfc:firepit": null,
"tfc:fruit_tree_sapling": null,
"tfc:hoe_overlay": null,
"tfc:lamp": null,
"tfc:nest_box": null,
"tfc:pit_kiln_internal": null,
"tfc:pit_kiln_above": null,
"tfc:powder_keg": null,
"tfc:torch": null,
"tfc:wall_torch": null,
"tfc:candle": null,
"tfc:candle_cake": null,
"tfc:jack_o_lantern": null,
"tfc:mud_bricks": null,
"tfc:decaying": null,
"tfc:loom": null,
"tfc:sheet_pile": null,
"tfc:ingot_pile": null,
"tfc:animal": null,
"tfc:horse": null,
"tfc:chested_horse": null,
"tfc:wild_animal": null,
"tfc:frog": null,
"tfc:squid": null,
"tfc:fish": null,
"tfc:predator": null,
"tfc:pack_predator": null,
"tfc:ocelot": null,
"tfc:rabbit": null,
"tfc:fishing_hook": null
}

View file

@ -0,0 +1,3 @@
#These JEI plugins will be loaded on the main thread
blacklist_async_jei_plugins = ["jepb:jei_plugin"]

View file

@ -0,0 +1,16 @@
#Set this to true to disable advancement locking for ALL books, making all entries visible at all times. Config Flag: advancements_disabled
disableAdvancementLocking = false
#Granular list of Book ID's to disable advancement locking for, e.g. [ "botania:lexicon" ]. Config Flags: advancements_disabled_<bookid>
noAdvancementBooks = []
#Enable testing mode. By default this doesn't do anything, but you can use the config flag in your books if you want. Config Flag: testing_mode
testingMode = false
#Set this to the ID of a book to have it show up in players' inventories, replacing the recipe book.
inventoryButtonBook = ""
#Set this to true to use Shift instead of Ctrl for the inventory quick lookup feature.
useShiftForQuickLookup = false
#Set how text overflow should be coped with: overflow the text off the page, truncate overflowed text, or resize everything to fit. Relogin after changing.
#Allowed Values: OVERFLOW, TRUNCATE, RESIZE
textOverflowMode = "RESIZE"
#How long in ticks the quick lookup key needs to be pressed before the book opens
quickLookupTime = 10

119
config/tfc-client.toml Normal file
View file

@ -0,0 +1,119 @@
[general]
#
# Should TFC forcefully skip the 'Experimental World Generation' warning screen when creating or loading a world?
# Note: this also speeds up loading a world by about 2x.
ignoreExperimentalWorldGenWarning = true
#
# Enables a series of additional debugging tooltips, displayed information, and logging.
enableDebug = false
[display]
#
# Replace the vanilla hunger bar with a TFC one.
enableHungerBar = true
#
# Replaces the vanilla health bar with a TFC one.
enableHealthBar = true
#
# Adds a TFC thirst bar over the hotbar.
enableThirstBar = true
#
# Allows the vanilla XP bar to render.
enableExperienceBar = true
#
# Enables squids inking your screen.
enableInkSplatter = true
#
# Enables 'screen particles' that spawn on the screen when knapping rocks.
enableScreenParticles = true
#
# Enables the vanilla tutorial toasts that appear during gameplay. These can be difficult to make disappear in modded environments, so they are disabled by default.
enableVanillaTutorialToasts = false
#
# Adjusts the position where potion effects render in the X direction. By default, this moves them to the right of the inventory tabs. Negative values shift them to the left.
#Range: -128 ~ 128
effectHorizontalAdjustment = 20
#
# Health display format. This affects what number is displayed on top of the tfc-style health bar
# TFC - e.g. 750 / 1000
# VANILLA - e.g. 15.0 / 20.0
# TFC_CURRENT - e.g. 750
# VANILLA_CURRENT - e.g. 15.0
#Allowed Values: TFC, VANILLA, TFC_CURRENT, VANILLA_CURRENT
healthDisplayStyle = "TFC"
#
# Food expiry tooltip display style. This affects what information is shown on the food item stack tooltips.
# NONE - Shows nothing. Maximum mystery!
# EXPIRY - e.g. 'Expires on June 3, 05:00
# TIME_LEFT - e.g. 'Expires in about 3 day(s)
# BOTH - Shows both of the above, e.g. Expires on June 3, 05:00 (in about 3 day(s)).
#Allowed Values: NONE, EXPIRY, TIME_LEFT, BOTH
foodExpiryTooltipStyle = "BOTH"
#
# The overlay color to indicate rotten foods. Default = 0x88CC33
#Range: 0 ~ 16777215
foodExpiryOverlayColor = 8965171
#
# The style to display all heat tooltips in.
# COLOR = Approximate, color based tooltips (like Very Hot**, Brilliant White)
# CELSIUS = Exact degrees Celsius
# FAHRENHEIT = Exact degrees Fahrenheit
# KELVIN = Exact Kelvin
# RANKINE = Exact degrees Rankine
#Allowed Values: COLOR, CELSIUS, FAHRENHEIT, RANKINE, KELVIN
heatTooltipStyle = "COLOR"
#
# The style to display all external (i.e. climate) temperature in.
# COLOR = Approximate, color based tooltips (like Very Hot**, Brilliant White)
# CELSIUS = Exact degrees Celsius
# FAHRENHEIT = Exact degrees Fahrenheit
# KELVIN = Exact Kelvin
# RANKINE = Exact degrees Rankine
#Allowed Values: COLOR, CELSIUS, FAHRENHEIT, RANKINE, KELVIN
climateTooltipStyle = "CELSIUS"
#
# The style to display all time delta / duration tooltips in.
# DAYS = Display values larger than a month as a number of days, i.e. '105 day(s)'
# DAYS_MONTHS = Display values larger than a year as a number of months and days, i.e. '13 month(s), 1 day(s)'
# DAYS_MONTHS_YEARS = Display values as normal, i.e. '1 year(s), 1 month(s), 1 day(s)'
#Allowed Values: DAYS_MONTHS_YEARS, DAYS_MONTHS, DAYS
timeDeltaTooltipStyle = "DAYS_MONTHS_YEARS"
#
# The style to display HUD elements when the XP bar is disabled.
# HOVER = Display all elements in their default positions
# BUMP = Move elements closer to the hotbar; when fishing or riding a jumping entity, other elements move to their default positions
# LEFT_HOTBAR = Move elements closer to the hotbar; when fishing or riding a jumping entity, those elements will appear as a vertical bar between the hotbar and offhand slot
#Allowed Values: HOVER, BUMP, LEFT_HOTBAR
disabledExperienceBarStyle = "HOVER"
#
# If prospect information should appear in the space above the hotbar (the actionbar). False will put them in the chat window.
sendProspectResultsToActionbar = true
#
# If hoe overlays (for hydration, nutrition, or temperature, shown when hovering over a plant or farmland while holding a hoe), should only be shown when the shift key is held down.
showHoeOverlaysOnlyWhenShifting = false
#
# If true, mods like Jade that add info when hovering on a block will add the hoe's overlay info to the tooltip, even when not holding a hoe.
showHoeOverlaysInInfoMods = true
#
# If familiarity is displayed as a percent rather than a heart
displayFamiliarityAsPercent = false
#
# If, when hovering over an item in the inventory, or looking at a block in the world that has a linked page in the guide book, should it display a tooltip along with allowing you to hold Ctrl/Cmd to quickly navigate to that page in the book.
showGuideBookLinksAlways = true
#
# If a button linking to the TFC Field Guide should be added to the inventory, climate, nutrition, and calendar screens?
showGuideBookTabInInventory = true
#
# For items like bundles, their contents inside will be rendered using Bundle Technology to show their items.
displayItemContentsAsImages = true
#
# If true, for items that are hot, they will show a bar on the item like a durability bar
displayItemHeatBars = true
[compatibility]
#
# Registers additional models into forge's special model registry.
# For Pack Makers: this is needed if you want your custom item models to render when used for panning (if they are not already used somewhere else and added automatically in that case)
additionalSpecialModels = []

28
config/tfc-common.toml Normal file
View file

@ -0,0 +1,28 @@
[general]
#
# If the TFC world preset 'tfc:overworld' should be set as the default world generation when creating a new world.
defaultWorldPreset = "tfc:overworld"
[calendar]
#
# The number of days in a month, for newly created worlds.
# This can be modified in existing worlds using the /time command
#Range: > 1
defaultMonthLength = 8
#
# The start date for newly created worlds, in a number of ticks, for newly created worlds
# This represents a number of days offset from January 1, 1000
# The default is (5 * daysInMonth) = 40, which starts at June 1, 1000 (with the default daysInMonth = 8)
#Range: > -1
defaultCalendarStartDay = 40
[debug]
#
# Enables a series of network fail-safes that are used to debug network connections between client and servers.
# Important: this MUST BE THE SAME as what the server has set, otherwise you are liable to see even stranger errors.
enableNetworkDebugging = false
#
# If enabled, TFC will validate that certain pieces of reloadable data fit the conditions we expect, for example heating recipes having heatable items. It will error or warn in the log if these conditions are not met.
enableDatapackTests = false

132
config/xaerominimap.txt Normal file
View file

@ -0,0 +1,132 @@
#CONFIG ONLY OPTIONS
ignoreUpdate:0
settingsButton:false
allowWrongWorldTeleportation:false
differentiateByServerAddress:true
debugEntityIcons:false
debugEntityVariantIds:false
radarHideInvisibleEntities:true
allowInternetAccess:true
#INGAME SETTINGS (DO NOT EDIT!)
updateNotification:true
minimap:true
caveMaps:2
caveZoom:1
showWaypoints:true
showIngameWaypoints:true
displayRedstone:true
deathpoints:true
oldDeathpoints:true
distance:1
lockNorth:false
zoom:0
minimapSize:0
chunkGrid:-1
slimeChunks:false
mapSafeMode:false
minimapOpacity:100.0
waypointsIngameIconScale:0
waypointsIngameDistanceScale:0
waypointsIngameNameScale:0
waypointsIngameCloseScale:1.0
antiAliasing:true
blockColours:0
lighting:true
dotsStyle:0
dotNameScale:1.0
compassOverEverything:true
showFlowers:true
keepWaypointNames:true
waypointsDistanceExp:0
waypointsDistanceMin:0.0
defaultWaypointTPCommandFormat:/tp @s {x} {y} {z}
defaultWaypointTPCommandRotationFormat:/tp @s {x} {y} {z} {yaw} ~
arrowScale:1.5
arrowColour:0
smoothDots:true
worldMap:true
terrainDepth:true
terrainSlopes:2
mainEntityAs:0
blockTransparency:true
waypointOpacityIngame:80
waypointOpacityMap:90
hideWorldNames:1
openSlimeSettings:true
alwaysShowDistance:false
crossDimensionalTp:true
biomeColorsVanillaMode:false
lookingAtAngle:10
lookingAtAngleVertical:180
centeredEnlarged:false
zoomOnEnlarged:0
minimapTextAlign:0
waypointsMutualEdit:true
compassLocation:1
compassDirectionScale:0
caveMapsDepth:30
hideWaypointCoordinates:false
renderAllSets:false
playerArrowOpacity:100
waypointsBottom:false
minimapShape:0
lightOverlayType:0
lightOverlayMaxLight:7
lightOverlayMinLight:0
lightOverlayColor:13
uiScale:0
bossHealthPushBox:1
potionEffectPushBox:1
minimapFrame:0
minimapFrameColor:9
compassColor:9
northCompassColor:-1
displayMultipleWaypointInfo:1
entityRadar:true
adjustHeightForCarpetLikeBlocks:true
autoConvertWaypointDistanceToKmThreshold:10000
waypointDistancePrecision:1
mainDotSize:2
partialYTeleportation:true
deleteReachedDeathpoints:true
hideMinimapUnderScreen:true
hideMinimapUnderF3:true
manualCaveModeStartAuto:true
manualCaveModeStart:-1
chunkGridLineWidth:1
temporaryWaypointsGlobal:true
keepUnlockedWhenEnlarged:false
enlargedMinimapAToggle:false
displayStainedGlass:true
waypointOnMapScale:0
switchToAutoOnDeath:true
infoDisplayBackgroundOpacity:40
caveModeToggleTimer:1000
legibleCaveMaps:false
biomeBlending:true
displayTrackedPlayers:true
displayClaims:true
displayCurrentClaim:true
claimsFillOpacity:46
claimsBorderOpacity:80
infoDisplayOrder:coords:overworld_coords:chunk_coords:angles:dimension:biome:weather:light_level:time:real_time:highlights:light_overlay_indicator:manual_cave_mode_indicator:custom_sub_world
infoDisplay:coords:true:15:-1
infoDisplay:overworld_coords:false:15:-1
infoDisplay:chunk_coords:false:15:-1
infoDisplay:angles:false:15:-1
infoDisplay:dimension:false:15:-1
infoDisplay:biome:false:15:-1
infoDisplay:weather:false:15:-1
infoDisplay:light_level:0:15:-1
infoDisplay:time:0:15:-1
infoDisplay:real_time:0:15:-1
infoDisplay:highlights:true:15:-1
infoDisplay:light_overlay_indicator:true:15:-1
infoDisplay:manual_cave_mode_indicator:true:15:-1
infoDisplay:custom_sub_world:true:15:-1
interface:dummy:0:0:true:false:false:false
interface:dummy:0:10000:true:false:false:false
interface:dummy:0:0:false:false:true:false
interface:dummy:0:36:true:false:false:false
interface:gui.xaero_minimap:0:0:false:false:false:false
#WAYPOINTS HAVE BEEN MOVED TO /XaeroWaypoints

View file

@ -0,0 +1,191 @@
{
"hardInclude": "anything",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [
"minecraft:glow_item_frame",
"minecraft:item_frame"
],
"name": "gui.xaero_entity_category_root",
"protection": true,
"settingOverrides": {
"displayHeight": 0.0,
"displayed": true,
"heightBasedFade": true,
"renderOrder": 0.0,
"color": 13.0,
"displayNameWhenIconFails": true,
"entityNumber": 1000.0,
"alwaysDisplayNametags": false,
"startFadingAt": 0.0,
"dotSize": 2.0,
"renderOverMinimapFrame": 1.0,
"icons": 1.0,
"names": 0.0,
"heightLimit": 20.0,
"iconScale": 1.0
},
"subCategories": [
{
"hardInclude": "living",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [
"minecraft:armor_stand"
],
"name": "gui.xaero_entity_category_living",
"protection": true,
"settingOverrides": {
"renderOrder": 2.0,
"color": 14.0
},
"subCategories": [
{
"hardInclude": "players",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_players",
"protection": true,
"settingOverrides": {
"renderOrder": 6.0,
"heightLimit": 2050.0,
"color": 15.0
},
"subCategories": [
{
"hardInclude": "nothing",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_friend",
"protection": true,
"settingOverrides": {},
"subCategories": []
},
{
"hardInclude": "tracked",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_tracked",
"protection": true,
"settingOverrides": {
"icons": 2.0
},
"subCategories": []
},
{
"hardInclude": "same-team",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_same_team",
"protection": true,
"settingOverrides": {},
"subCategories": []
},
{
"hardInclude": "anything",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_other_teams",
"protection": true,
"settingOverrides": {
"renderOrder": 7.0
},
"subCategories": []
}
]
},
{
"hardInclude": "hostile",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_hostile",
"protection": true,
"settingOverrides": {
"renderOrder": 3.0
},
"subCategories": [
{
"hardInclude": "tamed",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_hostile_tamed",
"protection": true,
"settingOverrides": {
"renderOrder": 5.0
},
"subCategories": []
}
]
},
{
"hardInclude": "anything",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_friendly",
"protection": true,
"settingOverrides": {},
"subCategories": [
{
"hardInclude": "tamed",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_friendly_tamed",
"protection": true,
"settingOverrides": {
"renderOrder": 4.0
},
"subCategories": []
}
]
}
]
},
{
"hardInclude": "items",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_items",
"protection": true,
"settingOverrides": {
"renderOrder": 1.0,
"color": 12.0
},
"subCategories": []
},
{
"hardInclude": "anything",
"includeList": [],
"includeListInSuperCategory": true,
"excludeMode": "ONLY",
"excludeList": [],
"name": "gui.xaero_entity_category_other_entities",
"protection": true,
"settingOverrides": {
"color": 5.0
},
"subCategories": []
}
]
}

0
config/xaeropatreon.txt Normal file
View file

54
config/xaeroworldmap.txt Normal file
View file

@ -0,0 +1,54 @@
ignoreUpdate:0
updateNotification:true
allowInternetAccess:true
differentiateByServerAddress:true
caveMapsAllowed:true
debug:false
lighting:true
colours:0
loadChunks:true
updateChunks:true
terrainSlopes:2
terrainDepth:true
footsteps:true
flowers:true
coordinates:true
hoveredBiome:true
biomeColorsVanillaMode:false
waypoints:true
renderArrow:true
displayZoom:true
worldmapWaypointsScale:1.0
openMapAnimation:true
reloadVersion:0
reloadEverything:false
zoomButtons:true
waypointBackgrounds:true
detectAmbiguousY:true
showDisabledWaypoints:false
closeWaypointsWhenHopping:true
adjustHeightForCarpetLikeBlocks:true
onlyCurrentMapWaypoints:false
minZoomForLocalWaypoints:0.0
arrowColour:-2
minimapRadar:true
renderWaypoints:true
partialYTeleportation:true
displayStainedGlass:true
caveModeDepth:30
caveModeStart:2147483647
autoCaveMode:-1
legibleCaveMaps:false
displayCaveModeStart:true
caveModeToggleTimer:1000
defaultCaveModeType:1
biomeBlending:true
trackedPlayers:true
multipleImagesExport:false
nightExport:false
highlightsExport:false
exportScaleDownSquare:20
displayClaims:true
claimsFillOpacity:46
claimsBorderOpacity:80
globalVersion:1