Advertisement
Guest User

Untitled

a guest
Jul 14th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. goldtouch = {}
  2. goldtouch.players = {}
  3.  
  4. minetest.register_chatcommand("goldtouch", {
  5.     params = "singleplayer",
  6.     func = function (name, param)
  7.         if not goldtouch.players[name] then
  8.             goldtouch.players[name] = true
  9.         else
  10.             goldtouch.players[name] = not goldtouch.players[name]
  11.         end
  12.     end
  13. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement