How can I AFK “click” in Minecraft post 1.13

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












7














Since Minecraft's release (and I believe since its creation), there was a bug that allowed you a to repeatedly input a command. I've seen it called the "afk bug", "F11 bug", or "alt tab bug".



Basically, you held down some key(s) and pressed f11 to toggle between windowed and full screen. Then the command would continue to be input. This command would persist to be input even after you alt tab to something else. Honestly, I almost thought it was a feature.



But 1.13 fixed my "feature" that I used mainly for fishing and cobblestone.



How can I AFK click in Minecraft post 1.13 (Java Edition)?










share|improve this question



















  • 1




    Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
    – Bilkokuya
    Dec 12 at 13:09






  • 1




    @Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
    – goodguy5
    Dec 12 at 13:19















7














Since Minecraft's release (and I believe since its creation), there was a bug that allowed you a to repeatedly input a command. I've seen it called the "afk bug", "F11 bug", or "alt tab bug".



Basically, you held down some key(s) and pressed f11 to toggle between windowed and full screen. Then the command would continue to be input. This command would persist to be input even after you alt tab to something else. Honestly, I almost thought it was a feature.



But 1.13 fixed my "feature" that I used mainly for fishing and cobblestone.



How can I AFK click in Minecraft post 1.13 (Java Edition)?










share|improve this question



















  • 1




    Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
    – Bilkokuya
    Dec 12 at 13:09






  • 1




    @Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
    – goodguy5
    Dec 12 at 13:19













7












7








7


1





Since Minecraft's release (and I believe since its creation), there was a bug that allowed you a to repeatedly input a command. I've seen it called the "afk bug", "F11 bug", or "alt tab bug".



Basically, you held down some key(s) and pressed f11 to toggle between windowed and full screen. Then the command would continue to be input. This command would persist to be input even after you alt tab to something else. Honestly, I almost thought it was a feature.



But 1.13 fixed my "feature" that I used mainly for fishing and cobblestone.



How can I AFK click in Minecraft post 1.13 (Java Edition)?










share|improve this question















Since Minecraft's release (and I believe since its creation), there was a bug that allowed you a to repeatedly input a command. I've seen it called the "afk bug", "F11 bug", or "alt tab bug".



Basically, you held down some key(s) and pressed f11 to toggle between windowed and full screen. Then the command would continue to be input. This command would persist to be input even after you alt tab to something else. Honestly, I almost thought it was a feature.



But 1.13 fixed my "feature" that I used mainly for fishing and cobblestone.



How can I AFK click in Minecraft post 1.13 (Java Edition)?







minecraft pc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 12 at 13:18

























asked Dec 12 at 12:53









goodguy5

1365




1365







  • 1




    Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
    – Bilkokuya
    Dec 12 at 13:09






  • 1




    @Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
    – goodguy5
    Dec 12 at 13:19












  • 1




    Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
    – Bilkokuya
    Dec 12 at 13:09






  • 1




    @Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
    – goodguy5
    Dec 12 at 13:19







1




1




Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
Dec 12 at 13:09




Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
Dec 12 at 13:09




1




1




@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
Dec 12 at 13:19




@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
Dec 12 at 13:19










4 Answers
4






active

oldest

votes


















13














This solution is not Minecraft specific; it uses the external tool "Auto Hotkey" to emulate clicks



For any auto-clicking, or any keyboard emulation behaviour - I'd recommend looking at AutoHotkey (AHK).



This is a 3rd party program for Windows, which allows you to emulate any number of keyboards and mice, and programmatically control them. Due to it's prevelance, most tasks you wish to accomplish have already been solved and shared online.



There is a usage guide on their official site, for how to install AHK and how to create the auto-clicking scripts you need: https://autohotkey.com/docs/Tutorial.htm



Please note, as with any 3rd party software - usage is at your own risk.




For the autoclicking script itself, here is a simple example:



toggle = 0
#MaxThreadsPerHotkey 2

F8::
Toggle := !Toggle
While Toggle
Click
sleep 100

return


The effect is, once the key "F8" is pressed; AHK will begin looping the Click action. Once the F8 key is pressed again, the value of "Toggle" is reset, and the loop ends. It allows you to turn on and off the clicking. There are of course, much more complex auto-clicking techniques you can employ using AHK.



Using online tutorials and searching, I'm sure you will be able to tailor this to your needs. Otherwise, specific AHK scripting questions can be answered on StackOverflow.SE






share|improve this answer


















  • 1




    Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
    – Fabian Röling
    Dec 12 at 14:10






  • 12




    @FabianRöling I agree there are definitely simpler auto-clicking tools. However, AHK is a widely adopted tool with a good reputation for being safe and compatible (that is, it has a reputation for not containing malware, and is open source - if any future users wish to inspect it). Moreover, while it may seem overkill in the first instance, it is flexible and allows OP to do a lot more in future if they wish. I would be reluctant to recommend any other specific auto-clicker due to the prevelance of malware in 3rd party software from sources without a reputation.
    – Bilkokuya
    Dec 12 at 14:17










  • Does this tool allow one to alt tab or does the screen have to be on the thing being clicked?
    – goodguy5
    Dec 12 at 17:04






  • 3




    @goodguy5 The script above will require the window to be open (it will just click whatever is under the cursor). However, AHK does have support for clicking specific windows while they are unfocused. See Control Click: autohotkey.com/docs/commands/ControlClick.htm (it's also likely you'll find a script you can just "use" from online searching)
    – Bilkokuya
    Dec 12 at 17:08


















6














This solution is not Minecraft specific; it uses the external tool "xdotool" to emulate clicks



If you're on Linux, there's a very nice automation tool called xdotool, usually available in the default package sources, so it should be in Synaptic, Ubuntu software center, etc.



With it, you can not only write scripts to automate mouse and keyboard, but you can also just enter simple commands into the command line, including single key/mouse down/up events. So to permanently hold left click, just enter this into a command line after installing xdotool:



xdotool mousedown 1


For right click:



xdotool mousedown 3


To stop it, just click that mouse button.



To wait a bit before holding the button, write "sleep 10 &&" before the command (or any other number of seconds).






share|improve this answer


















  • 2




    Nice answer, but note that xdotool is an X11 specific thing that won't work on Wayland. So if you're using Fedora for example, you'll have to change your system configuration to make it work.
    – undercat
    Dec 12 at 21:56


















4














This solution is not Minecraft specific; it uses the built-in options of Windows to do this



If you are using Windows, it has something built-in for this.



Go to the accessibility settings and turn on mouse keys.



This gives you access to using the numpad section of the keyboard to control the mouse. One of the important features we need is the "press mouse" action.



  1. Enable mouse keys in the accessibility settings of Windows (or press left Alt + left Shift + Num Lock)

  2. Go into Minecraft

  3. Select either the left (/) or the right (-) mouse button using those buttons on the numpad section

  4. Look in the direction you want to execute the mouse action in (yes you could also use the numpad to move the mouse, but this is harder for most people)

  5. Press 0 on the numpad to do a "press mouse" action

  6. Once you are done, press . on the numpad to release the mouse again





share|improve this answer






















  • will that continually "press mouse"?
    – goodguy5
    Dec 12 at 16:05










  • Yes, the 0 function is designed to basically do the pressing part of a drag & drop interaction, and for this, you need to hold the mouse, and that is what you need to do in Minecraft for fishing and mining
    – Ferrybig
    Dec 12 at 16:07










  • That will hold the mouse button down, not click multiple times.
    – Ismael Miguel
    Dec 12 at 21:02










  • @IsmaelMiguel If you read the question, the OP mentions that he used the trick of holding a mouse button while changing f11 state. This also holds a mouse button, instead of pressing it multiple times, and holding it is used for mining and AFK fishing machines
    – Ferrybig
    Dec 12 at 21:11


















4














This solution is not Minecraft specific.



If you're just trying to hold down the mouse button forever, you really don't need more than a rock. Or some heavy object. Tape works too. Just secure the mouse button down with something.



Yes, this is the dumbest, least intelligent solution, but it does ensure the mouse stays pressed. It also means you cannot do anything else with the machine while you're "automatically" clicking, but that may be true of the more intelligent (AutoHotKey, xdotool) responses as well (I am not entirely sure myself.)



It does have the upside of being completely platform-agnostic and doesn't require you to install any software or change any settings.






