Advertisement
Guest User

Untitled

a guest
May 29th, 2014
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1.     on_rightclick = function(pos, node, clicker)
  2.         local meta = minetest.get_meta(pos)
  3.         if has_locked_chest_privilege(meta, clicker) then
  4.             minetest.show_formspec(
  5.                 clicker:get_player_name(),
  6.                 "default:chest_locked",
  7.                 default.get_locked_chest_formspec(pos)
  8.             )
  9.         end
  10.     end,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement