# Movement

## move\_to(x, y, z)

Moves to the specified coordinates.

* `Z` coordinate can be 0.
* This function call will *not* wait for the character to reach the destination. This is so the threads do not block.
* This function supports moving on transports/pets.

#### Usage

`move_to(6400.0, 800.0, 0.0)`

#### Returns

`None`

## move\_to\_region(region, x, y, z)

#### Usage

`move_to_region(25000, 6400.0, 800.0, 0.0)`

#### Returns

`None`


---

# 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://plugins.phbot.org/phbot-api/movement.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.
