> For the complete documentation index, see [llms.txt](https://wiki.mypet-plugin.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.mypet-plugin.com/setup-guide/skilltree-creation/creating-custom-skilltrees/skills/climb.md).

# Climb

Let a Pet climb walls on its own to take shortcuts.

The Climb skill lets a Pet climb straight up walls, spider-style, **on its own**. When the Pet is heading somewhere higher — following you onto a ledge, or chasing a target — and a wall is directly in the way, it scales the wall as a shortcut instead of pathing all the way around, then carries on once it crests the top. It takes no fall damage from the climb, and it only climbs when it is actually trying to reach somewhere higher, not while idly wandering.

Climb does nothing for Pets that can already fly, and ordinary single steps and slabs are still handled by normal step-up, so it only kicks in on a real wall.

> Climbing **while being ridden** is a separate `climb` upgrade on the [Ride](/setup-guide/skilltree-creation/creating-custom-skilltrees/skills/ride.md) skill — there the Pet climbs while you steer it forward against a wall.

### Settings <a href="#settings" id="settings"></a>

| Setting | Key      | Type    | Meaning                           |
| ------- | -------- | ------- | --------------------------------- |
| Active  | `active` | boolean | Enables autonomous wall-climbing. |

```json
"Climb": {
  "Upgrades": {
    "1": { "Active": true }
  }
}
```


---

# 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://wiki.mypet-plugin.com/setup-guide/skilltree-creation/creating-custom-skilltrees/skills/climb.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.
