Skip to content

Instantly share code, notes, and snippets.

@PilzAdam
Created September 26, 2013 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PilzAdam/6713763 to your computer and use it in GitHub Desktop.
Save PilzAdam/6713763 to your computer and use it in GitHub Desktop.
local SERVER_RULES_FORMSPEC = "size[5,5;]"..
"label[1,1;Test text]"
minetest.reigster_on_joinplayer(function(player)
minetest.after(3, function(player)
minetest.show_formspec(player:get_player_name(), "server_rules", SERVER_RULES_FORMSPEC)
end, player)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment