Installation
How to install and set up the Status resource on your server
Follow these steps to get the HUD running and configured correctly for your server.
- 1
Download the resource
Download the resource and place it in your server's resources folder, e.g. resources/[more]/more_status — install it alongside more_lib.
- 2
Add it to server.cfg
Add an ensure line for more_status to your server.cfg, after more_lib.
- 3
Restart the server
Restart your server. With MS.Settings.dev_mode enabled, the client logs debug messages tagged [MORE Scripts - Status] to the F8 console, which is the fastest way to confirm the resource started correctly.
- 4
Match your items and wire up the two hooks
Open config.lua and make sure every key under MS.Items (bread, water, and bigmenu by default) matches a real item name in your inventory system exactly — the resource doesn't create these items for you. Then hook MS.StartProgressbar into your progress bar library (ox_lib, esx_progressbar, qb-progressbar, …) so players get visual feedback while eating or drinking, and confirm MS.ReviveEvent matches whatever event your server actually fires on revive so food and water reset correctly afterwards.
1ensure more_lib2ensure more_statusLoad order matters
more_status should start after more_lib, since it relies on more_lib for framework detection. Starting it first won't crash anything, but the HUD may sit without correct framework data until more_lib finishes loading.
Last updated