> For the complete documentation index, see [llms.txt](https://docs.vames-store.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vames-store.com/assets/vms_needs/compatibility/hud/jg-hud.md).

# 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.

<pre class="language-lua"><code class="lang-lua">function Framework.Client.GetPlayerHunger()
<strong>  return LocalPlayer.state.hunger or false
</strong>end

function Framework.Client.GetPlayerThirst()
<strong>  return LocalPlayer.state.thirst or false
</strong>end

function Framework.Client.GetPlayerStress()
<strong>  return LocalPlayer.state.stress or false
</strong>end
</code></pre>
