Detects player inactivity based on head rotation - simple, accurate, and fast. Intended as a dependency for datapacks and server operators.
This doesn't do much without add-ons (better performance), so you'll probably want to download one of those too.
afk after 3 minutesTo configure how long it takes to become AFK, use the command below. By default, this is set to 3600 (which is 3 minutes).
/scoreboard players set .threshold afk.settings NUMBER_OF_TICKS
To enable players using /trigger afk, use the following command. No players are allowed to become AFK manually unless enabled by an admin.
/scoreboard players enable PLAYER afk
Common AFK detection methods check X/Y/Z, inventory changes, and block interactions - often on every tick. Instead, this data pack does a single head rotation NBT check per player every 1.5 seconds, resulting in a significantly less computation as compared to alternatives, sometimes by up to two orders of magnitude.
The head rotation method also eliminates false triggers from entity interactions (players attacking, explosions, etc) and anti-AFK automations such as water streams.
Two function tags are provided:
afk:away - Executed as player on AFKafk:back - Executed as player on returnAdditional documentation is provided on GitHub, such as all the stable scoreboard objectives and how to use them.
Example implementation:
{ "values": ["afk_kick:kick"] }
kick @s AFK

AFK/idle detection that's extremely performant · Players go AFK after 3 minutes (configurable) without moving their mouse · Extend with plenty of add-ons!