Add config

Allows all storage drawer keys in tool belt
Doesn't allow any satchels in tool belt
This commit is contained in:
IntegerLimit 2023-03-14 21:33:18 +11:00
parent 5c0dfddd74
commit f54307ed32

View File

@ -0,0 +1,76 @@
# Configuration file
##########################################################################################################
# behaviour
#--------------------------------------------------------------------------------------------------------#
# Options for customizing the mechanics of the belt
##########################################################################################################
behaviour {
# If set to TRUE, the internal anvil upgrade will not work, and alternative methods for upgrades will have to be provided externally.
B:disableAnvilUpgrading=false
}
##########################################################################################################
# display
#--------------------------------------------------------------------------------------------------------#
# Options for customizing the display of tools on the player
##########################################################################################################
display {
# Changes the scale of items on the belt.
D:beltItemScale=0.5
# If set to FALSE, the belts and tools will NOT draw on players.
B:showBeltOnPlayers=true
}
##########################################################################################################
# input
#--------------------------------------------------------------------------------------------------------#
# Options for customizing the interaction with the radial menu
##########################################################################################################
input {
# If set to TRUE, the radial menu will allow clicking outside the outer circle to activate the items.
B:allowClickOutsideBounds=false
# If set to TRUE, the radial menu will try to prevent the mouse from leaving the outer circle.
B:clipMouseToCircle=false
# If set to TRUE, the radial menu will always display all the slots, even when empty, and will allow choosing which empty slot to insert into.
B:displayEmptySlots=true
# If set to TRUE, releasing the menu key (R) will activate the swap. Requires a click otherwise (default).
B:releaseToSwap=true
}
items {
# List of items to disallow from placing in the belt.
S:blacklist <
thermalexpansion:satchel
thermalexpansion:satchel@1
thermalexpansion:satchel@2
thermalexpansion:satchel@3
thermalexpansion:satchel@4
>
# List of items to force-allow placing in the belt. Takes precedence over blacklist.
S:whitelist <
storagedrawers:drawer_key
storagedrawers:shroud_key
storagedrawers:quantify_key
storagedrawers:personal_key
>
}
slot {
# If AUTO, the belt slot will be disabled if Baubles is present. If OFF, the belt slot will be disabled permanently.
S:customBeltSlotMode=off
}