US Trends

what part of my qbx server due i config being afk?

For a Qbox server, AFK handling is usually configured in qb- smallresources or an AFK-specific resource, not in qbx_core itself. The AFK timer logic is tied to the smallresources AFK settings, and one example config shows Config.AFK with secondsUntilKick for kick timing; another Qbox-related source notes the AFK logic belongs in qb-smallresources.

What to check

  • qb-smallresources for AFK kick settings, especially anything like Config.AFK or secondsUntilKick.
  • Any separate AFK script you installed, since some servers use dedicated AFK resources instead of the built-in logic.
  • Your server.cfg to confirm the resource is actually started and loaded in the right order.

Where the setting usually lives

A common pattern is a config block like this in the AFK-related resource:

  • ignoredGroups, so staff roles do not get kicked.
  • secondsUntilKick, which controls the idle timeout.
  • Warning/notification options before the kick happens.

Qbox-specific note

If you are using Qbox and your players are AFK on the character screen, one report says that behavior should be handled in qb-smallresources, not qb- multicharacter.

Practical fix

  1. Check whether qb-smallresources is installed and running.
  2. Search that resource for AFK in its config files.
  3. Adjust the kick timer and staff exemptions.
  4. Restart the resource or server and test with a normal player.

Example

If you want players kicked after 30 minutes, the AFK timer would typically be set to 1800 seconds in the AFK config.

TL;DR: For Qbox, your AFK config is most likely in qb-smallresources , not qbx_core, and the main value to look for is the AFK kick timer.