Skip to content

Instantly share code, notes, and snippets.

@PilzAdam
Created December 26, 2013 18:01
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/8136752 to your computer and use it in GitHub Desktop.
Save PilzAdam/8136752 to your computer and use it in GitHub Desktop.
local timer = 0
minetest.on_globalstep(function(dtime)
timer = timer + dtime
if timer < 5 then
return
end
timer = 0
-- do stuff
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment