# qadr\_icons

* 1 = show
* 0 = hide
* You can use export

```lua
exports["qadr_icons"]:showhideicon("stamina",1)
exports["qadr_icons"]:showhideicon("deadeye",1)
exports["qadr_icons"]:showhideicon("healt",1)
exports["qadr_icons"]:showhideicon("horsehealt",1)
exports["qadr_icons"]:showhideicon("horsestamina",1)
```

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

```
/show stamina
/hide stamina
```

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.

```lua
arguments = {
    ["stamina"] = {
        defaultvisibilit = true,
    },
    ["deadeye"] = {
        defaultvisibilit = false,
    },
    ["healt"] = {
        defaultvisibilit = false,
    },
    ["horsehealt"] = {
        defaultvisibilit = false,
    },
    ["horsestamina"] = {
        defaultvisibilit = false,
    },
}
```

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

```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
},
```
