Page 1 of 1

Script Help

Posted: 19 Nov 2017, 17:05
by DoctorPervySage
I could use some help making a jump bind so it jumps X number of times with a very short delay between jumps then waits 10-15 seconds and loops so i could just start it and go do something else

Re: Script Help

Posted: 19 Nov 2017, 19:49
by Spawnova

Code: Select all

f1:: ;press f1 to start
loop { ;loop forever
    loop 5 { ;jump 5 times
        send {space}
        sleep 50
    }
    random,sleepTime,10000,15000
    sleep % sleepTime ;wait 10-15 seconds
}
return

f9::reload ;f9 reloads the script stopping the loop.

Re: Script Help

Posted: 21 Nov 2017, 19:13
by DoctorPervySage
thanks for the reply but it seems to only jump like 3-4 times and then waits. I tried to change it myself but it didnt work. if possible id like to do all of the jumps and then wait. if you could make it like 12 jumps then the 15 second cool down