Hello, so ive been playing era for as long as i can remember so i know whats good and what aint. And well the controls on PC are dreadful especially when it comes to shooting / aiming as you have to use your mouse. So i decided to try and do something about this, im not very good at scripting so i did the best i could but basically i used AutoHotkey to assign keys on the numpad to shoot in each direction, change weapons and grab/reload by using a script that clicks certain parts of your screen on a keypress. This script is designed for 1920x1080p screens running era in fullscreen mode in your web browser and can easily be adapted for different screen resolutions. Currently the controls use your numpad but can easily be changed if your keyboard doesn't have one or whatever.
Ill try paste a download link but i doubt itl work, ill paste it in aswell.
You will need to download autohotkey for this to work obviously.
- Adam![]()
http://www.mediafire.com/file/dstrne...aal_Script.ahk
Code:Numpad8:: x := 960 y := 10 { mousegetpos, start_x, start_y mouseclick, left, %x%, %y%, 1, 0 mousemove, %start_x%, %start_y%, 0 } return Numpad5:: x := 960 y := 910 { mousegetpos, start_x, start_y mouseclick, left, %x%, %y%, 1, 0 mousemove, %start_x%, %start_y%, 0 } return Numpad6:: x := 1910 y := 540 { mousegetpos, start_x, start_y mouseclick, left, %x%, %y%, 1, 0 mousemove, %start_x%, %start_y%, 0 } return Numpad4:: x := 10 y := 540 { mousegetpos, start_x, start_y mouseclick, left, %x%, %y%, 1, 0 mousemove, %start_x%, %start_y%, 0 } return NumpadEnter:: x := 1864 y := 290 { mousegetpos, start_x, start_y mouseclick, left, %x%, %y%, 1, 0 mousemove, %start_x%, %start_y%, 0 } return Numpad9:: x := 1866 y := 235 { mousegetpos, start_x, start_y mouseclick, left, %x%, %y%, 1, 0 mousemove, %start_x%, %start_y%, 0 } return Numpad7:: x := 1865 y := 179 { mousegetpos, start_x, start_y mouseclick, left, %x%, %y%, 1, 0 mousemove, %start_x%, %start_y%, 0 } return