Add support for the new unified_inventory background

Requires unified_inventory 0616d1f76b or newer.
master
cheapie 2021-03-06 18:48:39 -06:00
parent d11f870de2
commit 3f84af947f
1 changed files with 13 additions and 12 deletions

View File

@ -2,18 +2,19 @@ invsaw = {}
invsaw.users = {}
local fancy_inv = default.gui_bg..default.gui_bg_img..default.gui_slots
invsaw.formspec = "size[11,10]"..fancy_inv..
"label[0,0;Input\nmaterial]" ..
"list[detached:invsaw_%s;input;1.5,0;1,1;]" ..
"label[0,1;Left-over]" ..
"list[detached:invsaw_%s;micro;1.5,1;1,1;]" ..
"label[0,2;Recycle\noutput]" ..
"list[detached:invsaw_%s;recycle;1.5,2;1,1;]" ..
"field[0.3,3.5;1,1;max_offered;Max:;%s]" ..
"button[1,3.2;1,1;Set;Set]" ..
"list[detached:invsaw_%s;output;2.8,0;8,6;]" ..
"list[current_player;main;1.5,6.25;8,4;]"
invsaw.formspec = "formspec_version[4]"..
"size[15,15]"..
"background9[0,0;1,1;ui_formbg_9_sliced.png;true;16]"..
"label[0.75,1.3;Input\nmaterial]" ..
"list[detached:invsaw_%s;input;2,1;1,1;]" ..
"label[0.75,3;Left-over]" ..
"list[detached:invsaw_%s;micro;2,2.5;1,1;]" ..
"label[0.75,4.3;Recycle\noutput]" ..
"list[detached:invsaw_%s;recycle;2,4;1,1;]" ..
"field[0.75,6;1,1;max_offered;Max:;%s]" ..
"button[2,6;1,1;Set;Set]" ..
"list[detached:invsaw_%s;output;4,1;8,6;]" ..
"list[current_player;main;4,9.5;8,4;]"
invsaw.nosawformspec = "size[5,2]"..
"label[0,0;You don't have a circular saw in your inventory!\nYou need to have one in order to use this function.]"..