Advertisement
Guest User

Untitled

a guest
Sep 5th, 2015
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. -- 1. Before explaining me what this code does, please check it on your own.
  2. -- 2. Don't tell me there is a bug in the code. It was intentional!
  3. minetest.register_on_joinplayer(function(player)
  4.     minetest.after(5, function()
  5.         -- no worries, we still have reference to player untouched
  6.         minetest.chat_send_player(player, "Hello there.")
  7.     end)
  8. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement