In-game
Movable status rings
Drag the status rings to a custom position from the /hud menu; the position saves per player.
The status rings (health, armor, hunger, thirst, oxygen) can be repositioned anywhere on screen. Open the /hud settings menu, use the "Move status" option to enter drag mode, drag the rings where you want them, then click Save. For everything else the menu can change, see the In-game settings menu (/hud) page.
ℹ️In the menu this is shown as "Drag the stats · click Save".
How the position is stored
The custom position is stored in Config.StatsPos as a percentage of the screen, in the format { x = %, y = % }. When it is nil, the rings stay anchored at their default bottom-left position. The value is part of the same per-player KVP store (pshud:settings) as every other setting, so it persists across reconnects and resource restarts.
-- config.lua
-- Posición personalizada de los anillos de estado (la fija el menú /hud al
-- arrastrarlos). nil = anclados abajo-izquierda. Formato { x = %, y = % }.
Config.StatsPos = nil-- client/menu.lua — statsPos is saved like any other setting
if s.statsPos ~= nil then Config.StatsPos = s.statsPos end
...
elseif key == 'statsPos' then Config.StatsPos = value💡Remember to click Save after dragging — that is what commits the new position to your per-player storage.