Skip to content

Movement Tasks

Tasks requiring the player to move to specific locations or be teleported.

  • MoveToPcTask — Move to a specific named area. Auto-completes on arrival.
  • MoveToPcBranchTask — Branch to different next tasks based on which area the player enters first.
  • TeleportTask — Teleport the player to a specific continent and position.

For properties common to all tasks (header, completion items, journal text) see the Task Overview.


Move to a specific named area. Auto-completes on arrival.

<이름> discriminator: PC이동Task

YAML
tasks:
- taskId: 1
type: MoveToPcTask
body:
areaRef: "zone_100"
areaName: "Velika Gate"
YAML propertyTypeDescription
areaRefstringArea reference identifier.
areaNamestringDisplay name for the area.

Branch to different next tasks based on which area the player enters first.

<이름> discriminator: PC이동분기Task

YAML
tasks:
- taskId: 1
type: MoveToPcBranchTask
body:
branchType: "auto"
YAML propertyTypeDescription
branchTypestringBranch type (auto or manual).

Teleport the player to a specific continent and position.

<이름> discriminator: 텔레포트Task

YAML
tasks:
- taskId: 1
type: TeleportTask
body:
areaId: 10 # continent ID
coordinate: "12345,67890,100"
direction: 90
YAML propertyTypeDescription
areaIdintDestination continent ID (mapped from areaId).
coordinatestringDestination coordinates (format: x,y,z).
directionintFacing direction in degrees.