Skip to content

Difficulty

Swifter edited this page Apr 19, 2025 · 2 revisions

Prerequisites

Reading Difficulties

Difficulties are attached to pipelines. You can read a difficulty in a pipeline by using the rm.readDifficultyV3 function.

const map = await rm.readDifficultyV3(pipeline, 'ExpertPlusStandard')

When the pipeline is exported, this difficulty will be saved to the output destination.

Managing Requirements/Suggestions

ReMapper does not manage requirements/suggestions! If you need a feature from a specific mod, please manage it like so:

map.require(MODS.NOODLE_EXTENSIONS)
map.suggest(MODS.CHROMA)

To remove a requirement/suggestion, pass false as the second parameter.

map.require(MODS.NOODLE_EXTENSIONS, false)

Clone this wiki locally