# Player Crumb

### Description

A `Player Crumb` is a class that defines the condensed version of the [`Player`](https://localbox.gitbook.io/docs/classes/player) type, for use of other clients so they know the bare minimum amount of information to render that player.

| Key | Type                                                             | Description                                               |
| --- | ---------------------------------------------------------------- | --------------------------------------------------------- |
| i   | `string`                                                         | The player's unique PlayFab account ID.                   |
| n   | `string`                                                         | The player's username shown to other players.             |
| c   | [`CritterID`](https://localbox.gitbook.io/docs/enums/critter-id) | The ID of the critter avatar the player is wearing.       |
| x   | `number`                                                         | The X position of the player's critter in the game world. |
| y   | `number`                                                         | The Y position of the player's critter in the game world. |
| r   | `number`                                                         | The rotation of the player's critter.                     |
| g   | `Array<string>`                                                  | A list of item IDs the player is wearing.                 |
| m   | `string`                                                         | The message the player has just recently sent.            |
| e   | `string`                                                         | The emote the player has just recently used.              |


---

# Agent Instructions: 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://localbox.gitbook.io/docs/classes/player-crumb.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.
