Honor UI
Last updated
Last updated
status = 1 HONOR_BAD
status = 2 HONOR_BAD
status = 3 HONOR_BAD
status = 4 HONOR_BAD
status = 5 HONOR_BAD
status = 6 HONOR_BAD
status = 7 HONOR_BAD
status = 8 HONOR_BAD
status = 9 HONOR_GOOD
status = 10 HONOR_GOOD
status = 11 HONOR_GOOD
status = 12 HONOR_GOOD
status = 13 HONOR_GOOD
status = 14 HONOR_GOOD
status = 15 HONOR_GOOD
status = 16 HONOR_GOOD
RegisterCommand("honor",function()
local data = {
status = math.random( 1, 16 ) -- min 1 max 16
}
local honor = exports["qadr_ui"]:showHonor(data)
Wait(3000)
honor:hide()
Wait(1000)
honor:show()
Wait(2000)
honor:clear()
local data = {
status = math.random( 1, 16 ), -- min 1 max 16
hideTimeOut = 3 -- seconds If you set this value, honor will hide after this time.
}
local honor = exports["qadr_ui"]:showHonor(data)
end)