Quote Originally Posted by pixie_frigo View Post
@DarkstaR

Since when is the function sleep only in steps of 100 ms ?
A lot of scripts have parts in it like : wait(250,350)
Since this is random it will almost always make the script sleep for exactly 300ms ... So crazy detectable?!?!


lua code:

function Rounder(num)
return math.floor(num*100)*10
end


for i = 1, 100 do
local s = os.clock()
wait(250,350)
print(Rounder(os.clock() - s))
end
It's not steps of 100 MS, it just cant be below 100 MS. So, if it's below 100, it turns into 100. Else, it sleeps the specified time.