For the complete documentation index, see llms.txt. This page is also available as Markdown.

jg-hud


1. Open the file

Open the following file: jg-hud/framework/cl-functions.lua

2. Modify code

Find the Framework.Client.GetPlayerHunger, Framework.Client.GetPlayerThirst, Framework.Client.GetPlayerStress functions and replace the highlighted lines inside it.

function Framework.Client.GetPlayerHunger()
  return LocalPlayer.state.hunger or false
end

function Framework.Client.GetPlayerThirst()
  return LocalPlayer.state.thirst or false
end

function Framework.Client.GetPlayerStress()
  return LocalPlayer.state.stress or false
end

Last updated