How can I AFK "click" in Minecraft post 1.13
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)?
69 Answers
In 1.14, there is a way to afk fish that means you can alt-tab out. You point and press with the mouse, and then unplug the mouse. This provides an autoclick that will work as an afk fisher. However, if you want to then leave Minecraft, you can reload the texture packs, (fn + F3 + T for Windows, cmd + fn + F3 + T for Mac) and then, while the packs are reloading, alt-tab out. Then, you can alt-tab in and out, no issues. Minecraft will still believe you are clicking, when in reality, you can be playing another game, or watching YouTube, or really anything else. In fact, I just did this while typing out this answer.
4As Henry Statitovski has pretty much already said, the best way to do this is to:
- Hold down right-click on the mouse.
- Press F3+T (FN+F3+T for some users)
- Before it finishes loading, Alt+Tab out of the window and let go of the right mouse button. Once it has loaded then you can tab in and out freely.
One crucial bit of information is that "pauseOnLostFocus" must be "false" to prevent the game from pausing when Alt+Tabing. This can be toggled in-game by doing F3+P (FN+F3+P for some users)
2This 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:
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 }
returnThe 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
4This 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 1For right click:
xdotool mousedown 3To 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).
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.
- Enable mouse keys in the accessibility settings of Windows (or press left Alt + left Shift + Num Lock)
- Go into Minecraft
- Select either the left (/) or the right (-) mouse button using those buttons on the numpad section
- 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)
- Press 0 on the numpad to do a "press mouse" action
- Once you are done, press . on the numpad to release the mouse again
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.
1This works on Windows with any USB mouse and depending on where your PC is and where its USB sockets are may be the easiest method.
- Press the mouse button you want.
- While having the mouse button depressed, unplug the mouse from the USB socket.
- Release the button and plug the mouse back in again.
You can still move, use other keys/buttons etc. Pressing (and releasing) that specific button again removes the 'pressed' state.
Tested as working in 1.13.x and 1.14.x on Win7 and Win10.
You can use the autoclicker/holder uploaded by a Reddit user here in the background. I hope it makes your life easier.
Put a fence post down, right click the fence, then unplug the mouse. Problem solved.
1