> For the complete documentation index, see [llms.txt](https://abdulkadir-aktas.gitbook.io/qadr_docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abdulkadir-aktas.gitbook.io/qadr_docs/qadr_icons.md).

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://abdulkadir-aktas.gitbook.io/qadr_docs/qadr_icons.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
