Skip to content

Client config

The client config holds settings that only affect your own screen, such as the status overlay colors. Each player sets them for themselves, and the server can't change them. Added in v2.0.0.

File: config/uncrafteverything-client.toml
Command: /ueconfig client

Options

Behaviour

SettingTypeDefaultDescription
autoMoveToInventoryBooleantrueMoves uncrafted items into your inventory when you click UnCraft. Items that don't fit are dropped. Does not apply to the Auto Uncrafting Table.

StatusColor

The overlay color on the input slot for each reason an item can't be uncrafted.

SettingDefaultUsed when
noRecipeFound-40612#FFFF615CNo Recipe Found
noSuitableOutputSlotColor-226487#FFFC8B49No Suitable Output Slot
notEnoughExpColor-852102#FFF2FF7ANot Enough Exp
notEnoughInputItemColor-4288#FFFFEF40Not Enough Input Item
notEmptyShulkerColor-1799425#FFE48AFFNot Empty Shulker
restrictedByConfigColor-11579569#FF4F4F4FRestricted By Config
damagedItemColor-40612#FFFF615CDamaged Item
enchantedItemColor-40612#FFFF615CEnchanted Item
lockedItemColor-40612#FFFF615CLocked Item
progressionNotDefinedColor-40612#FFFF615CProgression Not Defined

Color format

Colors are stored as a signed decimal of the ARGB hex value. For example, #FFFF615C (opaque red) is written as -40612. The in-game screen has a color picker, so you rarely need to convert by hand.

Example file

toml
# UncraftEverything Client Configuration

[Behaviour]
	# Auto move uncrafted items to player inventory, drops to world if inventory is full.
	autoMoveToInventory = true

[StatusColor]
	# Overlay color for No Recipe Found
	noRecipeFound = -40612
	# Overlay color for No Suitable Output Slot
	noSuitableOutputSlotColor = -226487
	# Overlay color for Not Enough Exp
	notEnoughExpColor = -852102
	# Overlay color for Not Enough Input Item
	notEnoughInputItemColor = -4288
	# Overlay color for Not Empty Shulker
	notEmptyShulkerColor = -1799425
	# Overlay color for Restricted By Config
	restrictedByConfigColor = -11579569
	# Overlay color for Damaged Item
	damagedItemColor = -40612
	# Overlay color for Enchanted Item
	enchantedItemColor = -40612
	# Overlay color for Locked Item
	lockedItemColor = -40612
	# Overlay color for Progression Not Defined
	progressionNotDefinedColor = -40612

In-game screen

Run /ueconfig client to edit these settings with a color picker.

Client config screen

Color picker

Released under CC0 1.0.