Hi,
How would I add the large furnace? I was able to add it before this latest update but you changed the coding and I'm not sure how to add it now.
Thank you
Adding other sort buttonsSolved
I didn't include support for it in this version, since the furnace UI overhaul is coming soon, and since I assumed people don't want to sort furnaces, as players usually want to split their items in them. Do you intend for players to use the sort button once the furnace has stopped, in order to more quickly collect the smelted items that remain?
I can add back support in the next version. Let me know if there are any others that you want, since the plugin logic does need to account for the type of loot panel for the button to display. Once the next version is released, you'll be able to add the furnace to the config like this:
"assets/prefabs/deployable/furnace.large/furnace.large.prefab": {
"Enabled": true,
"OffsetX": 476.5
}The simplest way to see the full prefab name of a deployable is to ent kill one and look in the server console. You can also search for prefabs by keyword with the Prefab Sniffer plugin.
WhiteThunder
I didn't include support for it in this version, since the furnace UI overhaul is coming soon, and since I assumed people don't want to sort furnaces, as players usually want to split their items in them. Do you intend for players to use the sort button once the furnace has stopped, in order to more quickly collect the smelted items that remain?
I can add back support in the next version. Let me know if there are any others that you want, since the plugin logic does need to account for the type of loot panel for the button to display. Once the next version is released, you'll be able to add the furnace to the config like this:
"assets/bundled/prefabs/ui/lootpanels/lootpanel.largefurnace.prefab": { "Enabled": true, "OffsetX": 476.5 }The simplest way to see the full prefab name of a deployable is to
ent killone and look in the server console. You can also search for prefabs by keyword with the Prefab Sniffer plugin.
Yes, to loot it faster. Thank you for helping.
Ok I just pushed a silent revision to v2.0.0 which you'll get if you download the plugin again. It supports small and large furnaces. I tested by adding the following config.
"assets/prefabs/deployable/furnace.large/furnace.large.prefab": {
"Enabled": true,
"OffsetX": 476.5
},
"assets/prefabs/deployable/furnace/furnace.prefab": {
"Enabled": true,
"OffsetX": 476.5
} Thanks a lot!WhiteThunder
Ok I just pushed a silent revision to v2.0.0 which you'll get if you download the plugin again. It supports small and large furnaces. I tested by adding the following config.
"assets/prefabs/deployable/furnace.large/furnace.large.prefab": { "Enabled": true, "OffsetX": 476.5 }, "assets/prefabs/deployable/furnace/furnace.prefab": { "Enabled": true, "OffsetX": 476.5 }