Bait UI
Last updated
Last updated
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
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)