Core, Webhost, Docs: Replace all usages of player settings (#3067)
* Replace all usages of player settings * Fixed line break error * Attempt to fix line break again * Finally figure out what Pycharm did to this file * Pycharm search failed me * Remove duplicate s * Update ArchipIdle * Revert random newline changes from Pycharm * Remove player settings from fstrings and rename --samesettings to --sameoptions * Finally get PyCharm to not auto-format my commits, randomly inserting the newlines * Removing player-settings * Missed one * Remove final line break error Co-authored-by: Exempt-Medic <60412657+exempt-medic@users.noreply.github.com> --------- Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> Co-authored-by: Exempt-Medic <ExemptMedic@Gmail.com>
This commit is contained in:
parent
b296f64d3c
commit
569c37cb8e
10
Generate.py
10
Generate.py
|
@ -35,8 +35,8 @@ def mystery_argparse():
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description="CMD Generation Interface, defaults come from host.yaml.")
|
parser = argparse.ArgumentParser(description="CMD Generation Interface, defaults come from host.yaml.")
|
||||||
parser.add_argument('--weights_file_path', default=defaults.weights_file_path,
|
parser.add_argument('--weights_file_path', default=defaults.weights_file_path,
|
||||||
help='Path to the weights file to use for rolling game settings, urls are also valid')
|
help='Path to the weights file to use for rolling game options, urls are also valid')
|
||||||
parser.add_argument('--samesettings', help='Rolls settings per weights file rather than per player',
|
parser.add_argument('--sameoptions', help='Rolls options per weights file rather than per player',
|
||||||
action='store_true')
|
action='store_true')
|
||||||
parser.add_argument('--player_files_path', default=defaults.player_files_path,
|
parser.add_argument('--player_files_path', default=defaults.player_files_path,
|
||||||
help="Input directory for player files.")
|
help="Input directory for player files.")
|
||||||
|
@ -104,8 +104,8 @@ def main(args=None, callback=ERmain):
|
||||||
del(meta_weights["meta_description"])
|
del(meta_weights["meta_description"])
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise ValueError("No meta description found for meta.yaml. Unable to verify.") from e
|
raise ValueError("No meta description found for meta.yaml. Unable to verify.") from e
|
||||||
if args.samesettings:
|
if args.sameoptions:
|
||||||
raise Exception("Cannot mix --samesettings with --meta")
|
raise Exception("Cannot mix --sameoptions with --meta")
|
||||||
else:
|
else:
|
||||||
meta_weights = None
|
meta_weights = None
|
||||||
player_id = 1
|
player_id = 1
|
||||||
|
@ -157,7 +157,7 @@ def main(args=None, callback=ERmain):
|
||||||
erargs.skip_output = args.skip_output
|
erargs.skip_output = args.skip_output
|
||||||
|
|
||||||
settings_cache: Dict[str, Tuple[argparse.Namespace, ...]] = \
|
settings_cache: Dict[str, Tuple[argparse.Namespace, ...]] = \
|
||||||
{fname: (tuple(roll_settings(yaml, args.plando) for yaml in yamls) if args.samesettings else None)
|
{fname: (tuple(roll_settings(yaml, args.plando) for yaml in yamls) if args.sameoptions else None)
|
||||||
for fname, yamls in weights_cache.items()}
|
for fname, yamls in weights_cache.items()}
|
||||||
|
|
||||||
if meta_weights:
|
if meta_weights:
|
||||||
|
|
|
@ -49,12 +49,6 @@ def weighted_options():
|
||||||
return render_template("weighted-options.html")
|
return render_template("weighted-options.html")
|
||||||
|
|
||||||
|
|
||||||
# TODO for back compat. remove around 0.4.5
|
|
||||||
@app.route("/games/<string:game>/player-settings")
|
|
||||||
def player_settings(game: str):
|
|
||||||
return redirect(url_for("player_options", game=game), 301)
|
|
||||||
|
|
||||||
|
|
||||||
# Player options pages
|
# Player options pages
|
||||||
@app.route("/games/<string:game>/player-options")
|
@app.route("/games/<string:game>/player-options")
|
||||||
@cache.cached()
|
@cache.cached()
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Archipelago Settings API
|
# Archipelago Settings API
|
||||||
|
|
||||||
The settings API describes how to use installation-wide config and let the user configure them, like paths, etc. using
|
The settings API describes how to use installation-wide config and let the user configure them, like paths, etc. using
|
||||||
host.yaml. For the player settings / player yamls see [options api.md](options api.md).
|
host.yaml. For the player options / player yamls see [options api.md](options api.md).
|
||||||
|
|
||||||
The settings API replaces `Utils.get_options()` and `Utils.get_default_options()`
|
The settings API replaces `Utils.get_options()` and `Utils.get_default_options()`
|
||||||
as well as the predefined `host.yaml` in the repository.
|
as well as the predefined `host.yaml` in the repository.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""
|
"""
|
||||||
Application settings / host.yaml interface using type hints.
|
Application settings / host.yaml interface using type hints.
|
||||||
This is different from player settings.
|
This is different from player options.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
|
|
|
@ -43,7 +43,7 @@ an experience customized for their taste, and different players in the same mult
|
||||||
|
|
||||||
You can generate a yaml or download a template by visiting the [Adventure Options Page](/games/Adventure/player-options)
|
You can generate a yaml or download a template by visiting the [Adventure Options Page](/games/Adventure/player-options)
|
||||||
|
|
||||||
### What are recommended settings to tweak for beginners to the rando?
|
### What are recommended options to tweak for beginners to the rando?
|
||||||
Setting difficulty_switch_a and lowering the dragons' speeds makes the dragons easier to avoid. Adding Chalice to
|
Setting difficulty_switch_a and lowering the dragons' speeds makes the dragons easier to avoid. Adding Chalice to
|
||||||
local_items guarantees you'll visit at least one of the interesting castles, as it can only be placed in a castle or
|
local_items guarantees you'll visit at least one of the interesting castles, as it can only be placed in a castle or
|
||||||
the credits room.
|
the credits room.
|
||||||
|
|
|
@ -42,7 +42,7 @@ une expérience personnalisée à leur goût, et différents joueurs dans le mê
|
||||||
|
|
||||||
### Où puis-je obtenir un fichier YAML ?
|
### Où puis-je obtenir un fichier YAML ?
|
||||||
|
|
||||||
Vous pouvez générer un yaml ou télécharger un modèle en visitant la [page des paramètres d'aventure](/games/Adventure/player-settings)
|
Vous pouvez générer un yaml ou télécharger un modèle en visitant la [page des paramètres d'aventure](/games/Adventure/player-options)
|
||||||
|
|
||||||
### Quels sont les paramètres recommandés pour s'initier à la rando ?
|
### Quels sont les paramètres recommandés pour s'initier à la rando ?
|
||||||
Régler la difficulty_switch_a et réduire la vitesse des dragons rend les dragons plus faciles à éviter. Ajouter Calice à
|
Régler la difficulty_switch_a et réduire la vitesse des dragons rend les dragons plus faciles à éviter. Ajouter Calice à
|
||||||
|
|
|
@ -47,12 +47,12 @@ wählen können!
|
||||||
|
|
||||||
### Wo bekomme ich so eine YAML-Datei her?
|
### Wo bekomme ich so eine YAML-Datei her?
|
||||||
|
|
||||||
Die [Player Settings](/games/A Link to the Past/player-settings) Seite auf der Website ermöglicht das einfache Erstellen
|
Die [Player Options](/games/A Link to the Past/player-options) Seite auf der Website ermöglicht das einfache Erstellen
|
||||||
und Herunterladen deiner eigenen `yaml` Datei. Drei verschiedene Voreinstellungen können dort gespeichert werden.
|
und Herunterladen deiner eigenen `yaml` Datei. Drei verschiedene Voreinstellungen können dort gespeichert werden.
|
||||||
|
|
||||||
### Deine YAML-Datei ist gewichtet!
|
### Deine YAML-Datei ist gewichtet!
|
||||||
|
|
||||||
Die **Player Settings** Seite hat eine Menge Optionen, die man per Schieber einstellen kann. Das ermöglicht es,
|
Die **Player Options** Seite hat eine Menge Optionen, die man per Schieber einstellen kann. Das ermöglicht es,
|
||||||
verschiedene Optionen mit unterschiedlichen Wahrscheinlichkeiten in einer Kategorie ausgewürfelt zu werden
|
verschiedene Optionen mit unterschiedlichen Wahrscheinlichkeiten in einer Kategorie ausgewürfelt zu werden
|
||||||
|
|
||||||
Als Beispiel kann man sich die Option "Map Shuffle" als einen Eimer mit Zetteln zur Abstimmung Vorstellen. So kann man
|
Als Beispiel kann man sich die Option "Map Shuffle" als einen Eimer mit Zetteln zur Abstimmung Vorstellen. So kann man
|
||||||
|
|
|
@ -59,7 +59,7 @@ de multiworld puede tener diferentes opciones.
|
||||||
|
|
||||||
### Donde puedo obtener un fichero YAML?
|
### Donde puedo obtener un fichero YAML?
|
||||||
|
|
||||||
La página "[Generate Game](/games/A%20Link%20to%20the%20Past/player-settings)" en el sitio web te permite configurar tu
|
La página "[Generate Game](/games/A%20Link%20to%20the%20Past/player-options)" en el sitio web te permite configurar tu
|
||||||
configuración personal y descargar un fichero "YAML".
|
configuración personal y descargar un fichero "YAML".
|
||||||
|
|
||||||
### Configuración YAML avanzada
|
### Configuración YAML avanzada
|
||||||
|
@ -86,7 +86,7 @@ Si quieres validar que tu fichero YAML para asegurarte que funciona correctament
|
||||||
|
|
||||||
## Generar una partida para un jugador
|
## Generar una partida para un jugador
|
||||||
|
|
||||||
1. Navega a [la pagina Generate game](/games/A%20Link%20to%20the%20Past/player-settings), configura tus opciones, haz
|
1. Navega a [la pagina Generate game](/games/A%20Link%20to%20the%20Past/player-options), configura tus opciones, haz
|
||||||
click en el boton "Generate game".
|
click en el boton "Generate game".
|
||||||
2. Se te redigirá a una pagina "Seed Info", donde puedes descargar tu archivo de parche.
|
2. Se te redigirá a una pagina "Seed Info", donde puedes descargar tu archivo de parche.
|
||||||
3. Haz doble click en tu fichero de parche, y el emulador debería ejecutar tu juego automáticamente. Como el Cliente no
|
3. Haz doble click en tu fichero de parche, y el emulador debería ejecutar tu juego automáticamente. Como el Cliente no
|
||||||
|
|
|
@ -60,7 +60,7 @@ peuvent avoir différentes options.
|
||||||
|
|
||||||
### Où est-ce que j'obtiens un fichier YAML ?
|
### Où est-ce que j'obtiens un fichier YAML ?
|
||||||
|
|
||||||
La page [Génération de partie](/games/A%20Link%20to%20the%20Past/player-settings) vous permet de configurer vos
|
La page [Génération de partie](/games/A%20Link%20to%20the%20Past/player-options) vous permet de configurer vos
|
||||||
paramètres personnels et de les exporter vers un fichier YAML.
|
paramètres personnels et de les exporter vers un fichier YAML.
|
||||||
|
|
||||||
### Configuration avancée du fichier YAML
|
### Configuration avancée du fichier YAML
|
||||||
|
@ -87,7 +87,7 @@ Si vous voulez valider votre fichier YAML pour être sûr qu'il fonctionne, vous
|
||||||
|
|
||||||
## Générer une partie pour un joueur
|
## Générer une partie pour un joueur
|
||||||
|
|
||||||
1. Aller sur la page [Génération de partie](/games/A%20Link%20to%20the%20Past/player-settings), configurez vos options,
|
1. Aller sur la page [Génération de partie](/games/A%20Link%20to%20the%20Past/player-options), configurez vos options,
|
||||||
et cliquez sur le bouton "Generate Game".
|
et cliquez sur le bouton "Generate Game".
|
||||||
2. Il vous sera alors présenté une page d'informations sur la seed, où vous pourrez télécharger votre patch.
|
2. Il vous sera alors présenté une page d'informations sur la seed, où vous pourrez télécharger votre patch.
|
||||||
3. Double-cliquez sur le patch et l'émulateur devrait se lancer automatiquement avec la seed. Etant donné que le client
|
3. Double-cliquez sur le patch et l'émulateur devrait se lancer automatiquement avec la seed. Etant donné que le client
|
||||||
|
|
|
@ -8,5 +8,5 @@
|
||||||
[ArchipIDLE GitHub Releases Page](https://github.com/ArchipelagoMW/archipidle/releases)
|
[ArchipIDLE GitHub Releases Page](https://github.com/ArchipelagoMW/archipidle/releases)
|
||||||
3. Enter the server address in the `Server Address` field and press enter
|
3. Enter the server address in the `Server Address` field and press enter
|
||||||
4. Enter your slot name when prompted. This should be the same as the `name` you entered on the
|
4. Enter your slot name when prompted. This should be the same as the `name` you entered on the
|
||||||
setting page above, or the `name` field in your yaml file.
|
options page above, or the `name` field in your yaml file.
|
||||||
5. Click the "Begin!" button.
|
5. Click the "Begin!" button.
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
# Guide de configuration d'ArchipIdle
|
# Guide de configuration d'ArchipIdle
|
||||||
|
|
||||||
## Rejoindre une partie MultiWorld
|
## Rejoindre une partie MultiWorld
|
||||||
1. Générez un fichier `.yaml` à partir de la [page des paramètres du lecteur ArchipIDLE](/games/ArchipIDLE/player-settings)
|
1. Générez un fichier `.yaml` à partir de la [page des paramètres du lecteur ArchipIDLE](/games/ArchipIDLE/player-options)
|
||||||
2. Ouvrez le client ArchipIDLE dans votre navigateur Web en :
|
2. Ouvrez le client ArchipIDLE dans votre navigateur Web en :
|
||||||
- Accédez au [Client ArchipIDLE](http://idle.multiworld.link)
|
- Accédez au [Client ArchipIDLE](http://idle.multiworld.link)
|
||||||
- Téléchargez le client et exécutez-le localement à partir du
|
- Téléchargez le client et exécutez-le localement à partir du [Page des versions d'ArchipIDLE GitHub](https://github.com/ArchipelagoMW/archipidle/releases)
|
||||||
[Page des versions d'ArchipIDLE GitHub](https://github.com/ArchipelagoMW/archipidle/releases)
|
|
||||||
3. Entrez l'adresse du serveur dans le champ `Server Address` et appuyez sur Entrée
|
3. Entrez l'adresse du serveur dans le champ `Server Address` et appuyez sur Entrée
|
||||||
4. Entrez votre nom d'emplacement lorsque vous y êtes invité. Il doit être le même que le `name` que vous avez saisi sur le
|
4. Entrez votre nom d'emplacement lorsque vous y êtes invité. Il doit être le même que le `name` que vous avez saisi sur le
|
||||||
page de configuration ci-dessus, ou le champ `name` dans votre fichier yaml.
|
page de configuration ci-dessus, ou le champ `name` dans votre fichier yaml.
|
||||||
|
|
|
@ -29,5 +29,5 @@ placez-le à la racine du jeu (ex: "SteamLibrary\steamapps\common\DARK SOULS III
|
||||||
|
|
||||||
## Où trouver le fichier de configuration ?
|
## Où trouver le fichier de configuration ?
|
||||||
|
|
||||||
La [Page de configuration](/games/Dark%20Souls%20III/player-settings) sur le site vous permez de configurer vos
|
La [Page de configuration](/games/Dark%20Souls%20III/player-options) sur le site vous permez de configurer vos
|
||||||
paramètres et de les exporter sous la forme d'un fichier.
|
paramètres et de les exporter sous la forme d'un fichier.
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
## Où se trouve la page des paramètres ?
|
## Où se trouve la page des paramètres ?
|
||||||
|
|
||||||
La [page des paramètres du joueur pour ce jeu](../player-settings) contient tous les paramètres dont vous avez besoin pour configurer et exporter le fichier.
|
La [page des paramètres du joueur pour ce jeu](../player-options) contient tous les paramètres dont vous avez besoin pour configurer et exporter le fichier.
|
||||||
|
|
||||||
|
|
||||||
## Quel est l'effet de la randomisation sur ce jeu ?
|
## Quel est l'effet de la randomisation sur ce jeu ?
|
||||||
|
|
|
@ -18,7 +18,7 @@ Voir le guide d'Archipelago sur la mise en place d'un YAML de base : [Basic Mult
|
||||||
|
|
||||||
### Où puis-je obtenir un fichier YAML ?
|
### Où puis-je obtenir un fichier YAML ?
|
||||||
|
|
||||||
Vous pouvez personnaliser vos paramètres en visitant la [page des paramètres du joueur DLC Quest] (/games/DLCQuest/player-settings).
|
Vous pouvez personnaliser vos paramètres en visitant la [page des paramètres du joueur DLC Quest](/games/DLCQuest/player-options).
|
||||||
|
|
||||||
## Rejoindre une partie multi-monde
|
## Rejoindre une partie multi-monde
|
||||||
|
|
||||||
|
|
|
@ -2,27 +2,28 @@
|
||||||
This guide covers more the more advanced options available in YAML files. This guide is intended for the user who plans
|
This guide covers more the more advanced options available in YAML files. This guide is intended for the user who plans
|
||||||
to edit their YAML file manually. This guide should take about 10 minutes to read.
|
to edit their YAML file manually. This guide should take about 10 minutes to read.
|
||||||
|
|
||||||
If you would like to generate a basic, fully playable YAML without editing a file, then visit the settings page for the
|
If you would like to generate a basic, fully playable YAML without editing a file, then visit the options page for the
|
||||||
game you intend to play. The weighted settings page can also handle most of the advanced settings discussed here.
|
game you intend to play. The weighted settings page can also handle most of the advanced settings discussed here.
|
||||||
|
|
||||||
The settings page can be found on the supported games page, just click the "Settings Page" link under the name of the
|
The options page can be found on the supported games page, just click the "Options Page" link under the name of the
|
||||||
game you would like.
|
game you would like.
|
||||||
|
|
||||||
* Supported games page: [Archipelago Games List](/games)
|
* Supported games page: [Archipelago Games List](/games)
|
||||||
* Weighted settings page: [Archipelago Weighted Settings](/weighted-settings)
|
* Weighted settings page: [Archipelago Weighted Settings](/weighted-settings)
|
||||||
|
|
||||||
Clicking on the "Export Settings" button at the bottom-left will provide you with a pre-filled YAML with your options.
|
Clicking on the "Export Options" button at the bottom-left will provide you with a pre-filled YAML with your options.
|
||||||
The player settings page also has a link to download a full template file for that game which will have every option
|
The player options page also has a link to download a full template file for that game which will have every option
|
||||||
possible for the game including some that don't display correctly on the site.
|
possible for the game including some that don't display correctly on the site.
|
||||||
|
|
||||||
## YAML Overview
|
## YAML Overview
|
||||||
|
|
||||||
The Archipelago system generates games using player configuration files as input. These are going to be YAML files and
|
The Archipelago system generates games using player configuration files as input. These are going to be YAML files and
|
||||||
each world will have one of these containing their custom settings for the game that world will play.
|
each world will have one of these containing their custom options for the game that world will play.
|
||||||
|
|
||||||
## YAML Formatting
|
## YAML Formatting
|
||||||
|
|
||||||
YAML files are a format of human-readable config files. The basic syntax of a yaml file will have a `root` node and then
|
YAML files are a format of human-readable config files. The basic syntax of a yaml file will have a `root` node and then
|
||||||
different levels of `nested` nodes that the generator reads in order to determine your settings.
|
different levels of `nested` nodes that the generator reads in order to determine your options.
|
||||||
|
|
||||||
To nest text, the correct syntax is to indent **two spaces over** from its root option. A YAML file can be edited with
|
To nest text, the correct syntax is to indent **two spaces over** from its root option. A YAML file can be edited with
|
||||||
whatever text editor you choose to use though I personally recommend that you use Sublime Text. Sublime text
|
whatever text editor you choose to use though I personally recommend that you use Sublime Text. Sublime text
|
||||||
|
@ -53,13 +54,13 @@ so `option_one_setting_one` is guaranteed to occur.
|
||||||
|
|
||||||
For `nested_option_two`, `option_two_setting_one` will be rolled 14 times and `option_two_setting_two` will be rolled 43
|
For `nested_option_two`, `option_two_setting_one` will be rolled 14 times and `option_two_setting_two` will be rolled 43
|
||||||
times against each other. This means `option_two_setting_two` will be more likely to occur, but it isn't guaranteed,
|
times against each other. This means `option_two_setting_two` will be more likely to occur, but it isn't guaranteed,
|
||||||
adding more randomness and "mystery" to your settings. Every configurable setting supports weights.
|
adding more randomness and "mystery" to your options. Every configurable setting supports weights.
|
||||||
|
|
||||||
## Root Options
|
## Root Options
|
||||||
|
|
||||||
Currently, there are only a few options that are root options. Everything else should be nested within one of these root
|
Currently, there are only a few options that are root options. Everything else should be nested within one of these root
|
||||||
options or in some cases nested within other nested options. The only options that should exist in root
|
options or in some cases nested within other nested options. The only options that should exist in root
|
||||||
are `description`, `name`, `game`, `requires`, and the name of the games you want settings for.
|
are `description`, `name`, `game`, `requires`, and the name of the games you want options for.
|
||||||
|
|
||||||
* `description` is ignored by the generator and is simply a good way for you to organize if you have multiple files
|
* `description` is ignored by the generator and is simply a good way for you to organize if you have multiple files
|
||||||
using this to detail the intention of the file.
|
using this to detail the intention of the file.
|
||||||
|
@ -79,15 +80,15 @@ are `description`, `name`, `game`, `requires`, and the name of the games you wan
|
||||||
|
|
||||||
* `requires` details different requirements from the generator for the YAML to work as you expect it to. Generally this
|
* `requires` details different requirements from the generator for the YAML to work as you expect it to. Generally this
|
||||||
is good for detailing the version of Archipelago this YAML was prepared for as, if it is rolled on an older version,
|
is good for detailing the version of Archipelago this YAML was prepared for as, if it is rolled on an older version,
|
||||||
settings may be missing and as such it will not work as expected. If any plando is used in the file then requiring it
|
options may be missing and as such it will not work as expected. If any plando is used in the file then requiring it
|
||||||
here to ensure it will be used is good practice.
|
here to ensure it will be used is good practice.
|
||||||
|
|
||||||
## Game Options
|
## Game Options
|
||||||
|
|
||||||
One of your root settings will be the name of the game you would like to populate with settings. Since it is possible to
|
One of your root options will be the name of the game you would like to populate with options. Since it is possible to
|
||||||
give a weight to any option, it is possible to have one file that can generate a seed for you where you don't know which
|
give a weight to any option, it is possible to have one file that can generate a seed for you where you don't know which
|
||||||
game you'll play. For these cases you'll want to fill the game options for every game that can be rolled by these
|
game you'll play. For these cases you'll want to fill the game options for every game that can be rolled by these
|
||||||
settings. If a game can be rolled it **must** have a settings section even if it is empty.
|
settings. If a game can be rolled it **must** have an options section even if it is empty.
|
||||||
|
|
||||||
### Universal Game Options
|
### Universal Game Options
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ about 5 minutes to read.
|
||||||
|
|
||||||
## What are triggers?
|
## What are triggers?
|
||||||
|
|
||||||
Triggers allow you to customize your game settings by allowing you to define one or many options which only occur under
|
Triggers allow you to customize your game options by allowing you to define one or many options which only occur under
|
||||||
specific conditions. These are essentially "if, then" statements for options in your game. A good example of what you
|
specific conditions. These are essentially "if, then" statements for options in your game. A good example of what you
|
||||||
can do with triggers is the [custom mercenary mode YAML
|
can do with triggers is the [custom mercenary mode YAML
|
||||||
](https://github.com/alwaysintreble/Archipelago-yaml-dump/blob/main/Snippets/Mercenary%20Mode%20Snippet.yaml) that was
|
](https://github.com/alwaysintreble/Archipelago-yaml-dump/blob/main/Snippets/Mercenary%20Mode%20Snippet.yaml) that was
|
||||||
|
|
|
@ -16,7 +16,7 @@ guide : [Guide de configuration de base de Multiworld](/tutorial/Archipelago/se
|
||||||
|
|
||||||
### Où puis-je obtenir un fichier YAML ?
|
### Où puis-je obtenir un fichier YAML ?
|
||||||
|
|
||||||
Vous pouvez personnaliser vos paramètres Minecraft en allant sur la [page des paramètres de joueur](/games/Minecraft/player-settings)
|
Vous pouvez personnaliser vos paramètres Minecraft en allant sur la [page des paramètres de joueur](/games/Minecraft/player-options)
|
||||||
|
|
||||||
## Rejoindre une partie MultiWorld
|
## Rejoindre une partie MultiWorld
|
||||||
|
|
||||||
|
|
|
@ -103,8 +103,6 @@ shuffle_structures:
|
||||||
off: 0
|
off: 0
|
||||||
```
|
```
|
||||||
|
|
||||||
För mer detaljer om vad varje inställning gör, kolla standardinställningen `PlayerSettings.yaml` som kommer med
|
|
||||||
Archipelago-installationen.
|
|
||||||
|
|
||||||
## Gå med i ett Multivärld-spel
|
## Gå med i ett Multivärld-spel
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
## Enlaces rápidos
|
## Enlaces rápidos
|
||||||
- [Página Principal](../../../../games/Muse%20Dash/info/en)
|
- [Página Principal](../../../../games/Muse%20Dash/info/en)
|
||||||
- [Página de Configuraciones](../../../../games/Muse%20Dash/player-settings)
|
- [Página de Configuraciones](../../../../games/Muse%20Dash/player-options)
|
||||||
|
|
||||||
## Software Requerido
|
## Software Requerido
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
Si todo fue instalado correctamente, un botón aparecerá en la parte inferior derecha del juego una vez abierto, que te permitirá conectarte al servidor de Archipelago.
|
Si todo fue instalado correctamente, un botón aparecerá en la parte inferior derecha del juego una vez abierto, que te permitirá conectarte al servidor de Archipelago.
|
||||||
|
|
||||||
## Generar un juego MultiWorld
|
## Generar un juego MultiWorld
|
||||||
1. Entra a la página de [configuraciones de jugador](/games/Muse%20Dash/player-settings) y configura las opciones del juego a tu gusto.
|
1. Entra a la página de [configuraciones de jugador](/games/Muse%20Dash/player-options) y configura las opciones del juego a tu gusto.
|
||||||
2. Genera tu archivo YAML y úsalo para generar un juego nuevo en el radomizer
|
2. Genera tu archivo YAML y úsalo para generar un juego nuevo en el radomizer
|
||||||
- (Instrucciones sobre como generar un juego en Archipelago disponibles en la [guía web de Archipelago en Inglés](/tutorial/Archipelago/setup/en))
|
- (Instrucciones sobre como generar un juego en Archipelago disponibles en la [guía web de Archipelago en Inglés](/tutorial/Archipelago/setup/en))
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ guide : [Guide de configuration de base de Multiworld](/tutorial/Archipelago/set
|
||||||
|
|
||||||
### Où puis-je obtenir un fichier de configuration (.yaml) ?
|
### Où puis-je obtenir un fichier de configuration (.yaml) ?
|
||||||
|
|
||||||
La page Paramètres du lecteur sur le site Web vous permet de configurer vos paramètres personnels et d'exporter un fichier de configuration depuis eux. Page des paramètres du joueur : [Page des paramètres du joueur d'Ocarina of Time](/games/Ocarina%20of%20Time/player-settings)
|
La page Paramètres du lecteur sur le site Web vous permet de configurer vos paramètres personnels et d'exporter un fichier de configuration depuis eux. Page des paramètres du joueur : [Page des paramètres du joueur d'Ocarina of Time](/games/Ocarina%20of%20Time/player-options)
|
||||||
|
|
||||||
### Vérification de votre fichier de configuration
|
### Vérification de votre fichier de configuration
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ opciones.
|
||||||
|
|
||||||
### ¿Dónde puedo obtener un archivo YAML?
|
### ¿Dónde puedo obtener un archivo YAML?
|
||||||
|
|
||||||
Puedes generar un archivo YAML or descargar su plantilla en la [página de configuración de jugador de Pokémon Red and Blue](/games/Pokemon%20Red%20and%20Blue/player-settings)
|
Puedes generar un archivo YAML or descargar su plantilla en la [página de configuración de jugador de Pokémon Red and Blue](/games/Pokemon%20Red%20and%20Blue/player-options)
|
||||||
|
|
||||||
Es importante tener en cuenta que la opción `game_version` determina el ROM que será parcheado.
|
Es importante tener en cuenta que la opción `game_version` determina el ROM que será parcheado.
|
||||||
Tanto el jugador como la persona que genera (si está generando localmente) necesitarán el archivo del ROM
|
Tanto el jugador como la persona que genera (si está generando localmente) necesitarán el archivo del ROM
|
||||||
|
|
|
@ -42,7 +42,7 @@ Weitere Informationen zum Randomizer findest du hier: [ReadMe](https://github.co
|
||||||
|
|
||||||
## Woher bekomme ich eine Konfigurationsdatei?
|
## Woher bekomme ich eine Konfigurationsdatei?
|
||||||
|
|
||||||
Die [Player Settings](https://archipelago.gg/games/Timespinner/player-settings) Seite auf der Website erlaubt dir,
|
Die [Player Options](https://archipelago.gg/games/Timespinner/player-options) Seite auf der Website erlaubt dir,
|
||||||
persönliche Einstellungen zu definieren und diese in eine Konfigurationsdatei zu exportieren
|
persönliche Einstellungen zu definieren und diese in eine Konfigurationsdatei zu exportieren
|
||||||
|
|
||||||
* Die Timespinner Randomizer Option "StinkyMaw" ist in Archipelago Seeds aktuell immer an
|
* Die Timespinner Randomizer Option "StinkyMaw" ist in Archipelago Seeds aktuell immer an
|
||||||
|
|
|
@ -43,4 +43,4 @@ The Witness has a fully functional map tracker that supports auto-tracking.
|
||||||
3. Click on the "AP" symbol at the top.
|
3. Click on the "AP" symbol at the top.
|
||||||
4. Enter the AP address, slot name and password.
|
4. Enter the AP address, slot name and password.
|
||||||
|
|
||||||
The rest should take care of itself! Items and checks will be marked automatically, and it even knows your settings - It will hide checks & adjust logic accordingly.
|
The rest should take care of itself! Items and checks will be marked automatically, and it even knows your options - It will hide checks & adjust logic accordingly.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Yoshi's Island
|
# Yoshi's Island
|
||||||
|
|
||||||
## Where is the settings page?
|
## Where is the options page?
|
||||||
|
|
||||||
The [player options page for this game](../player-options) contains all the options you need to configure and export a config file.
|
The [player options page for this game](../player-options) contains all the options you need to configure and export a config file.
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ guide: [Basic Multiworld Setup Guide](/tutorial/Archipelago/setup/en)
|
||||||
|
|
||||||
### Where do I get a config file?
|
### Where do I get a config file?
|
||||||
|
|
||||||
The Player Options page on the website allows you to configure your personal settings and export a config file from
|
The Player Options page on the website allows you to configure your personal options and export a config file from
|
||||||
them.
|
them.
|
||||||
|
|
||||||
### Verifying your config file
|
### Verifying your config file
|
||||||
|
|
Loading…
Reference in New Issue