# 0063: Mission label expected

The compiler finds a mission [label](/language/data-types.md#labels) that is not expected there based on the mission declaration order. It may also happen if you put an external script between two missions. The external scripts must follow the missions.

**Possible solutions:** check out if the order of missions in the file matches the header. One of the missions is out of order:

```
DEFINE MISSIONS 2
DEFINE MISSION 0 AT @MISSION_0
DEFINE MISSION 1 AT @MISSION_1

:MAIN

:MISSION_1 // error, MISSION_0 expected

:MISSION_0
```


---

# 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://docs.sannybuilder.com/troubleshooting/errors/0063.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.
