function get_itemslot_bg(x, y, w, h) local out = "" for i = 0, w - 1, 1 do for j = 0, h - 1, 1 do out = out .."image["..x+i..","..y+j..";1,1;mcl_formspec_itemslot.png]" end end return out end local formspec = "size[9,8.75]".. "label[0,0;"..minetest.formspec_escape(minetest.colorize("#313131", "Hand")).."]".. "list[current_player;hand;0,0.5;1,1;]".. get_itemslot_bg(0,0.5,1,1).. "label[0,4.0;"..minetest.formspec_escape(minetest.colorize("#313131", "Inventory")).."]".. "list[current_player;main;0,4.5;9,3;9]".. get_itemslot_bg(0,4.5,9,3).. "list[current_player;main;0,7.74;9,1;]".. get_itemslot_bg(0,7.74,9,1).. "listring[current_player;hand]".. "listring[current_player;main]" local function hand() minetest.show_formspec("inventory:hand", formspec) end minetest.register_cheat("Hand", "Player", hand)