Recent content by ProstatePete

  1. P

    My build

    No. I was worried I had syphillis, but a genital swab of my pee hole confirmed I didn't.
  2. P

    My build

    I heard you got mono from kissing your sister. That's gross.
  3. P

    Coding help!

    Here's code that will do the first four instantly, then all subsequent loads are delayed by 10 seconds. setlocal enableextensions enabledelayedexpansion rem what to open set "_process=notepad.exe" set "_keep=4" set /a _runCount=0 rem infinite loop: from 0 to 1 in steps of 0 for /l %%a...
  4. P

    Coding help!

    If you just want it to have a delay between spawning each process, the fix is rather simple. setlocal enableextensions enabledelayedexpansion rem what to open set "_process=notepad.exe" set "_keep=4" rem infinite loop: from 0 to 1 in steps of 0 for /l %%a in (0 0 1) do ( rem get...
Back
Top