Is there anyway to move the ui above this:

its conflicting with boxsorter. Thank you!
Is there anyway to move the ui above this:

its conflicting with boxsorter. Thank you!
collectvood
In the config file you will be able to change its x and y values. Do you plan on moving it above the box inventory?
Yes sir, sorry I was proper baked last night didnt notice the config. Correct, intended on putting it above the box inventory.
collectvood
Only problem I see with above the box inventory is that the small lootbox has a smaller inventory panel which means it would hover over the small box loot panel or otherwise be behind the large box inventory panel. Change the y value to something around 0.68 for placement above the large loot box inventory
Decided to add support for different Ui Positions in latest update, here would be an example on how you could set it up so the Ui is above the boxes:
{
"Command": "ip",
"Pull on build": true,
"Check for Owner": false,
"Check for Friend": false,
"Check for Clan": false,
"Player Default Settings": {
"Enabled": false,
"Autocraft": false,
"Pull from ToolCupboard": true,
"Force Pull (recommend to not set true)": false
},
"Ui Enabled": true,
"Global Ui Position": {
"x": 0.6505,
"y": 0.022
},
"Custom Ui Positions Enabled": true,
"Custom Positions (Box wise)": [
{
"Box Shortname": "box.wooden",
"Ui Position": {
"x": 0.6505,
"y": 0.4
}
},
{
"Box Shortname": "box.wooden.large",
"Ui Position": {
"x": 0.6505,
"y": 0.66
}
}
]
}

I have swaped to the new UI system but it isnt showing anymore XD
Used your config from above ^^
ah so I need
"Ui Enabled": true,
and
"Custom Ui Positions Enabled": true, {
"Box Shortname": "box.wooden",
"Ui Position": {
"x": 0.6505,
"y": 0.4
}
},
{
"Box Shortname": "box.wooden.large",
"Ui Position": {
"x": 0.6505,
"y": 0.66
}
}From the above config not the whole thing XD Thanks for the fast response and help!