Friday, July 12, 2013

Subway Surfers with Keyboard Play, Script and torrent

Subway Surfers PC Keyboard Playable with script and torrent

Subway Surfers is usually pain in the hand when played with the mouse. The solution is to use the scripting language 'Autohotkey'.

http://cdn2.angrygadgets.com/wp-content/uploads/2013/05/subway-surfers-Logo.png 
The autohotkey Script to simulate mouse in the game would be:

#NoTrayIcon
#SingleInstance force
Loop
{
    Process, Exist, Subway_Surfers.exe
        If ! errorLevel
            ExitApp
    Sleep, 200
}
Right::MouseClickDrag, Left, 720, 450, 820, 450
return
Left::MouseClickDrag, Left, 720, 450, 620, 450
return
Up::MouseClickDrag, Left, 720, 450, 720, 350
return
Down::MouseClickDrag, Left, 720, 450, 720, 550
return
Space::MouseClick, Left, , , 2
return