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
  • Lure Texture
  • Example
  1. qadr_ui
  2. Fish UI

Bait UI

PreviousFish UINextInfo UI

Last updated 2 years ago

Video

Lure Texture

local LureTexture = -973584697
if bait =="p_finisheDragonfly01x"
or bait =="p_finisdFishlure01x"
or bait =="p_finishedragonflylegendary01x"
or bait =="p_finisdfishlurelegendary01x"
or bait =="p_finishdcrawdlegendary01x"
or bait =="p_lgoc_spinner_v4"
or bait =="p_finishdCrawd01x"  then
    LureTexture = 1048406616
end

Example

RegisterCommand("createFishUI",function()
    local fishData = {
        LureName = "LureName",
        LureCount = "LureCount",
        LureTexture = -973584697,
        put_away_fishingrod_visible = true,
        isVisible = true,
    }
    local fishUI = exports["qadr_ui"]:createFishUI(fishData)
    Wait(3000)
    local fishData = {
        LureName = "LureName",
        LureCount = "10",
        LureTexture = 1048406616,
        put_away_fishingrod_visible = true,
        isVisible = true,
    }
    fishUI:update(fishData)
    Wait(3000)
    local fishData = {
        LureCount = "100",
    }
    fishUI:update(fishData)
end)
🐟
🎣