Close
Showing results 1 to 6 of 6
  1. #1

    Question Repeating mouse clicks in AutoHotKey

    Hi,

    I am getting started with AHK and have a simple script designed to work on 1 pc, 1 window. It works:

    <hotkey esc>
    <sendpc local>
    <sendwin Lin1>
    <key F6>

    When I press the ESC key, the f6 key is pressed.

    What I need is for the f6 key to be pressed once every second continuously until the esc key is pressed again. Is there a way to make that happen?

    Kind Regards,

  2. #2
    Multiboxologist MiRai's Avatar
    Join Date
    Apr 2009
    Location
    Winter Is Coming
    Posts
    6815

    Default

    Quote Originally Posted by CharlyMcArdle View Post
    What I need is for the f6 key to be pressed once every second continuously until the esc key is pressed again. Is there a way to make that happen?
    In most (if not, all) games, this would be considered to be automation.
    Do not send me a PM if what you want to talk about isn't absolutely private.
    Ask your questions on the forum where others can also benefit from the information.

    Author of the almost unknown and heavily neglected blog: Multiboxology

  3. #3
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    You can't do that in any multiboxing software I know of. You'll need to go buy one of these Razer or Corsair programmable gamepads or keyboards or something to do that. At least in that case, when you get banned for it, you'll have a nice gamepad/keyboard.
    Now playing: WoW (Garona)

  4. #4

    Default

    If you toggle it on/off it's not automation, for instance startattack or the wand shoot. You can use the script below with autohotkey:

    Pause
    Loop{
    Send {F6}
    sleep 1000
    }
    ESC::Pause

    or something like that

  5. #5

    Default

    Quote Originally Posted by muffe View Post
    If you toggle it on/off it's not automation, for instance startattack or the wand shoot. You can use the script below with autohotkey:
    Autoattack is a function within the game that is meant to repeat automatically. A system to "toggle" automatic repetition of mechanics that are not otherwise toggleable to repeat with what is available as baseline in the game is NOT the same thing and for the case of WoW and Wildstar atleast would be a TOS violation. Probably for most other games it would be too.

  6. #6
    Multiboxologist MiRai's Avatar
    Join Date
    Apr 2009
    Location
    Winter Is Coming
    Posts
    6815

    Default

    Quote Originally Posted by muffe View Post
    If you toggle it on/off it's not automation, for instance startattack or the wand shoot.
    If you can handle something in game, then you handle it in game, but if you have set up your script to automatically press a key (or keys) for you every X seconds (e.g. the loop command), void of human input, then that is, without a doubt, automation.
    Do not send me a PM if what you want to talk about isn't absolutely private.
    Ask your questions on the forum where others can also benefit from the information.

    Author of the almost unknown and heavily neglected blog: Multiboxology

Tags for this Thread

Posting Rules

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