> For the complete documentation index, see [llms.txt](https://guide.cronuszen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.cronuszen.com/gpcscripting/gpc-script-guide/gpc-developer-guide/constants/controller/xbox-c-360.md).

# Xbox© 360

This is a list of all Xbox 360 input identifiers, their values, and range

| **Name**     | **Description**                 | **Value** | **Range**   |
| ------------ | ------------------------------- | --------- | ----------- |
| XB360\_XBOX  | Xbox/Guide button               | 0         | 0 \| 100    |
| XB360\_BACK  | Back button                     | 1         | 0 \| 100    |
| XB360\_START | Start button                    | 2         | 0 \| 100    |
| XB360\_RB    | Right bumper                    | 3         | 0 \| 100    |
| XB360\_RT    | Right trigger                   | 4         | 0 \~ 100    |
| XB360\_RS    | Right stick (click)             | 5         | 0 \| 100    |
| XB360\_LB    | Left bumper                     | 6         | 0 \| 100    |
| XB360\_LT    | Left trigger                    | 7         | 0 \~ 100    |
| XB360\_LS    | Left stick (click)              | 8         | 0 \| 100    |
| XB360\_RX    | Right stick x-axis (left/right) | 9         | -100 \~ 100 |
| XB360\_RY    | Right stick y-axis (up/down)    | 10        | -100 \~ 100 |
| XB360\_LX    | Left stick x-axis (left/right)  | 11        | -100 \~ 100 |
| XB360\_LY    | Left stick y-axis (up/down)     | 12        | -100 \~ 100 |
| XB360\_UP    | D-pad up button                 | 13        | 0 \| 100    |
| XB360\_DOWN  | D-pad down button               | 14        | 0 \| 100    |
| XB360\_LEFT  | D-pad left button               | 15        | 0 \| 100    |
| XB360\_RIGHT | D-pad right button              | 16        | 0 \| 100    |
| XB360\_Y     | Y (Yellow) button               | 17        | 0 \| 100    |
| XB360\_B     | B (Red) button                  | 18        | 0 \| 100    |
| XB360\_A     | A (Green) button                | 19        | 0 \| 100    |
| XB360\_X     | X (Blue) button                 | 20        | 0 \| 100    |

#### Value range explanation:

| **Range**   | **Meaning**                    |
| ----------- | ------------------------------ |
| 0 \| 100    | Either 0 or 100                |
| 0 \~ 100    | Any value between 0 and 100    |
| -100 \~ 100 | Any value between -100 and 100 |


---

# 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://guide.cronuszen.com/gpcscripting/gpc-script-guide/gpc-developer-guide/constants/controller/xbox-c-360.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.
