Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
The problem is that the Reals aren't precise. Here's a simple code I made in Lua:
local duration = 5.00
TimerStart(SomeTimer, 0.05, true, function()
duration = duration - 0.05
print("Duration = ", duration)
if duration <= 0 then
--End the timer
end
end
end)
When I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.