Results 1 to 16 of 16

Thread: How to Use AutoHotkey for Chrome users.

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Senior Member Zerious's Avatar
    Join Date
    Dec 2010
    Location
    None of your business, creeper... Geez...
    Posts
    2,431
    Thanks Thanks Given 
    66
    Thanks Thanks Received 
    83
    Thanked in
    60 Posts

    Lightbulb How to Use AutoHotkey for Chrome users.

    Hey, everyone! Z here with a guide on how to setup custom controls for your Google Chrome Pocket Legends app!

    I had trouble pvping on my ipod, so I did some browsing and came across a link for Autohotkey.com.

    Special thanks to DocDoBig for linking it in the Suggestions and Feedback Thread started by Swimmingstar.


    Ok so first thing you wanna do is click the link above, and download the script reader "autohotkey". I've downloaded it myself, and wouldn't be posting this if it were not safe; My Norton360 said it was safe

    Next, you'll wanna make a new file on your desktop or inside a folder of your choice (I made a new folder on my desktop labeled "AHKfiles". Right-click and click "new", then "Auto Hotkey Script". It will appear as an icon on your desktop (or in your folder if you made one). Right-click it, and "edit script".

    Now you've viewed the empty file that should say something like this:

    #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn ; Enable warnings to assist with detecting common errors.
    SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

    Leave all of that there. The line right under it is where you're going to script your hotkeys. Mine are set up to use the number pad for my skills while keeping the default character movement and camera rotation controls.
    This is how my script is written:

    #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn ; Enable warnings to assist with detecting common errors.
    SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
    NumpadDel::1
    NumpadEnter::2
    NumpadAdd::3
    NumpadSub::4
    NumpadPgDn::5
    NumpadRight::6
    NumpadPgUp::7
    NumpadMult::8
    NumpadIns::9
    NumpadDown::0
    NumpadClear::-
    NumpadUp::=


    The way it works is, With the numlock off I can use this script by double-clicking the file, and now i have my custom skill controls in game!

    But you don't have to use the number pad, that's just my own preference. You could use virtually any key you wanted for any command. So far, I've only felt the need to move my skill commands so I'm not playing PL with my right hand literally on top of my left hand.

    Basically, If you wanna change any skill command, This is how you'd write the script; the order of the skills doesn't matter. This example uses "skill 1" as the skill that is mapped to the bottommost-right slot.

    [desired skill 1 key]::1

    The order of the mapped skills moves upward then starts again at the bottom of the next leftward column. The skill to the left of the "skill 1" slot would be the "skill 5" slot

    [desired skill 5 key]::5

    Let's say you wanted to move your "skill 1" key to the "/" (forward slash) key and your "skill 5" key to the "." (period) key. This is how you'd write the script:

    /::1
    .::5


    Easy, right? Or say you wanted them to be backwards from what they are at the default setting:

    =::1
    -::2
    0::3
    9::4
    8::5
    7::6
    6::7
    5::8
    4::9
    3::0
    2::-
    1::=


    Once you get the hang of it, it's really simple. The Autohotkey program also has a list of all the different hotkey inputs in the "Autohotkey Help" file. Take a peek and play with it. If you have any questions, or need help mapping your skills to specific keys, feel free to PM me here on the forums.

    Hope this helps you guys, and sorry if it seems complicated

    You're all awesome

    Z
    Expert pvp builder and tester, horrible execution XD
    Quote Originally Posted by Register View Post
    I was trying to be optimistic. Thanks for eating my fries.

  2. The Following 7 Users Say Thank You to Zerious For This Useful Post:


Similar Threads

  1. Google Chrome - Uh.oh Google Chrome failed to start our game ?
    By Zerenix in forum AL Technical Issues and Bugs
    Replies: 0
    Last Post: 04-29-2013, 02:48 AM
  2. SL Chrome controls? And Download Google Chrome 16 here :)
    By longsteak in forum SL Technical Issues and Bugs
    Replies: 8
    Last Post: 01-15-2012, 12:06 AM
  3. Plat users and No Plat Users Leaderboards
    By Rittik in forum SL General Discussion
    Replies: 27
    Last Post: 12-22-2011, 01:03 PM

Tags for this Thread

Bookmarks

Posting Permissions

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