Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. minetest.register_on_joinplayer(function(player)
  2. player:set_inventory_formspec(
  3.     "size[8,7.8]"..
  4.     "bgcolor[140,0,0,0;true]"..
  5.     "listcolors[255,138,138,138;255,192,192,192;50,0,0,0;255,255,255,255;255,0,0,0]"..
  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