Advertisement
Guest User

hud

a guest
May 3rd, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. minetest.register_on_joinplayer(function(player)
  2.     player:hud_set_flags({hotbar=false})
  3.     player:hud_add({
  4.         name = "hotbar",
  5.         hud_elem_type = "inventory",
  6.         position = {x=1, y=1.0},
  7.         scale = {x=9, y=1},
  8.         number = 9,
  9.         item = 1,
  10.         direction = 0,
  11.         alignment = {x=0, y=-1},
  12.     })
  13. end
  14. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement