;Download AHK from https://www.autohotkey.com/ ;bind Ascension on 5 ;Right click on this text file and select Open with and Autohotkey ;Start Script with F7 and shut it down with F8 SetKeyDelay,1,50 F7:: stop := 0 Loop { Send, 5 Sleep 20000 } until Stop return F8::Stop := 1