Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. minetest.register_on_joinplayer(function(player)
  2. player:set_inventory_formspec(
  3.     "size[8,7.8]"..
  4.     "bgcolor[#000A;true]"..
  5.     "listcolors[#8A8A8AFF;#C0C0C0;#0002;#FFF;#000]"..
  6.     "background[2,2;0,0;inv_bg.png;true]"..
  7.     "list[current_player;main;0,4.8;8,3;8]"..
  8.     "list[current_player;main;0,3.5;8,1;]"..
  9.     "list[current_player;craft;3,0;3,3;]"..
  10.     "list[current_player;craftpreview;7,1;1,1;]"
  11.     )
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement