New version released ! v2.0
Now you can use player menu all ui elements and events.
Online readme
New version released! 2.1
Please download from keymaster.
Change log :
Video :
qadr_ui new version released!
Please download from keymaster.
Change log :
Online readme
Where do I go to make the status icons for health and stamina dynamic?
Because QuadR changes em to just sit there statically
Could you please create a support request by explaining the issue you’re experiencing on my Discord channel? I can’t check the forum frequently, so I might miss notifications here. Once I understand the problem, I’ll assist you. Thank you!
We’re excited to announce that the Qadr_UI-Ledger system is now live and available for use! This interactive ledger allows you to manage pages, handle various ledger items, and respond to user interactions like selecting and hovering over items.
Key Features:
During our testing, we didn’t encounter any issues; however, with more users, there may be problems we haven’t discovered yet. Please don’t hesitate to report any bugs or issues you come across.
If you have any questions or run into any issues, feel free to reach out!
Start exploring the new features now!
Online readme :
Nice ![]()
Changelog | Update qadr_ui v2.62
New Features:
Bounty Poster System (bountyposter.lua) improved.
Journal System (journal.lua) improved.
Season Pass System (seasonpass.lua) added.
Enhancements:
conf.lua) with detailed comments for clarity.seasonrewards export to fxmanifest.lua.
Code Improvements:
functions.lua for cleaner execution.functions.lua, journal.lua, seasonpass.lua).eventhandler.lua.
Enjoy a cleaner, more performant, and user-friendly gaming experience!
Qadr_UI v2.63 – Update Notes
Release Date: 26/03/2025
Refactor & Improvements
seasonpass.lua has been refactored:
Important Installation Notice Due to changes in the file structure:
You must delete your existing
Qadr_UIfolder and perform a clean install.
Failing to do so may cause unexpected issues or errors with the script.
Qadr Poster Creator is now available for free! If you own qadr_ui, you can use this script to create posters.
A new version is available!
With the new version, you can now use the Role Progression Interface. It’s still missing a few things, but you can create as many roles as you want, and for each role, as many progress steps and rewards as you like. (UI only)
Additionally, improvements have been made to the event handling system for the Season Pass. The entire structure is now managed by a single event listener and optimized for performance.
The Five Finger Fillet mini-game’s UI content has been added.
Initial code for the native inventory system has been added for testing. To try it out, simply set the “tryNativeInventory” value to “true” in the Config file. (UI only)
craftingMenuCreator function moved from shared/functions.lua to shared/craftingmenu.lua-- Single category usage (works as before):
local data = {
category = "Provisions",
header = "Title",
craftItems = craftItems
}
exports["qadr_ui"]:craftingMenuCreator(data)
-- New multi-category usage:
local data = {
{
category = "Provisions",
header = "Title1",
craftItems = craftItems
},
{
category = "Fortifiants",
header = "Title2",
craftItems = craftItems2
}
}
exports["qadr_ui"]:craftingMenuCreator(data)