๐Ÿ—บ๏ธUsable Legendary Animal Maps

Usable Functions

-- Main function.
local data = {
    openMap = false, -- is you set true, player will open map with animation
}
local legendarymap = exports["qadr_ui"]:legendaryMapCreation(data)

-- You can show/hide all icons
legendarymap.setAllVisibility(true)

-- You can only show/hide the icons in the list.
local data = {
    {
        animalName = "Tier 2 Bison", -- check usable animal list
        visibility = false,
    },
    {
        animalName = "Tier 1 Alligator", -- check usable animal list
        visibility = true,
        customzone = math.random( 1,28 ) -- min 1 max 28 if you set nil , it will use r* zone
        -- All animal has own zone. But you can use customzone
    }
}
legendarymap.setAnimalVisibility(data) -- check example for data
Usable Animal List

Example

Last updated