I do a lot of playing online but usually I forget to take screenshots, is it possible to make a script that takes a screenshot every few seconds depending on a number you put in?
you could do screenshots at intervals with alias
[QUOTE=Spacewolf;19619829]I do a lot of playing online but usually I forget to take screenshots, is it possible to make a script that takes a screenshot every few seconds depending on a number you put in?[/QUOTE]
A screenshot every 10 seconds = 6 screenshots per minute = ~360mb / hour :O
[lua]
function TakeScreen()
RunConsoleCommand("jpeg_quality 100") -- make sure you got nice screenshots
RunConsoleCommand("jpeg") -- take the screenshot
end
timer.Create("AutoScreenShot",30,0,TakeScreen) -- takes 1 per 30sec
-- timer.Destroy("AutoScreenShot")[/lua]
Or have a real one.
Sorry, you need to Log In to post a reply to this thread.