FAQ

German text still visible in HUD

How to fix:

  1. Open risk-hud\html\main.js

  2. Press Ctrl + F and search for: const desc = isAdded ? 'Item hinzugefügt' : 'Item entfernt';

  3. Replace with: const desc = isAdded ? 'Item added' : 'Item removed';

  4. Save the file and restart the script.


Item or weapon images not visible

How to fix:

  • Check folder paths:

    • risk-hud\html\images\items → item images

    • risk-hud\html\images\weapons → weapon images

  • Verify all images are .png files.

  • Ensure filenames exactly match item names (case-sensitive).

    • Example: item water → file water.png

  • Clear browser/NUI cache and restart the resource if images still don’t appear.


Custom Health & Armor Bars

Add the code below to any client.lua — it doesn’t matter which one, as long as it’s a client-side file. Avoid placing it inside an escrow-protected script. You can adjust colors, size, position. The default GTA bars will be hidden automatically.

Last updated