How can I AFK “click” in Minecraft post 1.13
up vote
4
down vote
favorite
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
New contributor
add a comment |
up vote
4
down vote
favorite
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
New contributor
Don't know if it is applicable anymore because I haven't played Minecraft in years but we used to AFK in a whirlpool. I.e. create a 9x9 block, post in the middle, sign on it, bucket of water. It would then move you round and round and let you AFK.
– TheLethalCroft
3 hours ago
Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
3 hours ago
@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
3 hours ago
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
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
New contributor
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
minecraft pc
New contributor
New contributor
edited 3 hours ago
New contributor
asked 3 hours ago
goodguy5
1214
1214
New contributor
New contributor
Don't know if it is applicable anymore because I haven't played Minecraft in years but we used to AFK in a whirlpool. I.e. create a 9x9 block, post in the middle, sign on it, bucket of water. It would then move you round and round and let you AFK.
– TheLethalCroft
3 hours ago
Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
3 hours ago
@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
3 hours ago
add a comment |
Don't know if it is applicable anymore because I haven't played Minecraft in years but we used to AFK in a whirlpool. I.e. create a 9x9 block, post in the middle, sign on it, bucket of water. It would then move you round and round and let you AFK.
– TheLethalCroft
3 hours ago
Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
3 hours ago
@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
3 hours ago
Don't know if it is applicable anymore because I haven't played Minecraft in years but we used to AFK in a whirlpool. I.e. create a 9x9 block, post in the middle, sign on it, bucket of water. It would then move you round and round and let you AFK.
– TheLethalCroft
3 hours ago
Don't know if it is applicable anymore because I haven't played Minecraft in years but we used to AFK in a whirlpool. I.e. create a 9x9 block, post in the middle, sign on it, bucket of water. It would then move you round and round and let you AFK.
– TheLethalCroft
3 hours ago
Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
3 hours ago
Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
3 hours ago
@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
3 hours ago
@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
3 hours ago
add a comment |
3 Answers
3
active
oldest
votes
up vote
6
down vote
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
New contributor
Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
– Fabian Röling
2 hours ago
2
@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
2 hours ago
add a comment |
up vote
2
down vote
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).
add a comment |
up vote
2
down vote
This solution is not Minecraft specific; it uses the in build options of Windows to do this
If you are using Windows, it has something build 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 for 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
will that continually "press mouse"?
– goodguy5
30 mins ago
Yes, the0
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
28 mins ago
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
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
New contributor
Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
– Fabian Röling
2 hours ago
2
@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
2 hours ago
add a comment |
up vote
6
down vote
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
New contributor
Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
– Fabian Röling
2 hours ago
2
@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
2 hours ago
add a comment |
up vote
6
down vote
up vote
6
down vote
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
New contributor
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
New contributor
New contributor
answered 2 hours ago
Bilkokuya
33128
33128
New contributor
New contributor
Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
– Fabian Röling
2 hours ago
2
@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
2 hours ago
add a comment |
Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
– Fabian Röling
2 hours ago
2
@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
2 hours ago
Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
– Fabian Röling
2 hours ago
Way too complicated. You don't need scripting, you can just set an autoclicker to a very slow speed.
– Fabian Röling
2 hours ago
2
2
@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
2 hours ago
@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
2 hours ago
add a comment |
up vote
2
down vote
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).
add a comment |
up vote
2
down vote
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).
add a comment |
up vote
2
down vote
up vote
2
down vote
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).
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).
edited 1 hour ago
answered 2 hours ago
Fabian Röling
5,08931236
5,08931236
add a comment |
add a comment |
up vote
2
down vote
This solution is not Minecraft specific; it uses the in build options of Windows to do this
If you are using Windows, it has something build 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 for 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
will that continually "press mouse"?
– goodguy5
30 mins ago
Yes, the0
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
28 mins ago
add a comment |
up vote
2
down vote
This solution is not Minecraft specific; it uses the in build options of Windows to do this
If you are using Windows, it has something build 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 for 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
will that continually "press mouse"?
– goodguy5
30 mins ago
Yes, the0
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
28 mins ago
add a comment |
up vote
2
down vote
up vote
2
down vote
This solution is not Minecraft specific; it uses the in build options of Windows to do this
If you are using Windows, it has something build 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 for 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; it uses the in build options of Windows to do this
If you are using Windows, it has something build 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 for 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
answered 39 mins ago
Ferrybig
413412
413412
will that continually "press mouse"?
– goodguy5
30 mins ago
Yes, the0
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
28 mins ago
add a comment |
will that continually "press mouse"?
– goodguy5
30 mins ago
Yes, the0
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
28 mins ago
will that continually "press mouse"?
– goodguy5
30 mins ago
will that continually "press mouse"?
– goodguy5
30 mins ago
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
28 mins ago
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
28 mins ago
add a comment |
goodguy5 is a new contributor. Be nice, and check out our Code of Conduct.
goodguy5 is a new contributor. Be nice, and check out our Code of Conduct.
goodguy5 is a new contributor. Be nice, and check out our Code of Conduct.
goodguy5 is a new contributor. Be nice, and check out our Code of Conduct.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Don't know if it is applicable anymore because I haven't played Minecraft in years but we used to AFK in a whirlpool. I.e. create a 9x9 block, post in the middle, sign on it, bucket of water. It would then move you round and round and let you AFK.
– TheLethalCroft
3 hours ago
Are you open to solutions external to the game (autohotkey, etc.)? And if so, which platform are you using?
– Bilkokuya
3 hours ago
@Bilkokuya platform updated to PC (Java Edition). I would be open to any simple and effective solution.
– goodguy5
3 hours ago