Advertisement
Guest User

Untitled

a guest
Sep 27th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. on_construct = function(pos)
  2. local meta = minetest.env:get_meta(pos)
  3. meta:set_string("formspec",
  4. "size[8,6]"..
  5. "list[current_name;main;0,0;8,1;]"..
  6. "list[current_player;main;0,2;8,4;]")
  7. meta:set_string("infotext", "Chest")
  8. local inv = meta:get_inventory()
  9. inv:set_size("main", 8)
  10. end,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement