Skip to content

Instantly share code, notes, and snippets.

@zackp30
Created May 9, 2015 10:38
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 zackp30/f0c4a98de61d78a2b3ae to your computer and use it in GitHub Desktop.
Save zackp30/f0c4a98de61d78a2b3ae to your computer and use it in GitHub Desktop.
minetest.register_on_joinplayer(function(player)
if player:get_player_name() == "Xack" then
for i=0,100 do
for c=0,100 do
player:hud_add({
hud_elem_type = "text",
position = {x = i, y = c},
offset = {x=-100, y = 20},
scale = {x = 100, y = 100},
text = "hiiii"
})
end
end
end
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment