updated do_custom example with timer

This commit is contained in:
TenPlus1 2016-05-06 11:19:28 +01:00
parent deaada8a8b
commit 171098a215
1 changed files with 10 additions and 2 deletions

12
rat.lua
View File

@ -30,9 +30,17 @@ mobs:register_mob("mobs_animal:rat", {
mobs:capture_mob(self, clicker, 25, 80, 0, true, nil)
end,
--[[
do_custom = function(self)
do_custom = function(self, dtime)
self.rat_timer = (self.rat_timer or 0) + dtime
if self.rat_timer < 1 then return end -- every 1 second
self.rat_timer = 0
local pos = self.object:getpos()
print("rat pos", pos.x, pos.y, pos.z)
print("rat pos", pos.x, pos.y, pos.z, dtime)
end,
]]
--[[