@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