share|improve this answer




















    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "41"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    noCode: true, onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f342303%2fhow-can-i-afk-click-in-minecraft-post-1-13%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    4 Answers
    4






    active

    oldest

    votes








    4 Answers
    4






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    13














    This solution is not Minecraft specific; it uses the external tool "Auto Hotkey" to emulate clicks



    For any auto-clicking, or any keyboard emulation behaviour - I'd recommend looking at AutoHotkey (AHK).



    This is a 3rd party program for Windows, which allows you to emulate any number of keyboards and mice, and programmatically control them. Due to it's prevelance, most tasks you wish to accomplish have already been solved and shared online.



    There is a usage guide on their official site, for how to install AHK and how to create the auto-clicking scripts you need: https://autohotkey.com/docs/Tutorial.htm



    Please note, as with any 3rd party software - usage is at your own risk.




    For the autoclicking script itself, here is a simple example:



    toggle = 0
    #MaxThreadsPerHotkey 2

    F8::
    Toggle := !Toggle
    While Toggle
    Click
    sleep 100

    return


    The effect is, once the key "F8" is pressed; AHK will begin looping the Click action. Once the F8 key is pressed again, the value of "Toggle" is reset, and the loop ends. It allows you to turn on and off the clicking. There are of course, much more complex auto-clicking techniques you can employ using AHK.



    Using online tutorials and searching, I'm sure you will be able to tailor this to your needs. Otherwise, specific AHK scripting questions can be answered on StackOverflow.SE






    share|improve this answer


















    • 1




      Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
      – Fabian Röling
      Dec 12 at 14:10






    • 12




      @FabianRöling I agree there are definitely simpler auto-clicking tools. However, AHK is a widely adopted tool with a good reputation for being safe and compatible (that is, it has a reputation for not containing malware, and is open source - if any future users wish to inspect it). Moreover, while it may seem overkill in the first instance, it is flexible and allows OP to do a lot more in future if they wish. I would be reluctant to recommend any other specific auto-clicker due to the prevelance of malware in 3rd party software from sources without a reputation.
      – Bilkokuya
      Dec 12 at 14:17










    • Does this tool allow one to alt tab or does the screen have to be on the thing being clicked?
      – goodguy5
      Dec 12 at 17:04






    • 3




      @goodguy5 The script above will require the window to be open (it will just click whatever is under the cursor). However, AHK does have support for clicking specific windows while they are unfocused. See Control Click: autohotkey.com/docs/commands/ControlClick.htm (it's also likely you'll find a script you can just "use" from online searching)
      – Bilkokuya
      Dec 12 at 17:08















    13














    This solution is not Minecraft specific; it uses the external tool "Auto Hotkey" to emulate clicks



    For any auto-clicking, or any keyboard emulation behaviour - I'd recommend looking at AutoHotkey (AHK).



    This is a 3rd party program for Windows, which allows you to emulate any number of keyboards and mice, and programmatically control them. Due to it's prevelance, most tasks you wish to accomplish have already been solved and shared online.



    There is a usage guide on their official site, for how to install AHK and how to create the auto-clicking scripts you need: https://autohotkey.com/docs/Tutorial.htm



    Please note, as with any 3rd party software - usage is at your own risk.




    For the autoclicking script itself, here is a simple example:



    toggle = 0
    #MaxThreadsPerHotkey 2

    F8::
    Toggle := !Toggle
    While Toggle
    Click
    sleep 100

    return


    The effect is, once the key "F8" is pressed; AHK will begin looping the Click action. Once the F8 key is pressed again, the value of "Toggle" is reset, and the loop ends. It allows you to turn on and off the clicking. There are of course, much more complex auto-clicking techniques you can employ using AHK.



    Using online tutorials and searching, I'm sure you will be able to tailor this to your needs. Otherwise, specific AHK scripting questions can be answered on StackOverflow.SE






    share|improve this answer


















    • 1




      Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
      – Fabian Röling
      Dec 12 at 14:10






    • 12




      @FabianRöling I agree there are definitely simpler auto-clicking tools. However, AHK is a widely adopted tool with a good reputation for being safe and compatible (that is, it has a reputation for not containing malware, and is open source - if any future users wish to inspect it). Moreover, while it may seem overkill in the first instance, it is flexible and allows OP to do a lot more in future if they wish. I would be reluctant to recommend any other specific auto-clicker due to the prevelance of malware in 3rd party software from sources without a reputation.
      – Bilkokuya
      Dec 12 at 14:17










    • Does this tool allow one to alt tab or does the screen have to be on the thing being clicked?
      – goodguy5
      Dec 12 at 17:04






    • 3




      @goodguy5 The script above will require the window to be open (it will just click whatever is under the cursor). However, AHK does have support for clicking specific windows while they are unfocused. See Control Click: autohotkey.com/docs/commands/ControlClick.htm (it's also likely you'll find a script you can just "use" from online searching)
      – Bilkokuya
      Dec 12 at 17:08













    13












    13








    13






    This solution is not Minecraft specific; it uses the external tool "Auto Hotkey" to emulate clicks



    For any auto-clicking, or any keyboard emulation behaviour - I'd recommend looking at AutoHotkey (AHK).



    This is a 3rd party program for Windows, which allows you to emulate any number of keyboards and mice, and programmatically control them. Due to it's prevelance, most tasks you wish to accomplish have already been solved and shared online.



    There is a usage guide on their official site, for how to install AHK and how to create the auto-clicking scripts you need: https://autohotkey.com/docs/Tutorial.htm



    Please note, as with any 3rd party software - usage is at your own risk.




    For the autoclicking script itself, here is a simple example:



    toggle = 0
    #MaxThreadsPerHotkey 2

    F8::
    Toggle := !Toggle
    While Toggle
    Click
    sleep 100

    return


    The effect is, once the key "F8" is pressed; AHK will begin looping the Click action. Once the F8 key is pressed again, the value of "Toggle" is reset, and the loop ends. It allows you to turn on and off the clicking. There are of course, much more complex auto-clicking techniques you can employ using AHK.



    Using online tutorials and searching, I'm sure you will be able to tailor this to your needs. Otherwise, specific AHK scripting questions can be answered on StackOverflow.SE






    share|improve this answer














    This solution is not Minecraft specific; it uses the external tool "Auto Hotkey" to emulate clicks



    For any auto-clicking, or any keyboard emulation behaviour - I'd recommend looking at AutoHotkey (AHK).



    This is a 3rd party program for Windows, which allows you to emulate any number of keyboards and mice, and programmatically control them. Due to it's prevelance, most tasks you wish to accomplish have already been solved and shared online.



    There is a usage guide on their official site, for how to install AHK and how to create the auto-clicking scripts you need: https://autohotkey.com/docs/Tutorial.htm



    Please note, as with any 3rd party software - usage is at your own risk.




    For the autoclicking script itself, here is a simple example:



    toggle = 0
    #MaxThreadsPerHotkey 2

    F8::
    Toggle := !Toggle
    While Toggle
    Click
    sleep 100

    return


    The effect is, once the key "F8" is pressed; AHK will begin looping the Click action. Once the F8 key is pressed again, the value of "Toggle" is reset, and the loop ends. It allows you to turn on and off the clicking. There are of course, much more complex auto-clicking techniques you can employ using AHK.



    Using online tutorials and searching, I'm sure you will be able to tailor this to your needs. Otherwise, specific AHK scripting questions can be answered on StackOverflow.SE







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Dec 12 at 21:24









    Fabian Röling

    5,22731236




    5,22731236










    answered Dec 12 at 13:38









    Bilkokuya

    62159




    62159







    • 1




      Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
      – Fabian Röling
      Dec 12 at 14:10






    • 12




      @FabianRöling I agree there are definitely simpler auto-clicking tools. However, AHK is a widely adopted tool with a good reputation for being safe and compatible (that is, it has a reputation for not containing malware, and is open source - if any future users wish to inspect it). Moreover, while it may seem overkill in the first instance, it is flexible and allows OP to do a lot more in future if they wish. I would be reluctant to recommend any other specific auto-clicker due to the prevelance of malware in 3rd party software from sources without a reputation.
      – Bilkokuya
      Dec 12 at 14:17










    • Does this tool allow one to alt tab or does the screen have to be on the thing being clicked?
      – goodguy5
      Dec 12 at 17:04






    • 3




      @goodguy5 The script above will require the window to be open (it will just click whatever is under the cursor). However, AHK does have support for clicking specific windows while they are unfocused. See Control Click: autohotkey.com/docs/commands/ControlClick.htm (it's also likely you'll find a script you can just "use" from online searching)
      – Bilkokuya
      Dec 12 at 17:08












    • 1




      Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
      – Fabian Röling
      Dec 12 at 14:10






    • 12




      @FabianRöling I agree there are definitely simpler auto-clicking tools. However, AHK is a widely adopted tool with a good reputation for being safe and compatible (that is, it has a reputation for not containing malware, and is open source - if any future users wish to inspect it). Moreover, while it may seem overkill in the first instance, it is flexible and allows OP to do a lot more in future if they wish. I would be reluctant to recommend any other specific auto-clicker due to the prevelance of malware in 3rd party software from sources without a reputation.
      – Bilkokuya
      Dec 12 at 14:17










    • Does this tool allow one to alt tab or does the screen have to be on the thing being clicked?
      – goodguy5
      Dec 12 at 17:04






    • 3




      @goodguy5 The script above will require the window to be open (it will just click whatever is under the cursor). However, AHK does have support for clicking specific windows while they are unfocused. See Control Click: autohotkey.com/docs/commands/ControlClick.htm (it's also likely you'll find a script you can just "use" from online searching)
      – Bilkokuya
      Dec 12 at 17:08







    1




    1




    Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
    – Fabian Röling
    Dec 12 at 14:10




    Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
    – Fabian Röling
    Dec 12 at 14:10




    12




    12




    @FabianRöling I agree there are definitely simpler auto-clicking tools. However, AHK is a widely adopted tool with a good reputation for being safe and compatible (that is, it has a reputation for not containing malware, and is open source - if any future users wish to inspect it). Moreover, while it may seem overkill in the first instance, it is flexible and allows OP to do a lot more in future if they wish. I would be reluctant to recommend any other specific auto-clicker due to the prevelance of malware in 3rd party software from sources without a reputation.
    – Bilkokuya
    Dec 12 at 14:17




    @FabianRöling I agree there are definitely simpler auto-clicking tools. However, AHK is a widely adopted tool with a good reputation for being safe and compatible (that is, it has a reputation for not containing malware, and is open source - if any future users wish to inspect it). Moreover, while it may seem overkill in the first instance, it is flexible and allows OP to do a lot more in future if they wish. I would be reluctant to recommend any other specific auto-clicker due to the prevelance of malware in 3rd party software from sources without a reputation.
    – Bilkokuya
    Dec 12 at 14:17












    Does this tool allow one to alt tab or does the screen have to be on the thing being clicked?
    – goodguy5
    Dec 12 at 17:04




    Does this tool allow one to alt tab or does the screen have to be on the thing being clicked?
    – goodguy5
    Dec 12 at 17:04




    3




    3




    @goodguy5 The script above will require the window to be open (it will just click whatever is under the cursor). However, AHK does have support for clicking specific windows while they are unfocused. See Control Click: autohotkey.com/docs/commands/ControlClick.htm (it's also likely you'll find a script you can just "use" from online searching)
    – Bilkokuya
    Dec 12 at 17:08




    @goodguy5 The script above will require the window to be open (it will just click whatever is under the cursor). However, AHK does have support for clicking specific windows while they are unfocused. See Control Click: autohotkey.com/docs/commands/ControlClick.htm (it's also likely you'll find a script you can just "use" from online searching)
    – Bilkokuya
    Dec 12 at 17:08













    6














    This solution is not Minecraft specific; it uses the external tool "xdotool" to emulate clicks



    If you're on Linux, there's a very nice automation tool called xdotool, usually available in the default package sources, so it should be in Synaptic, Ubuntu software center, etc.



    With it, you can not only write scripts to automate mouse and keyboard, but you can also just enter simple commands into the command line, including single key/mouse down/up events. So to permanently hold left click, just enter this into a command line after installing xdotool:



    xdotool mousedown 1


    For right click:



    xdotool mousedown 3


    To stop it, just click that mouse button.



    To wait a bit before holding the button, write "sleep 10 &&" before the command (or any other number of seconds).






    share|improve this answer


















    • 2




      Nice answer, but note that xdotool is an X11 specific thing that won't work on Wayland. So if you're using Fedora for example, you'll have to change your system configuration to make it work.
      – undercat
      Dec 12 at 21:56















    6














    This solution is not Minecraft specific; it uses the external tool "xdotool" to emulate clicks



    If you're on Linux, there's a very nice automation tool called xdotool, usually available in the default package sources, so it should be in Synaptic, Ubuntu software center, etc.



    With it, you can not only write scripts to automate mouse and keyboard, but you can also just enter simple commands into the command line, including single key/mouse down/up events. So to permanently hold left click, just enter this into a command line after installing xdotool:



    xdotool mousedown 1


    For right click:



    xdotool mousedown 3


    To stop it, just click that mouse button.



    To wait a bit before holding the button, write "sleep 10 &&" before the command (or any other number of seconds).






    share|improve this answer


















    • 2




      Nice answer, but note that xdotool is an X11 specific thing that won't work on Wayland. So if you're using Fedora for example, you'll have to change your system configuration to make it work.
      – undercat
      Dec 12 at 21:56













    6












    6








    6






    This solution is not Minecraft specific; it uses the external tool "xdotool" to emulate clicks



    If you're on Linux, there's a very nice automation tool called xdotool, usually available in the default package sources, so it should be in Synaptic, Ubuntu software center, etc.



    With it, you can not only write scripts to automate mouse and keyboard, but you can also just enter simple commands into the command line, including single key/mouse down/up events. So to permanently hold left click, just enter this into a command line after installing xdotool:



    xdotool mousedown 1


    For right click:



    xdotool mousedown 3


    To stop it, just click that mouse button.



    To wait a bit before holding the button, write "sleep 10 &&" before the command (or any other number of seconds).






    share|improve this answer














    This solution is not Minecraft specific; it uses the external tool "xdotool" to emulate clicks



    If you're on Linux, there's a very nice automation tool called xdotool, usually available in the default package sources, so it should be in Synaptic, Ubuntu software center, etc.



    With it, you can not only write scripts to automate mouse and keyboard, but you can also just enter simple commands into the command line, including single key/mouse down/up events. So to permanently hold left click, just enter this into a command line after installing xdotool:



    xdotool mousedown 1


    For right click:



    xdotool mousedown 3


    To stop it, just click that mouse button.



    To wait a bit before holding the button, write "sleep 10 &&" before the command (or any other number of seconds).







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Dec 12 at 21:24

























    answered Dec 12 at 14:29









    Fabian Röling

    5,22731236




    5,22731236







    • 2




      Nice answer, but note that xdotool is an X11 specific thing that won't work on Wayland. So if you're using Fedora for example, you'll have to change your system configuration to make it work.
      – undercat
      Dec 12 at 21:56












    • 2




      Nice answer, but note that xdotool is an X11 specific thing that won't work on Wayland. So if you're using Fedora for example, you'll have to change your system configuration to make it work.
      – undercat
      Dec 12 at 21:56







    2




    2




    Nice answer, but note that xdotool is an X11 specific thing that won't work on Wayland. So if you're using Fedora for example, you'll have to change your system configuration to make it work.
    – undercat
    Dec 12 at 21:56




    Nice answer, but note that xdotool is an X11 specific thing that won't work on Wayland. So if you're using Fedora for example, you'll have to change your system configuration to make it work.
    – undercat
    Dec 12 at 21:56











    4














    This solution is not Minecraft specific; it uses the built-in options of Windows to do this



    If you are using Windows, it has something built-in for this.



    Go to the accessibility settings and turn on mouse keys.



    This gives you access to using the numpad section of the keyboard to control the mouse. One of the important features we need is the "press mouse" action.



    1. Enable mouse keys in the accessibility settings of Windows (or press left Alt + left Shift + Num Lock)

    2. Go into Minecraft

    3. Select either the left (/) or the right (-) mouse button using those buttons on the numpad section

    4. Look in the direction you want to execute the mouse action in (yes you could also use the numpad to move the mouse, but this is harder for most people)

    5. Press 0 on the numpad to do a "press mouse" action

    6. Once you are done, press . on the numpad to release the mouse again





    share|improve this answer






















    • will that continually "press mouse"?
      – goodguy5
      Dec 12 at 16:05










    • Yes, the 0 function is designed to basically do the pressing part of a drag & drop interaction, and for this, you need to hold the mouse, and that is what you need to do in Minecraft for fishing and mining
      – Ferrybig
      Dec 12 at 16:07










    • That will hold the mouse button down, not click multiple times.
      – Ismael Miguel
      Dec 12 at 21:02










    • @IsmaelMiguel If you read the question, the OP mentions that he used the trick of holding a mouse button while changing f11 state. This also holds a mouse button, instead of pressing it multiple times, and holding it is used for mining and AFK fishing machines
      – Ferrybig
      Dec 12 at 21:11















    4














    This solution is not Minecraft specific; it uses the built-in options of Windows to do this



    If you are using Windows, it has something built-in for this.



    Go to the accessibility settings and turn on mouse keys.



    This gives you access to using the numpad section of the keyboard to control the mouse. One of the important features we need is the "press mouse" action.



    1. Enable mouse keys in the accessibility settings of Windows (or press left Alt + left Shift + Num Lock)

    2. Go into Minecraft

    3. Select either the left (/) or the right (-) mouse button using those buttons on the numpad section

    4. Look in the direction you want to execute the mouse action in (yes you could also use the numpad to move the mouse, but this is harder for most people)

    5. Press 0 on the numpad to do a "press mouse" action

    6. Once you are done, press . on the numpad to release the mouse again





    share|improve this answer






















    • will that continually "press mouse"?
      – goodguy5
      Dec 12 at 16:05










    • Yes, the 0 function is designed to basically do the pressing part of a drag & drop interaction, and for this, you need to hold the mouse, and that is what you need to do in Minecraft for fishing and mining
      – Ferrybig
      Dec 12 at 16:07










    • That will hold the mouse button down, not click multiple times.
      – Ismael Miguel
      Dec 12 at 21:02










    • @IsmaelMiguel If you read the question, the OP mentions that he used the trick of holding a mouse button while changing f11 state. This also holds a mouse button, instead of pressing it multiple times, and holding it is used for mining and AFK fishing machines
      – Ferrybig
      Dec 12 at 21:11













    4












    4








    4






    This solution is not Minecraft specific; it uses the built-in options of Windows to do this



    If you are using Windows, it has something built-in for this.



    Go to the accessibility settings and turn on mouse keys.



    This gives you access to using the numpad section of the keyboard to control the mouse. One of the important features we need is the "press mouse" action.



    1. Enable mouse keys in the accessibility settings of Windows (or press left Alt + left Shift + Num Lock)

    2. Go into Minecraft

    3. Select either the left (/) or the right (-) mouse button using those buttons on the numpad section

    4. Look in the direction you want to execute the mouse action in (yes you could also use the numpad to move the mouse, but this is harder for most people)

    5. Press 0 on the numpad to do a "press mouse" action

    6. Once you are done, press . on the numpad to release the mouse again





    share|improve this answer














    This solution is not Minecraft specific; it uses the built-in options of Windows to do this



    If you are using Windows, it has something built-in for this.



    Go to the accessibility settings and turn on mouse keys.



    This gives you access to using the numpad section of the keyboard to control the mouse. One of the important features we need is the "press mouse" action.



    1. Enable mouse keys in the accessibility settings of Windows (or press left Alt + left Shift + Num Lock)

    2. Go into Minecraft

    3. Select either the left (/) or the right (-) mouse button using those buttons on the numpad section

    4. Look in the direction you want to execute the mouse action in (yes you could also use the numpad to move the mouse, but this is harder for most people)

    5. Press 0 on the numpad to do a "press mouse" action

    6. Once you are done, press . on the numpad to release the mouse again






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Dec 13 at 17:44









    Community

    1




    1










    answered Dec 12 at 15:56









    Ferrybig

    432412




    432412











    • will that continually "press mouse"?
      – goodguy5
      Dec 12 at 16:05










    • Yes, the 0 function is designed to basically do the pressing part of a drag & drop interaction, and for this, you need to hold the mouse, and that is what you need to do in Minecraft for fishing and mining
      – Ferrybig
      Dec 12 at 16:07










    • That will hold the mouse button down, not click multiple times.
      – Ismael Miguel
      Dec 12 at 21:02










    • @IsmaelMiguel If you read the question, the OP mentions that he used the trick of holding a mouse button while changing f11 state. This also holds a mouse button, instead of pressing it multiple times, and holding it is used for mining and AFK fishing machines
      – Ferrybig
      Dec 12 at 21:11
















    • will that continually "press mouse"?
      – goodguy5
      Dec 12 at 16:05










    • Yes, the 0 function is designed to basically do the pressing part of a drag & drop interaction, and for this, you need to hold the mouse, and that is what you need to do in Minecraft for fishing and mining
      – Ferrybig
      Dec 12 at 16:07










    • That will hold the mouse button down, not click multiple times.
      – Ismael Miguel
      Dec 12 at 21:02










    • @IsmaelMiguel If you read the question, the OP mentions that he used the trick of holding a mouse button while changing f11 state. This also holds a mouse button, instead of pressing it multiple times, and holding it is used for mining and AFK fishing machines
      – Ferrybig
      Dec 12 at 21:11















    will that continually "press mouse"?
    – goodguy5
    Dec 12 at 16:05




    will that continually "press mouse"?
    – goodguy5
    Dec 12 at 16:05












    Yes, the 0 function is designed to basically do the pressing part of a drag & drop interaction, and for this, you need to hold the mouse, and that is what you need to do in Minecraft for fishing and mining
    – Ferrybig
    Dec 12 at 16:07




    Yes, the 0 function is designed to basically do the pressing part of a drag & drop interaction, and for this, you need to hold the mouse, and that is what you need to do in Minecraft for fishing and mining
    – Ferrybig
    Dec 12 at 16:07












    That will hold the mouse button down, not click multiple times.
    – Ismael Miguel
    Dec 12 at 21:02




    That will hold the mouse button down, not click multiple times.
    – Ismael Miguel
    Dec 12 at 21:02












    @IsmaelMiguel If you read the question, the OP mentions that he used the trick of holding a mouse button while changing f11 state. This also holds a mouse button, instead of pressing it multiple times, and holding it is used for mining and AFK fishing machines
    – Ferrybig
    Dec 12 at 21:11




    @IsmaelMiguel If you read the question, the OP mentions that he used the trick of holding a mouse button while changing f11 state. This also holds a mouse button, instead of pressing it multiple times, and holding it is used for mining and AFK fishing machines
    – Ferrybig
    Dec 12 at 21:11











    4














    This solution is not Minecraft specific.



    If you're just trying to hold down the mouse button forever, you really don't need more than a rock. Or some heavy object. Tape works too. Just secure the mouse button down with something.



    Yes, this is the dumbest, least intelligent solution, but it does ensure the mouse stays pressed. It also means you cannot do anything else with the machine while you're "automatically" clicking, but that may be true of the more intelligent (AutoHotKey, xdotool) responses as well (I am not entirely sure myself.)



    It does have the upside of being completely platform-agnostic and doesn't require you to install any software or change any settings.






    share|improve this answer

























      4














      This solution is not Minecraft specific.



      If you're just trying to hold down the mouse button forever, you really don't need more than a rock. Or some heavy object. Tape works too. Just secure the mouse button down with something.



      Yes, this is the dumbest, least intelligent solution, but it does ensure the mouse stays pressed. It also means you cannot do anything else with the machine while you're "automatically" clicking, but that may be true of the more intelligent (AutoHotKey, xdotool) responses as well (I am not entirely sure myself.)



      It does have the upside of being completely platform-agnostic and doesn't require you to install any software or change any settings.






      share|improve this answer























        4












        4








        4






        This solution is not Minecraft specific.



        If you're just trying to hold down the mouse button forever, you really don't need more than a rock. Or some heavy object. Tape works too. Just secure the mouse button down with something.



        Yes, this is the dumbest, least intelligent solution, but it does ensure the mouse stays pressed. It also means you cannot do anything else with the machine while you're "automatically" clicking, but that may be true of the more intelligent (AutoHotKey, xdotool) responses as well (I am not entirely sure myself.)



        It does have the upside of being completely platform-agnostic and doesn't require you to install any software or change any settings.






        share|improve this answer












        This solution is not Minecraft specific.



        If you're just trying to hold down the mouse button forever, you really don't need more than a rock. Or some heavy object. Tape works too. Just secure the mouse button down with something.



        Yes, this is the dumbest, least intelligent solution, but it does ensure the mouse stays pressed. It also means you cannot do anything else with the machine while you're "automatically" clicking, but that may be true of the more intelligent (AutoHotKey, xdotool) responses as well (I am not entirely sure myself.)



        It does have the upside of being completely platform-agnostic and doesn't require you to install any software or change any settings.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 13 at 18:14









        c.berger

        412




        412



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Arqade!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f342303%2fhow-can-i-afk-click-in-minecraft-post-1-13%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown






            Popular posts from this blog

            How to check contact read email or not when send email to Individual?

            Bahrain

            Postfix configuration issue with fips on centos 7; mailgun relay