How can I make a timer that will execute an if statement every 5 seconds?
Maybe:
while (true) {
if (something) { } sleep(5000); }
Diego