Qadr_Docs
  • qadr_identity
    • Installation
      • Reboot 2023
      • Old RedemRP
    • Purchasable ambients For Reboot Version
      • Blackwater Saloon
      • Valentine Saloon
      • Valentine Train Station
      • Saint Denis Bazaar
      • Saint Denis Prison
      • Saint Denis Trolley - Soon
  • qadr_fishing
  • qadr_panel
  • qadr_train
    • For Reboot 2023
  • Qadr_Map
  • qadr_ui
    • Ledger System
    • 📒Usable Handheld Catalogue
    • 🐴Legendary Animal Menu
    • 🤠Player Menu UI
    • ⏸️Pause Menu UI
    • ⚒️Crafting Menu UI
    • 🗺️Usable Legendary Animal Maps
    • 🗺️Map Icon
    • ⭕Meters UI
    • 🃏Ability UI
    • 👮‍♀️Wanted UI
    • 💀Death Screen
    • 📃Emote UI / Radial Menu
    • 🛒Shop Info UI
    • 🃏Card Game UI
    • 🤠Bounty Poster
    • 🛂Honor UI
    • 🗒️Challenge Notification Disable
    • 🎖️Mini Leader Board
    • 📋Board Notify
    • ⚔️Score UI
    • 👊Punch Bar
    • 🔄Count Down
    • 🚨Wanted UI - Outdated
    • 🌡️Meters UI - OutDated
    • 👁️‍🗨️Icons UI
    • 🗺️Map UI
      • Mini Map
      • Map Info
      • Hovered Blip Name
    • 🛡️Rank UI
    • 🐟Fish UI
      • 🎣Bait UI
    • ℹ️Info UI
    • 💥Mission Text UI
    • 🔫Weapon Info UI
    • 🐎Horse Info UI
    • 📔Message UI
    • 🤠Prompt Blip For Entities
  • qadr_train_creator - Standalone
Powered by GitBook
On this page
  • Video
  • Usable Status
  • Example
  1. qadr_ui

Honor UI

PreviousBounty PosterNextChallenge Notification Disable

Last updated 2 years ago

Video

Usable Status

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

Example

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)
🛂