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

# Commands

All commands are **client-side**. No server commands.

***

## Player commands

### `/apps [mode]`

Opens the appearance panel in **free mode** (no shop, no cart, everything free). Useful for character creation or when you want to change look without being at a store.

| Argument | Description                                                     |
| -------- | --------------------------------------------------------------- |
| **mode** | Optional. `face`, `hair`, `clothing`, or `all`. Default: `all`. |

**Examples:**

* `/apps` or `/apps all` — All tabs (face, hair, clothing).
* `/apps face` — Face and hair tab only.
* `/apps hair` — Hair tab only.
* `/apps clothing` — Clothing tab only.

**Behavior:**

* **freeMode:** `true` — No cart, no payment.
* **showOutfits:** `false` — Outfit tab is **hidden**.
* Button: "Done" (save and close). Skin is saved via devix-core.

**Who can use:** Any player (no permission check).

***

### `/appsadmin`

Opens the full appearance panel in **admin free mode**: all tabs, free, **with** the Outfits tab (save/load outfits).

**Behavior:**

* **freeMode:** `true` — No cart, no payment.
* **showOutfits:** `true` — Outfit tab is **visible**.
* Same UI as `/apps all` but with outfit save/load.

**Who can use:** Only if the player has one of:

* ACE: `Config.AppsAdminAce` (default: `"group.admin"`), or
* ACE: `group.admin`, or
* `DEVIX.HasPermission(source)` returns true (devix-core).

If the player has no permission, they see a notification (e.g. "You don't have permission to use this command."). Configure the ACE in **config.lua** → **Config.AppsAdminAce** (see [CONFIG\_MAIN.md](broken://pages/2b10a202b764217cf11433b673958d3dc17a38e7)).

***

## Dev / test commands

These are intended for development or debugging. Restrict or remove them in production if you don’t want players to use them.

### `/setped <model>`

Changes the local player’s ped model immediately (e.g. for testing different bodies).

| Argument  | Description                                                                          |
| --------- | ------------------------------------------------------------------------------------ |
| **model** | Ped model name (string) or hash (number). e.g. `mp_m_freemode_01`, `a_m_m_beach_01`. |

**Example:** `/setped mp_f_freemode_01`

**Who can use:** Same permission as `/appsadmin` — `Config.AppsAdminAce`, `group.admin`, or `DEVIX.HasPermission` (devix-core). Others get a “no permission” notification.

***

### `/get`

Prints appearance max values and head overlay info to the **F8 console** (client). Useful for debugging drawable/texture limits and overlay IDs.

**Who can use:** Any player. Purely client-side debug output.

***

## Summary

| Command                             | Purpose                            | Permission                                |
| ----------------------------------- | ---------------------------------- | ----------------------------------------- |
| `/apps [face\|hair\|clothing\|all]` | Open panel, free, no outfits tab   | Anyone                                    |
| `/appsadmin`                        | Open panel, free, with outfits tab | Config.AppsAdminAce / group.admin / DEVIX |
| `/setped <model>`                   | Change ped model (dev/test)        | Same as /appsadmin (devix-core)           |
| `/get`                              | Print max values to F8 (debug)     | Anyone                                    |

For opening the panel from scripts, use the **OpenAppearance** export or the event; see [Appearance Exports](/devix/devix-appearance/appearance-exports.md).


---

# 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, and the optional `goal` query parameter:

```
GET https://devix.gitbook.io/devix/devix-appearance/commands.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
