> 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/memory.md).

# Memory

The below table contains all the constants for Memory.

| **Name** | **Value** | **Description** |
| -------- | --------- | --------------- |
| TRACE\_1 | 30        | Trace value 1   |
| TRACE\_2 | 31        | Trace value 2   |
| TRACE\_3 | 32        | Trace value 3   |
| TRACE\_4 | 33        | Trace value 4   |
| TRACE\_5 | 34        | Trace value 5   |
| TRACE\_6 | 35        | Trace value 6   |

***

### Trace Values

Trace values are used for debugging purposes. You can set these values in your script and view them in real-time in the Cronus Zen software to see what is happening inside your script.

Code-Snippet

```
main {
    set_val(TRACE_1, get_val(XB1_RT));
}
```

In the example above, the value of `XB1_RT` is being sent to `TRACE_1`, which can then be monitored.


---

# 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/memory.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.
