Configuring location of UI?Solved

Is there anyway to move the ui above this:

 
its conflicting with boxsorter. Thank you!

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?
5cc8aded24c90.png 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.

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
5cc8aded24c90.png 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
      }
    }
  ]
}


Merged post

Example Small Box:

Example Large Box:
Example Large Box
You're a legend man, thank you!

I have swaped to the new UI system but it isnt showing anymore XD

Used your config from above ^^

I will have a look later today and test it with that exact config again.
Did you update to 1.2.1? Do you have the itempuller.use permission?

Merged post

Also if you are using the exact config this doesn't matter but do not set this option to false it will fully disable the Ui - "Ui Enabled": true

ah so I need

"Ui Enabled": true,


and 

"Custom Ui Positions Enabled": true,


Merged post

Yeah I was just using
    {
      "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!

Locked automatically