shadowrecon Posted April 23, 2012 Share Posted April 23, 2012 When using SetTimeout, does it halt everything else going on and run the procedure at the time or does it run along side the current running task? Quote Link to comment Share on other sites More sharing options...
FHannes Posted April 23, 2012 Share Posted April 23, 2012 It halts everything else, it's not threaded since threading isn't possible with PascalScript. Quote Link to comment Share on other sites More sharing options...
shadowrecon Posted April 23, 2012 Author Share Posted April 23, 2012 It halts everything else, it's not threaded since threading isn't possible with PascalScript. Oh alright, thats what i was hoping for any ways because im planning on making an antiban to work will the script is running. Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted April 23, 2012 Share Posted April 23, 2012 After the procedure gets called, does it get automatically removed from the list of timeouts? Quote Link to comment Share on other sites More sharing options...
shadowrecon Posted April 24, 2012 Author Share Posted April 24, 2012 After the procedure gets called, does it get automatically removed from the list of timeouts? Yes but u can set the timeout again within the procedure to create an infin loop. I was thinking about a anti-ban system with it somehow. =) Quote Link to comment Share on other sites More sharing options...
FHannes Posted April 24, 2012 Share Posted April 24, 2012 After the procedure gets called, does it get automatically removed from the list of timeouts? Normally yes, but if you input True for SetTimeoutEx's Loop parameter, it won't be removed. Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted April 24, 2012 Share Posted April 24, 2012 Interesting. Don't have an immediate use for it, but can see where it could be handy. Quote Link to comment Share on other sites More sharing options...