An autohotkey script hack for Ztype.
Ztype is fun! play it here: http://www.phoboslab.org/ztype/
Think the music was any good :P? I made it from this awesome site: http://lab.andre-michelle.com/tonematrix
Get autohotkey here!: http://www.autohotkey.com/download/
the script below if you want to try it out :) perfect it or give me tips as well, if you're up to it. (ctrl+space) starts it, (Esc) stops it, and (ctrl+1) rearms!
---------------------------------------------------------------------------------------------
Esc::
{
BreakLoop = 1
}
return
^1::
{
BreakLoop = 0
}
return
^space::
Loop,
{
if (BreakLoop = 1)
break
SetKeyDelay, -1
send abcdeeffghijkllmnooppqrrssttuvwxyz
sleep, 30
}
return