> [name=FlyDragon]
## Step.1
When you start the game, you quickly realize that it's impossible to progress.

## Step.2
Use dnSpy to open Assembly-CSharp.
Delete the jump restriction to proceed easily.

## Step.3
Stuck again!

This time, you need to remove the obstacles.
Change `true` to `false`.

## Step.4
Stuck again!

Upon inspection, you find `TELEPORT()`.
Modify it to be called every time the `X` key is pressed within `Update()`.
```cs=
if (Input.GetKeyDown(KeyCode.X))
{
this.TELEPORT();
}
```
## Step.5
When you reach the endpoint, something resembling a flag drops down.
Additionally, there is no roof at the endpoint, so you can try finding the source of the flag.

## Step.6
Change the camera to follow the player and move towards the direction of the flag.

Obtain the flag.

## Note
There is a fake flag tho

##
{%hackmd M1bgOPoiQbmM0JRHWaYA1g %}