Results 1 to 5 of 5

Thread: Graal PC Scripts!

  1. #1

    Lightbulb Graal PC Scripts!

    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

  2. #2
    Soldier Habeeb's Avatar
    Join Date
    Jul 2016
    Location
    Lebanon
    Posts
    38
    Good one bro! but still I think if they made an original one with buttons it would be better.

  3. #3
    Street Boss Vacci's Avatar
    Join Date
    Jun 2013
    Location
    Hawaii
    Posts
    866
    Oh cool, I'm glad you got around to this. Someday I'll get my script re-uploaded and I hope you'd be able to tweak it. Mine is kinda outdated.

  4. #4
    Yea man thatd be so helpful, they still use the old *** IJKL movement and mouse to aim which is just too slow

    - - - Updated - - -

    O god i dont know about that haha i just had the idea in my head and searched around for some basic scripts and made them work

  5. #5
    Street Boss Vacci's Avatar
    Join Date
    Jun 2013
    Location
    Hawaii
    Posts
    866
    Here you go!

    https://www.dropbox.com/s/n5ao8oiqbe...50915.ahk?dl=0

    I know this script had hotkey support and some buttons to chat. My aim was to make really fluid keyboard+mouse controls, I think you'd enjoy cutting some things out of here.
    Author of EraAWSD: http://era-go.com/forum/showthread.p...l=1#post195094 (Updated 15-09-2015)

    Just some music... https://www.youtube.com/watch?v=h41Rrk_6rzs (Updated 02-20-2016)


Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •