> For the complete documentation index, see [llms.txt](https://docs.autowall.fun/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autowall.fun/changelog/readme.md).

# Changelog

## Changelog

### Changelog

Notable changes to the Lua scripting API and its documentation.

{% updates format="full" %}
{% update date="2026-07-20" tags="api,docs" %}

## Memory API added

New read-only **Memory** page under Vars: `memory.base`, `memory.local_player`, and `memory.read_i8/u8/i16/u16/i32/u32/i64/u64/ptr/float/double/string(addr)` for chaining raw pointer offsets from Lua. No write primitives — deliberate, see the page for why.
{% endupdate %}

{% update date="2026-07-20" tags="api,docs" %}

## UI: real menu tabs, buttons, item methods

`ui.create_tab` now backs a real, persistent app menu tab shared across scripts (not just the Lua tab's local Controls panel), alongside a new `ui.button` control and per-item `:visible`/`:depend`/`:on_change` methods plus their `ui.*` global-helper equivalents. Roadmap updated to match.
{% endupdate %}

{% update date="2026-07-20" tags="docs" %}

## Full API reference published

Published the complete implemented-API reference: Entity, Events, Render, Vector, Color, and UI, plus the narrative Documentation space (runtime, quick start, basic types, globals, common helpers) and an honest Roadmap of what isn't built yet.
{% endupdate %}

{% update date="2026-07-20" tags="site" %}

## Site restructured

Split the docs site into dedicated **Documentation**, **API Reference**, and **Changelog** sections, refreshed the Home page with quick navigation cards, and retired the unused Help Center section.
{% endupdate %}
{% endupdates %}


---

# 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://docs.autowall.fun/changelog/readme.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.
