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
  • Info
  • Export Example
  • Command
  • Default Values
  1. qadr_ui

Icons UI

qadr_ui has qadr_icons functions. If you have qadr_ui no need qadr_icons.

PreviousMeters UI - OutDatedNextMap UI

Last updated 2 years ago

Video

Info

  • 1 = show

  • 0 = hide

  • You can use export

Export Example

exports["qadr_ui"]:showhideicon("stamina",1)
exports["qadr_ui"]:showhideicon("deadeye",1)
exports["qadr_ui"]:showhideicon("healt",1)
exports["qadr_ui"]:showhideicon("horsehealt",1)
exports["qadr_ui"]:showhideicon("horsestamina",1)

Command

  • You can use command or disable or change command name. Check conf.lua

/show stamina
/hide stamina

Default Values

if you want use export function, you need arguments. You can find conf.lua and set defaultvisibility for each icon. Do not change argue names.

You can change default values in config file

arguments = {
	["stamina"] = {
		defaultvisibilit = false,
		index = {0,1},	-- do not change
	},
	["deadeye"] = {
		defaultvisibilit = false,
		index = {2,3},	-- do not change
	},
	["healt"] = {
		defaultvisibilit = false,
		index = {4,5},	-- do not change
	},
	["horsehealt"] = {
		defaultvisibilit = false,
		index = {6,7},	-- do not change
	},
	["horsestamina"] = {
		defaultvisibilit = false,
		index = {8,9},	-- do not change
	},
	["horsecourage"] = {
		defaultvisibilit = false,
		index = {10,11},-- do not change
	},
}

You can use these commands for showing/hiding icons, check conf.lua

command = {
    hidecommandname = "hide",
    -- if you want disable command, set this to nil othervise set this to command name
    showcommandname = "show",
    -- if you want disable command, set this to nil othervise set this to command name
},
👁️‍🗨️