Genji combo for AHK menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 42
  1. #1
    ayadew's Avatar Active Member
    Reputation
    51
    Join Date
    Feb 2007
    Posts
    166
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Genji combo for AHK

    Install AutoHotKey: https://autohotkey.com/

    This will replace your special button 2 on your mouse with the genji close-up combo.
    Replace the text "xbutton2" to whatever you want if you want to rebind it.
    https://autohotkey.com/docs/misc/Remap.htm

    It consists of Right click, Melee and then Shift.

    It will do a total of 84 + 30 + 50 = 164 damage.
    This is extremely strong for killing people fast. Soften them up with left clicks, then do the combo.
    You must obviously be very close to get the maximum damage off.

    Script:

    Code:
    xbutton2::    
        MouseClick, right
        sleep, 15
        Send {v down}{v up}
        sleep, 15
        Send {Shift down}{Shift up}
    Return
    Put this in a "genji_combo.ahk" file. Then just run it with AutoHotKey installed and press your hotkey.

    Video:

    https://gfycat.com/FailingDelectableBuffalo
    Last edited by ayadew; 06-19-2016 at 09:55 AM.

    Genji combo for AHK
  2. Thanks ziggar (1 members gave Thanks to ayadew for this useful post)
  3. #2
    SylverrFoxx's Avatar Member
    Reputation
    3
    Join Date
    Jun 2016
    Posts
    22
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any word on if AHK is bannable? I see conflicting info online. I know Blizzard banned for it in WoW, but that was for chat spam macros.
    Last edited by SylverrFoxx; 06-19-2016 at 06:57 AM.

  4. #3
    ayadew's Avatar Active Member
    Reputation
    51
    Join Date
    Feb 2007
    Posts
    166
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SylverrFoxx View Post
    Any word on if AHK is bannable? I see conflicting info online. I know Blizzard banned for it in WoW, but that was for chat spam macros.
    Entirely depends on how suspicious your activity is.
    For this? No. I have used AHK for almost a decade with Blizzard products.

  5. #4
    SylverrFoxx's Avatar Member
    Reputation
    3
    Join Date
    Jun 2016
    Posts
    22
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sounds good, I'll give it a shot. Any other heroes or combos you're working on?

  6. #5
    rheos's Avatar Banned
    Reputation
    4
    Join Date
    Jun 2016
    Posts
    32
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,

    Is it complicated to make the same for roadhog?

  7. #6
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rheos View Post
    Hi,

    Is it complicated to make the same for roadhog?
    Fairly easy, although the variable length of your hook probably makes it a bit hard. Play with the sleep durations to see what works with you... this is 100% untested.

    Code:
    xbutton2::    
        MouseClick, right
        sleep, 5
        Send {LShift down}{LShift up}
        sleep, 1031
        MouseClick, left
        sleep, 50
        Send {v down}{v up}
    Return
    EDIT: Updated with some suggested sleep values
    Last edited by Sychotix; 06-21-2016 at 05:34 AM.

  8. Thanks ziggar (1 members gave Thanks to Sychotix for this useful post)
  9. #7
    ayadew's Avatar Active Member
    Reputation
    51
    Join Date
    Feb 2007
    Posts
    166
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SylverrFoxx View Post
    Sounds good, I'll give it a shot. Any other heroes or combos you're working on?
    Havn't really found any uses for other heroes. Maybe in the future as they release more.

  10. #8
    rheos's Avatar Banned
    Reputation
    4
    Join Date
    Jun 2016
    Posts
    32
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks ! i'll try to take a look for roadhog

  11. #9
    SylverrFoxx's Avatar Member
    Reputation
    3
    Join Date
    Jun 2016
    Posts
    22
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit: Nevermind, I figured it out haha.
    Last edited by SylverrFoxx; 06-19-2016 at 11:14 AM.

  12. #10
    Admitimpro's Avatar Member
    Reputation
    6
    Join Date
    Apr 2015
    Posts
    43
    Thanks G/R
    14/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks a lot bro works really well

  13. #11
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Maybe I'm just a tinfoil hat kinda guy but I would never name my script "genji_combo" but rather something like "chrome_hotkeys".

    Not sure if the filename is something that is being checked for or not but rather be safe than sorry, right...
    Don't just say thanks, click thanks!

  14. #12
    ziggar's Avatar Active Member CoreCoins Purchaser
    Reputation
    67
    Join Date
    Jul 2008
    Posts
    324
    Thanks G/R
    51/43
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah i think ahk and autoit are fine as long as you don't target the game window. Cheers for this will test it later.

  15. #13
    qax135's Avatar Member
    Reputation
    1
    Join Date
    Jun 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    roadhog
    :
    sleep, 1
    sleep, 1031
    sleep, 50

    will be better

  16. #14
    hazedoff's Avatar Private
    Reputation
    7
    Join Date
    Jun 2016
    Posts
    8
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Surely this will autoban. They've not exactly taken a light stance towards people using AHK and AutoIT for aim bots and trigger bots so why would this be any different? it'll be evident that its humanly impossible to do that exact combo flawlessly every single time, you'll get reported and you'll get banned.

  17. #15
    ele123's Avatar Member
    Reputation
    1
    Join Date
    Mar 2015
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    doesnt work after patch?

Page 1 of 3 123 LastLast

Similar Threads

  1. [Tool] genji combo macro
    By wenoweno in forum Overwatch Exploits|Hacks
    Replies: 1
    Last Post: 08-13-2016, 02:39 AM
  2. i need help with scripting for .ahk for loging in and
    By lovemymuffin in forum WoW Bots Questions & Requests
    Replies: 1
    Last Post: 03-26-2011, 01:50 AM
  3. need help with .ahk script for showing users input text
    By lovemymuffin in forum Programming
    Replies: 0
    Last Post: 03-21-2011, 02:11 AM
  4. Auto v1 for Age of Conan(auto pot + auto combo)
    By Amishdub3 in forum Age of Conan Exploits|Hacks
    Replies: 1
    Last Post: 12-12-2010, 12:15 PM
  5. Replies: 18
    Last Post: 06-01-2007, 10:29 PM
All times are GMT -5. The time now is 07:31 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search