Translation of the first three files #1

Open
jerrysm64 wants to merge 16 commits from translations-jerry into main
18 changed files with 311 additions and 201 deletions

View file

@ -22,9 +22,10 @@ struct TokenRequest {
#[derive(Serialize, Deserialize)]
struct TokenResponse {
access_token: String,
token_type: String,
expires_in: i64,
access_token: Option<String>,
token_type: Option<String>,
expires_in: Option<i64>,
error: Option<String>,
}
pub fn router() -> Router {
@ -40,7 +41,7 @@ async fn gen_token(Json(payload): Json<GenerateTokenRequest>) -> Result<Json<Tok
let client_secret = match env::var("ACCOUNT_CLIENT_SECRET") {
Ok(secret) => secret,
Err(_) => {
println!("No account client secret specified - Token generation will always fail");
println!("[/api/v1/login/generate_token] No account client secret specified - Token generation will always fail");
return Err(StatusCode::INTERNAL_SERVER_ERROR)
},
};
@ -65,7 +66,10 @@ async fn gen_token(Json(payload): Json<GenerateTokenRequest>) -> Result<Json<Tok
match body {
Ok(b) => return Ok(Json(b)),
Err(_) => return Err(StatusCode::BAD_GATEWAY)
Err(e) => {
println!("[/api/v1/login/generate_token] Failed to parse token data from upstream: {}", e);
return Err(StatusCode::BAD_GATEWAY)
},
};
},
Err(e) => match e.status() {

View file

@ -69,6 +69,17 @@
<p style="text-align: center;">This does not remove your account from your devices. You will need to manually remove the files with FTPiiU or by removing the files from your Cemu MLC folder. If you are not sure how to do this, <a href="https://discord.gg/grMSxZf" target="_blank">ask in the discord.</a></p>
</div>
<form id="ban" class="ban-form" style="display: none;">
<h2>Admin Panel</h2>
<p>VERY temporary</p>
<label for="ban-sfid">SFID to Ban:</label>
<input type="text" id="ban-sfid"></input>
<button type="submit">Ban Player</button>
<p id="ban-status" />
</form>
<script type="text/javascript" src="/js/accounts.js"></script>
</main>

View file

@ -5,7 +5,7 @@ body {
display: flex;
flex-direction: column;
margin: 0;
font-family: 'Noto Sans', sans-serif;
font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}
button {
@ -172,7 +172,7 @@ form {
.guide {
font-size: 20px;
height: 48px;
min-height: 48px;
cursor: pointer;
border: 2px solid #a00b0b;
border-radius: 10px;
@ -446,6 +446,20 @@ code {
}
}
.ban-form {
margin-top: 16px;
}
.ban-form h2 {
margin: 0;
padding: 0px;
}
.ban-form p {
margin: 0;
padding: 0px;
}
.active {
background-color: #a00b0b;
border-color: #6d0606;

View file

@ -9,6 +9,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">

View file

@ -5,7 +5,8 @@ let userAccessLevels = { // Name | Text Colour | Background Colour | Border Colo
"0": ["Member", "#fff", "#047205", "#00a003"],
"1": ["Tester", "#fff", "#0c98a2", "#01c9d7"],
"2": ["Moderator", "#000", "#00dc04", "#067708"],
"3": ["Admin", "#fff", "#920606", "#c80404"],
"3": ["Admin / Developer", "#fff", "#920606", "#c80404"],
"4": ["Manager", "#fff", "#0830b4", "#1e51f8"],
}
function updateUserDataDisplay(data) {
@ -31,6 +32,10 @@ function updateUserDataDisplay(data) {
document.getElementById("access-level").textContent = level[0];
document.getElementById("access-level").style = `color: ${level[1]}; background-color: ${level[2]}; border-color: ${level[3]}`;
if (data["account_level"] >= 2) {
document.getElementById("ban").style = ""
}
}
function logOut() {
@ -111,4 +116,55 @@ async function deleteAccount() {
document.getElementById("confirm-delete").style = "display: none;"
document.getElementById("delete-success").style = ""
}
}
// ADMIN PANEL - WILL BE REMOVED ONCE ACTUAL ADMIN PANEL IS FINISHED
document.getElementById("ban").addEventListener("submit", async function (event) {
event.preventDefault();
const sfid = document.getElementById("ban-sfid").value;
let token;
let expiryStr = sessionStorage.getItem("authExpires");
if (expiryStr) { // Expiry exists so token should exist
token = sessionStorage.getItem("authToken");
let expiry = new Date(expiryStr);
if (expiry < new Date()) { // Expired token
window.location.href = "/account/login?redirect=/account"
} else if (!token) { // Expiry Saved but No Token (shouldn't be possible but it'll be caught if it happens)
window.location.href = "/account/login?redirect=/account"
}
} else { // Token Never Saved in Session
window.location.href = "/account/login?redirect=/account"
}
const response = await fetch("https://account.spfn.net/api/v2/admin/ban", {
method: "POST",
headers: {
"Authorization": `Bearer ${token}`,
"Content-Type": "application/x-www-form-urlencoded"
},
body: `username=${sfid}`
})
if (!response.ok) {
let status = response.status;
if (status == 403) {
document.getElementById("ban-status").innerText = "You are not a moderator."
} else if (status == 400) {
document.getElementById("ban-status").innerText = "Invalid Access Token. Refresh and log in again."
} else if (status == 500) {
document.getElementById("ban-status").innerText = "Server returned error whilst updating database."
} else {
document.getElementById("ban-status").innerText = `Server returned error: ${status}`
}
throw new Error(`Error while banning player: ${status}`)
}
document.getElementById("ban-status").innerText = `Successfully banned ${sfid}! Don't forget to report the ban in the Spacebar discord`
})

View file

@ -41,8 +41,33 @@ async function generateToken(username, password) {
const data = await response.json();
if (data["error"]) {
let error = data["error"];
if (error == "invalid_client" || error == "unsupported_grant_type") {
loginError("Website is misconfigured, contact a SPFN developer to fix this", 502);
} else if (error == "invalid_request") {
loginError("Website sent invalid data to account, contact a SPFN developer to fix this", 502);
} else if (error == "invalid_grant") {
loginError("Invalid SFID or Password");
} else {
loginError(error);
}
throw new Error(`Token Generation Returned Error: ${data["error"]}`);
}
if (!data["access_token"]) {
loginError("Malformed Response from API, contact a SPFN developer to fix this", 502);
throw new Error(`No Token in Response from API but No Error Field Either: ${data}`)
}
sessionStorage.setItem("authToken", data["access_token"]);
if (!data["expires_in"]) {
loginError("Malformed Response from API, contact a SPFN developer to fix this", 502);
throw new Error(`No Expiry in Response from API but No Error Field Either: ${data}`)
}
const expiry = Date.now() + (data["expires_in"] * 1000);
sessionStorage.setItem("authExpires", expiry)
return data["access_token"];

View file

@ -1,5 +1,5 @@
<a class="guide" id="install-wiiu" href="/guides?guide=install-wiiu">Installation - Wii U</a>
<a class="guide" id="install-cemu" href="/guides?guide=install-cemu">Installation - Cemu</a>
<a class="guide" id="common-errors" href="/guides?guide=common-errors">Common Error Codes</a>
<a class="guide" id="common-errors" href="/guides?guide=common-errors">Häufig auftretende Fehlercodes</a>
<a class="guide" id="troubleshoot-wiiu" href="/guides?guide=troubleshoot-wiiu">Troubleshooting - Wii U</a>
<a class="guide" id="troubleshoot-cemu" href="/guides?guide=troubleshoot-cemu">Troubleshooting - Cemu</a>
<a class="guide" id="troubleshoot-cemu" href="/guides?guide=troubleshoot-cemu">Troubleshooting - Cemu</a>

View file

@ -1,19 +1,19 @@
## Common Error Codes
## Häufig auftretende Fehlercodes
---
### 118-XXXX when Playing Matches or Matchmaking
### 118-XXXX während Matches und dem Matchmaking
These errors refer to the Peer to Peer connection. Either your connection or the connection of the host console is unstable, resulting in these errors. Ensure that your NAT type is either A or B (preferrably A) and try again
Diese Fehler kommen von der Peer-to-Peer Verbindung. Diese Fehler treten auf, wenn entweder deine Verbindung oder die Verbindung des Hosts instabil ist. Stelle sicher, dass dein NAT Typ entweder A oder B (idealerweise A) ist und versuche es erneut.
### 686-XXXX when Opening SPFN Environment
### 686-XXXX beim Starten des SPFN Environments
SPFN requires you to be on the latest version of Aroma. Open the Aroma Updater while in the SPFN environment and update it.
SPFN erfordert die neueste Version von Aroma. Öffne im SPFN Environment den Aroma Updater und aktualisiere Aroma.
### 102-28XX (Banned Error)
Either you or someone on your Wii U was banned from SPFN. Appeals are currently unavailable. Do not request an appeal from SPFN or Splatfestival staff. When appeals are available, submit your SFID and why you think it was a false ban and wait for a response.
Entweder du oder jemand auf deiner Wii U wurde von SPFN gebannt. Appeals sind derzeit nicht verfügbar. Frage nicht nach einem Appeal von SPFN oder Splatfestival Teammitgliedern. Wenn Appeals verfügbar sind, kannst du deine SFID und warum du entbannt werden solltest einreichen und auf eine Antwort warten.
### My error isn't listed here
### Mein Fehler ist hier nicht aufgeführt
[Join the Discord](https://discord.gg/grMSxZf) and ask in the assistance channel
[Tritt dem Discord bei](https://discord.gg/grMSxZf) und stelle deine Frage im Kanal #assistance.

View file

@ -2,34 +2,34 @@
---
Requirements:
Voraussetzungen:
- Wii U with SPFN set up
- SD Card (Preferrably 32GB)
- Computer or other device to access SD Card
- Device that can run Cemu
- An internet connection
- Wii U, eingerichtet mit SPFN
- SD Karte (idealerweise 32 GB)
- Computer oder ein anderes Gerät um auf die SD Karte zuzugreifen
- Gerät, das Cemu ausführen kann
- Eine Internetverbindung
### Step 1: Dump Necessary Files
### Schritt 1: Notwendige Dateien dumpen
This guide requires that you have already set up SPFN on your Wii U and created an account. Account creation is currently unavailable on this website. If you have not done this yet, [follow this guide](/guides?guide=install-wiiu)
Dieser Guide erfordert, dass du SPFN bereits auf deiner Wii U eingerichtet und einen Account erstellt hast. Das Erstellen von Accounts ist derzeit nicht auf dieser Webseite verfügbar. Hast du dies noch nicht getan, [folge diesem Guide](/guides?guide=install-wiiu).
You will also need to dump your SPFN account and `otp.bin` and `seeprom.bin`files from your Wii U. Follow Cemu's [guide to dump online files](https://cemu.cfw.guide/using-dumpling.html#online-files) and dump your SPFN account. Take this time to also dump your Splatoon game if you haven't already done so.
Ebenso musst du deinen SPFN Account, sowie die Dateien `otp.bin` und `seeprom.bin` von deiner Wii U dumpen. Folge Cemus [Guide um Online Files zu dumpen](https://cemu.cfw.guide/using-dumpling.html#online-files) und dumpe deinen SPFN Account. Wenn noch nicht geschehen, nutze die Zeit, dein Splatoon zu dumpen.
Transfer the dumped files to your computer.
Transferriere die gedumpten Dateien auf deinen Computer.
### Step 2: Cemu Configuration
### Step 2: Konfiguration von Cemu
Make sure you are using the latest version of Cemu. This can be found [here](https://github.com/cemu-project/Cemu/releases).
Stelle sicher, dass du die neueste Version von Cemu benutzt. Diese kann [hier](https://github.com/cemu-project/Cemu/releases) gefunden werden.
Open Cemu and go to `File -> Open Cemu Folder`. Place the dumped `mlc01` folder, the `otp.bin` file and the `seeprom.bin` file into the Cemu folder.
Öffne Cemu und gehe auf `Datei -> Cemu-Ordner öffnen`. Kopiere den gedumpten `mlc01` Ordner, sowie die Dateien `otp.bin` und `seeprom.bin` in den Cemu Ordner.
Download network_services.xml from [here](/downloads/) and place it into the Cemu folder
Lade `network_services.xml` von [hier](/downloads/) herunter und veschiebe sie in den Cemu Ordner.
Open Cemu and go to `Options -> General Settings`. In the `Account` tab, make sure your SPFN account is selected. If not, select it from the dropdown.
Öffne Cemu und gehe auf `Optionen -> Allgemeine Einstellungen`. Stelle im `Nutzerkonto` Tab sicher, dass dein SPFN Account ausgewählt ist. Ist dies nicht der Fall, wähle ihn im Dropdown-Menü aus.
You should see the option to switch to Custom network services. Select this. If you can't select it, you haven't added the `network_services.xml` file correctly.
Bei Netzwerk-Dienst solltest du die Option `Benutzerdefiniert` sehen. Wähle diese aus. Wenn du sie nicht auswählen kannst, hast du die `network_services.xml` nicht korrekt hinzugefügt.
Open Splatoon and check that you get the news.
Starte Splatoon und prüfe ob Aioli und Limone dich mit Nachrichten begrüßen.
You are now ready to play on the Splatfestival Network! [Join the Discord](https://discord.gg/grMSxZf) for information about upcoming or active Splatfests and other updates.
Du bist jetzt bereit, auf dem Splatfestival Network zu spielen! [Tritt dem Discord bei](https://discord.gg/grMSxZf) für Informationen über kommende oder laufende Splatfeste und andere Updates.

View file

@ -2,110 +2,109 @@
---
SPFN supports two methods of connecting to our servers:
- Aroma Plugin (Requires modded Wii U)
- SSSL (No mods required but reduced feature support)
SPFN unterstützt zwei Methoden, um sich mit unseren Serven zu verbinden:
- Aroma Plugin (Benötigt eine gemoddete Wii U)
- SSSL (Benötigt keine gemoddete WiiU, unterstützt aber weniger Funktionen)
Choose whichever method you prefer, then follow the corresponding guide. Note that SSSL has limitations compared to the Aroma method, so it is recommended you use the Aroma method if possible.
Bitte folge dem Guide mit der Methode, die du verwenden möchtest. Wichtig: SSSL unterstützt weniger Funktionen als Aroma. Deswegen wird generell Aroma als Methode verbunden.
---
## Aroma
Requirements:
- Modded Wii U with Aroma
- SD Card (Preferrably 32GB)
- Computer or other device to access SD Card
- An internet connection
Benötigt wird:
- Eine gemoddete Wii U mit Aroma
- SD-Karte (Am besten mit 32GB Speicher)
- Computer oder ein anderes Gerät, um auf die SD-Karte zugreifen zu können
- Eine Internetverbindung
In order to follow this guide, you must have a modded Wii U console with the latest version of Aroma. If your console isn't modded, [follow this guide](https://wiiu.hacks.guide/). If your console is modded, check for any Aroma updates with the Aroma Updater and install it if any are found. If you are unable to mod your Wii U, follow the SSSL guide instead.
Um diesen Guide folgen zu können benötigt man eine gemoddete WiiU mit der neusten Version von Aroma. Falls deine WiiU noch nicht mit Aroma gemoddet ist [Folge diesem Guide](https://wiiu.hacks.guide/). Wenn deine WiiU schon mit Aroma gemoddet ist, dann überprüfe Aroma auf Updates und installiere diese, falls welche vorhanden sind. Wenn das Modden deiner WiiU nicht möglich ist, folge bitte stattdessen dem SSSL-Guide.
This guide will create a duplicate Aroma environment which you can use to connect to our servers. Once set up, you will be able to switch between Pretendo and SPFN by switching which environment you launch into when starting your Wii U.
Dieser Guide wird eine Kopie von der Aroma-Umgebung erstellen, um eine Verbindung mit unseren Servern herzustellen. Nachdem dies getan wurde kann man einfach zwischen SPFN und Pretendo wechseln, indem man die Umgebung wechselt, während die Konsole am Hochfahren ist.
Ensure that you don't have a default user set before setting up SPFN as it could cause you to log in with the wrong account. To disable it, turn on your Wii U and when it logs in, press your Mii in the top left and scroll down to the option labelled "Default User" and disable it.
Stelle auch sicher, dass du keinen Nutzer als Standartnutzer festgelegt hast, bevor SPFN eingerichtet wird, da man sonst mit den falschen Account eingeloggt werden kann. Um dies zu deaktivieren, muss man die WiiU anschalten und unter den Nutzereinstellungen des betroffenen Nutzers "Als Standartnutzer festlegen?" deaktivieren.
If you are currently using Pretendo's DNS servers to connect to Pretendo, disable the DNS server before continuing.
Falls momentan Pretendos DNS-Server verwendet werden, um eine Verbindung zu Pretendo Network herzustellen, deaktiviere die Verbindung zu den DNS-Server, bevor man diesem Guide fortsetzt.
### Step 1: SD Card Preparation
### Schritt 1: SD-Karten Vorbereitungen
Plug your SD card into your computer and navigate to `SD:/wiiu/environments`
Stecke die SD-Karte in einen Computer und navigiere zu `SD:/wiiu/environments`
Make a copy of your `aroma` environment folder and rename it to `SPFN` - this will be the environment you use for connecting to our servers.
Erstelle eine Kopie vom `aroma` Environment-Ordner und benenne die Kopie in `SPFN` um - das wird die Umgebung sein, um sich mit unseren Servern zu verbinden.
For users who previously used Pretendo's Inkay plugin, delete the files `plugins/Inkay-pretendo.wps` and `modules/Inkay-pretendo.wms` from the SPFN environment.
Benutzer, die vorher Pretendo's Inkay Plugin verwendet haben, müssen die Dateien `plugins/Inkay-pretendo.wps` und `modules/Inkay-pretendo.wms` von der SPFN-Umgebung löschen.
Download the plugins and modules found on the [Downloads page](/downloads/) - make sure you enable file name extensions in your file browser and take note of the extension.
Lade die Plugins und Modules von der [Downloadseite](/downloads/) herunter - stelle sicher das in dem Datei-Explorer, der verwendet wird, Dateinamenerweiterungen aktiv sind und merke dir die Erweiterungen.
- `Inkay-spfn.wps` goes into the `plugins` folder
- `Inkay-spfn.wms` goes into the `modules` folder
- `Inkay-spfn.wps` kommt in den `plugins` Ordner
- `Inkay-spfn.wms` kommt in den `modules` Ordner
With these files installed, you can eject your SD card and put it into your Wii U.
Mit den Dateien nun auf der SD-Karte kann man diese vom Computer entfernen und in die WiiU einlegen´.
### Step 2: Setup on Console
### Schritt 2: Setup an der Konsole
Power on the console and hold `X` on the gamepad to open the Environment Loader.
Schalte die Konsole an und halte während dem Hochfahren den `X`-Knopf am Gamepad gedrückt, um den Environment Loader zu öffnen.
Navigate using the D-Pad to `SPFN` and press `A` to select. Your console will now load into the environment and connect to our servers.
Mit dem D-Pad navigiert man anschließend zu `SPFN` und drückt `A` um dies auszuwählen. Die Konsole lädt nun das `SPFN`-Environment und stellt eine Verbindung zu den SPFN-Servern her.
In the top left of your screen, you should see a message saying "Using SPFN".
Oben-Links sollte dann eine Nachricht mit dem Inhalt "Nutze SPFN" erscheinen.
> If you see "Using Pretendo Network", DO NOT PROGRESS. Turn off the console and delete the Pretendo plugins as mentioned in step 1.
> Wenn stattdessen die Nachricht "Nutze Pretendo Network" auftaucht, FAHRE NICHT MIT DEM GUIDE FORT. Schalte die Konsole aus und lösche, wie im Schritt 1 beschrieben, die Pretendo Plugins.
> If you do not see the "Using SPFN" message, you likely didn't install the plugin correctly. Check the locations of the `Inkay-spfn.wps` and `Inkay-spfn.wms` files.
> Falls du die "Nutze SPFN" Nachricht nicht siehst wurde das SPFN-Plugin wahrscheinlich nicht korrekt installiert. Überprüfe die Speicherorte der `Inkay-spfn.wps` und `Inkay-spfn.wms` Dateien.
SPFN's servers are separate from both Nintendo and Pretendo, so you will need to create a new account to access our services. Now that your console is connected to our servers, you should be brought to the accounts page. Press `+` on your gamepad to create a new account. Follow the process of creating the account. Select no when prompted if you have an NNID. Select a Mii for your account. When asked to create an account, press Link.
Die Server von SPFN sind separat von Pretendo's und Nintendos Server. Deswegen muss ein neuer Account für die Nutzung der SPFN-Server erstellt werden. Da die Konsole schon mit unseren Servern verbunden ist, muss nur noch ein neuer Nutzer angelegt werden. Drücke `+` am Gamepad bei der Benutzerauswahl, um einen neuen Nutzer anzulegen. Folge den Anweisungen der WiiU bei der Accounterstellung. Wenn gefragt wird, ob man eine NNID hat, wählt man Nein aus. Anschließend wählt man ein Mii für den Account aus. Wenn danach gefragt wird, ob man einen Account verknüpfen möchte, bestätigt man dies mit "Verknüpfen".
Before continuing, confirm that the agreement references Splatfestival Network. If it does not, your plugins aren't set up correctly. Return to step 1 and ensure they are correctly placed.
Bevor man mit den Prozess weitermacht, sollte man sicherstellen, dass die Nutzervereinbarung Splatfestival erwähnt. Dafür öffnet man die Nutzervereinbarung auf Englisch. Falls die Nutzervereinbarung nicht Splatfestival oder SPFN erwähnt sind die Plugins nicht korrekt eingerichtet. Falls dies so ist, wiederhole den Schritt 1 von diesem Guide und stelle sicher, dass die Dateien alle am richtigen Ort platziert sind.
If it does reference Splatfestival Network, read through the agreement and press `Agree`, then enter your account information.
Falls die Nutzervereinbarung Splatfestival erwähnt, lese diese aufmerksam durch und wähle `I Accept` aus, um der Nutzervereinbarung zuzustimmen. Anschließend muss man Nutzerinformationen eingeben, um den SPFN-Account zu erstellen.
> DO NOT REUSE PASSWORDS ACROSS MULTIPLE ACCOUNTS INSIDE OR OUTSIDE OF OUR NETWORK
> VERWENDE NIE DAS GLEICHE PASSWORT FÜR MEHERE ACCOUNTS INNERHALB ODER AUSSERHALB VON UNSEREM NETZWERK
Once you have created your account, you will be sent a verification code to your registered email address. It may show up in your spam folder, so look around for it before resending a new one. To enter it, log into your account on your Wii U and it will prompt you for the code. If you are already logged in, press on your Mii in the top left of your gamepad and select Switch User. Then, select your SPFN account to log back in. The prompt should appear.
Nachdem der Account erstellt wurde, wird eine Bestätigungscode an die hinterlegte E-Mail-Adresse gesendet. Es kann passieren, dass der Bestätigungscode im Spam-Ordner landen kann. Um den Bestätigungscode einzugeben, muss man sich auf der Konsole mit dem Benutzer anmelden. Nach der Anmeldung wird man dazu aufgefordert den Bestätigungscode einzugeben. Wenn man schon angemeldet ist, kann man unter den Nutzereinstellungen "Nutzer wechseln" sich mit dem Benutzer erneut anmelden. Nachdem man sich erneut angemeldet hat, sollte die Aufforderung für den Bestätigungscode auftauchen.
Open Splatoon and check that you get the news.
Starte Splatoon und überprüfe ob Arenen-Neuigkeiten empfangen werden können.
You are now ready to play on the Splatfestival Network! [Join the Discord](https://discord.gg/grMSxZf) for information about upcoming or active Splatfests and other updates.
Nun bist du bereit auf Splatfestival Network zu spielen! [Trete den Discord bei](https://discord.gg/grMSxZf) für Informationen über zukünftige Splatfests oder andere Updates.
---
## SSSL
> SSSL does not support the full feature set SPFN has to offer, features such as the Miiverse applet and in game posting are not supported through SSSL and can only be used through the Aroma method. We currently don't have Miiverse fully functional on our servers, but once it is available, users connected through SSSL will only be able to view in game posts, not create them.
> SSSL unterstützt nicht alle Funktionen von SPFN. Funktionen wie die Miiverse-App oder das Verfassen von Posts in Splatoon werden durch SSSL nicht unterstützt und können nur über Aroma verwendet werden. Momentan ist Miiverse auf den SPFN-Servern noch nicht komplett funktionsfähig, sobald es aber verfügbar sein wird, können Nutzer die SSSL verwenden nur Posts von anderen Spielern sehen aber selbst keine verfassen.
Requirements:
Benötigt wird:
- Wii U
- An internet connection
- eine Internetverbindung
If you have a modded console, it is recommended that you use the Aroma method instead, but if you wish to continue with SSSL anyways, ensure you either disable Pretendo's Inkay if present or make a duplicate environment without the Pretendo Inkay plugin and module. Guides to making a duplicate environment can be found in Step 1 of the Aroma guide above. Note that when switching between servers, you will have to disable or reenable SSSL by following this guide again.
Falls eine gemoddete Konsole schon vorhanden ist, wird als Methode Aroma empfohlen. Falls aber trotzdem SSSL verwenden möchte sollte man sicherstellen das Inkay (Plugin von Pretendo) deaktiviert ist oder eine Umgebung ohne Inkay erstellt wird. Anleitungen wie man eine Umgebung ohne Pretendos Inkay erstellen kann findet man im Schritt 1 vom Aroma Guide. Wichtig: Wenn man zwischen Pretendo und SPFN wechseln möchte, muss man SSSL mithilfe diesen Guides erneut (de-)aktivieren.
### Step 1: Console Configuration
### Schritt 1: Konfiguration der Konsole
SSSL uses the DNS settings of the console to redirect you to our servers. In order to connect, you must configure your active WiFi connection to use this DNS server.
SSSL verwendet die DNS-Einstellungen, um den Netzwerkverkehr zu unseren Servern umzuleiten. Um eine Verbindung herzustellen, muss man die DNS-Einstellungen der aktiven Internetverbindung ändern.
Boot up your Wii U and log in. Open the `System Settings` app and navigate to `Internet`. In here, select `Connect to the Internet`, press `X` to open your Connection List and select your current internet connection.
Fahre die WiiU hoch und melde dich mit einem Benutzer an. Öffne anschließend die `Systemeinstellungen` und navigiere zu der Option `Internet`. Dort angekommen wähle `Internetverbindung einrichten` aus. Anschließend drücke `X` um die Verbindungsübersicht zu öffnen. Wähle dort die Internetverbindung aus, die für SSSL verwendet werden soll.
Select `Change Settings`, then navigate to `DNS`. Change it to `Do not auto-obtain` and input the following values:
Wähle `Einstellungen ändern` aus, navigiere anschließend zu der Option `DNS` und ändere diese zu `Nicht automatisch beziehen`. Trage danach folgende Werte für die DNS ein:
- Primary DNS: 45.85.147.85
- Secondary DNS: 1.1.1.1
- Primärer DNS-Server: 45.85.147.85
- Sekundärer DNS-Server: 1.1.1.1
The Wii U may automatically format the values you inputted so that, for example, the primary DNS may look like `045.085.147.085`. This is normal and will still work correctly.
Die Wii U wird die Werte, die eingegeben wurden, automatisch formatieren. Zum Beispiel steht bei dem primären DNS-Server dann `045.085.147.085`. Das ist normal und alles wird korrekt funktionieren.
Nachdem alle Werte richtig eingetragen wurden, muss man `O.K.` drücken, um die DNS-Werte zu speichern. Drücke anschließend `B` um die geänderten Einstellungen zu speichern. Die Konsole wird danach dazu einen Auffordern einen Verbindungstest durchzuführen. Wähle `Test durchführen` aus. Der Test sollte erfolgreich ausgeführt werden. Nachdem dies erledigt, ist drückt man mehrmals `B` um die Systemeinstellungen zu verlassen und um ins Home-Menü zurückzukehren. Die Konsole sollte nun erfolgreich mit SPFN verbunden sein.
Then press confirm and press `B` to save the internet settings. The console will prompt you to perform a connection test, select `Perform Test`. The test should pass. Once this is done, exit the System Settings app by repeatedly pressing `B` to return through the menus. You should now be connected to SPFN.
### Schritt 2: Einen Account anlegen
### Step 2: Creating an Account
Die Server von SPFN sind separat von Pretendo's und Nintendos Server. Deswegen muss ein neuer Account für die Nutzung der SPFN-Server erstellt werden. Da die Konsole schon mit unseren Servern verbunden ist, muss nur noch ein neuer Nutzer angelegt werden. Drücke `+` am Gamepad bei der Benutzerauswahl, um einen neuen Nutzer anzulegen. Folge den Anweisungen der WiiU bei der Accounterstellung. Wenn gefragt wird, ob man eine NNID hat, wählt man Nein aus. Anschließend wählt man ein Mii für den Account aus. Wenn danach gefragt wird, ob man einen Account verknüpfen möchte, bestätigt man dies mit "Verknüpfen".
SPFN's servers are separate from both Nintendo and Pretendo, so you will need to create a new account to access our services. Once you have exited System Settings, tap on your Mii in the top right corner to open User Settings, then select `Switch User`. Press `+` on your gamepad to create a new account. Follow the process of creating the account. Select no when prompted if you have an NNID. Select a Mii for your account. When asked to create an account, press Link.
Bevor man mit den Prozess weitermacht, sollte man sicherstellen, dass die Nutzervereinbarung Splatfestival erwähnt. Dafür öffnet man die Nutzervereinbarung auf Englisch. Falls die Nutzervereinbarung nicht Splatfestival oder SPFN erwähnt ist, SSSL nicht richtig konfiguriert. Bitte wiederhole Schritt 1 und stelle sicher das die DNS richtig eingetragen wurde.
Before continuing, confirm that the agreement references Splatfestival Network. If it does not, you may have configured SSSL incorrectly. Return to step 1 and ensure it is correctly configured. If this doesn't resolve it, contact a SPFN developer through the assistance channel of the [Discord server](https://discord.gg/grMSxZf).
Falls die Nutzervereinbarung Splatfestival erwähnt, lese diese aufmerksam durch und wähle `I Accept` aus, um der Nutzervereinbarung zuzustimmen. Anschließend muss man Nutzerinformationen eingeben, um den SPFN-Account zu erstellen.
If it does reference Splatfestival Network, read through the agreement and press `Agree`, then enter your account information.
> VERWENDE NIE DAS GLEICHE PASSWORT FÜR MEHERE ACCOUNTS INNERHALB ODER AUSSERHALB VON UNSEREM NETZWERK
> DO NOT REUSE PASSWORDS ACROSS MULTIPLE ACCOUNTS INSIDE OR OUTSIDE OF OUR NETWORK
Nachdem der Account erstellt wurde, wird eine Bestätigungscode an die hinterlegte E-Mail-Adresse gesendet. Es kann passieren, dass der Bestätigungscode im Spam-Ordner landen kann. Um den Bestätigungscode einzugeben, muss man sich auf der Konsole mit dem Benutzer anmelden. Nach der Anmeldung wird man dazu aufgefordert den Bestätigungscode einzugeben. Wenn man schon angemeldet ist, kann man unter den Nutzereinstellungen "Nutzer wechseln" sich mit dem Benutzer erneut anmelden. Nachdem man sich erneut angemeldet hat, sollte die Aufforderung für den Bestätigungscode auftauchen.
Once you have created your account, you will be sent a verification code to your registered email address. It may show up in your spam folder, so look around for it before resending a new one. To enter it, log into your account on your Wii U and it will prompt you for the code. If you are already logged in, press on your Mii in the top left of your gamepad and select Switch User. Then, select your SPFN account to log back in. The prompt should appear.
Starte Splatoon und überprüfe ob Arenen-Neuigkeiten empfangen werden können.
Open Splatoon and check that you get the news.
You are now ready to play on the Splatfestival Network! [Join the Discord](https://discord.gg/grMSxZf) for information about upcoming or active Splatfests and other updates.
Nun bist du bereit auf Splatfestival Network zu spielen! [Trete den Discord bei](https://discord.gg/grMSxZf) für Informationen über zukünftige Splatfests oder andere Updates.

View file

@ -2,10 +2,10 @@
---
### Splatoon freezes on the loading screen when first opening
### Splatoon hängt sich im Loading-Screen auf, wenn man es das erste Mal startet
Restart Cemu and go to `Debug -> Open Logging Window`. Keep this window open and launch the game. Wait for at least 30 seconds. Screenshot the logging window and send it to the assistance channel of the [Discord](https://discord.gg/grMSxZf).
Starte Cemu neu und navigiere zu `Debug -> Logging-Fenster öffnen`. Lass dieses Fenster offen und starte das Spiel. Warte danach für mindestens 30 Sekunden. Mache danach einen Screenshot von dem Logging-Fenster und sende diesen in den Support-Channel (assistance channel) vom Splatfestival [Discord](https://discord.gg/grMSxZf).
### My issue isn't listed here
### Mein Problem wurde hier nicht erwähnt
[Join the Discord](https://discord.gg/grMSxZf) and ask in the assistance channel
[Trete dem Discord bei](https://discord.gg/grMSxZf) und frag nach Hilfe im assistance-channel.

View file

@ -2,9 +2,9 @@
---
### When I load the environment, I don't see a "Using SPFN" message / see a "Using Pretendo Network" message
Either you have selected your main Aroma environment or you have not set up the plugin correctly. Verify that you have removed the Pretendo files from the SPFN environment folder (`inkay-pretendo.wps` in `plugins` and `inkay-pretendo.wms` in `modules`). Then, when next booting your Wii U, ensure you hold `X` to open the environment selector and select the SPFN environment.
### Wenn ich die Umgebung lade, sehe ich keine "Nutze SPFN" oder ich sehe stattdessen eine "Nutze Pretendo Network" Nachricht.
Entweder wurde als Hauptumgebung Aroma gewählt oder das SPFN-Plugin wurde nicht korrekt eingerichtet. Stelle sicher, dass alle Pretendo-Dateien von dem SPFN-Umgebungsordner (`inkay-pretendo.wps` in `plugins` und `inkay-pretendo.wms` in `modules`) gelöscht wurden. Dann, nachdem du deine WiiU neugestartet hat und diese dabei ist hochzufahren, halte "X" gedrückt, um den Environment-Selector zu öffnen. Wähle dort SPFN aus, um in die SPFN-Umgebung zu booten.
### My issue isn't listed here
### Mein Problem wurde hier nicht erwähnt
[Join the Discord](https://discord.gg/grMSxZf) and ask in the assistance channel
[Trete dem Discord bei](https://discord.gg/grMSxZf) und frag nach Hilfe im assistance-channel.

View file

@ -1,5 +1,5 @@
<a class="guide" id="install-wiiu" href="/guides?guide=install-wiiu">Installation - Wii U</a>
<a class="guide" id="install-cemu" href="/guides?guide=install-cemu">Installation - Cemu</a>
<a class="guide" id="common-errors" href="/guides?guide=common-errors">Common Error Codes</a>
<a class="guide" id="troubleshoot-wiiu" href="/guides?guide=troubleshoot-wiiu">Troubleshooting - Wii U</a>
<a class="guide" id="troubleshoot-cemu" href="/guides?guide=troubleshoot-cemu">Troubleshooting - Cemu</a>
<a class="guide" id="install-wiiu" href="/guides?guide=install-wiiu">インストール - Wii U</a>
<a class="guide" id="install-cemu" href="/guides?guide=install-cemu">インストール - Cemu</a>
<a class="guide" id="common-errors" href="/guides?guide=common-errors">一般的なエラーコード</a>
<a class="guide" id="troubleshoot-wiiu" href="/guides?guide=troubleshoot-wiiu">トラブルシューティング - Wii U</a>
<a class="guide" id="troubleshoot-cemu" href="/guides?guide=troubleshoot-cemu">トラブルシューティング - Cemu</a>

View file

@ -1,19 +1,19 @@
## Common Error Codes
## 一般的なエラーコード
---
### 118-XXXX when Playing Matches or Matchmaking
### 対戦中やマッチング時に「118-XXXX」が表示される
These errors refer to the Peer to Peer connection. Either your connection or the connection of the host console is unstable, resulting in these errors. Ensure that your NAT type is either A or B (preferrably A) and try again
これらはP2Pピア・ツー・ピア接続に関するエラーです。ご自身の接続、またはホスト側親機の本体の接続が不安定なことが原因で発生します。NATタイプがAまたはB可能であればAになっていることを確認し、もう一度お試しください。
### 686-XXXX when Opening SPFN Environment
### SPFN環境を開く時に「686-XXXX」が表示される
SPFN requires you to be on the latest version of Aroma. Open the Aroma Updater while in the SPFN environment and update it.
SPFNを利用するには、最新バージョンのAromaが必要です。SPFN環境に入った状態で「Aroma Updater」を開き、アップデートを行ってください。
### 102-28XX (Banned Error)
### 「102-28XX」BANエラー
Either you or someone on your Wii U was banned from SPFN. Appeals are currently unavailable. Do not request an appeal from SPFN or Splatfestival staff. When appeals are available, submit your SFID and why you think it was a false ban and wait for a response.
ご自身、またはお使いのWii Uを利用している誰かがSPFNからBAN利用停止されています。現在、異議申し立てアカウント復旧の申請は受け付けていません。SPFNやSplatfestivalのスタッフに申し立てを要求しないでください。異議申し立ての受付が再開されたら、ご自身のSFIDと誤BANだと思われる理由を提出し、返信をお待ちください。
### My error isn't listed here
### 困っているエラーがここに記載されていない
[Join the Discord](https://discord.gg/grMSxZf) and ask in the assistance channel
[Discordに参加](https://discord.gg/grMSxZf)して、サポートassistanceチャンネルで質問してください。

View file

@ -1,35 +1,32 @@
## Installation - Cemu
## インストール - Cemu
---
Requirements:
要件:
- SPFNがセットアップされたWii U
- SDカード (32GB以上を推奨)
- SDカードにアクセスするためのコンピュータまたはその他のデバイス
- Cemuを実行できるデバイス
- インターネット接続
- Wii U with SPFN set up
- SD Card (Preferrably 32GB)
- Computer or other device to access SD Card
- Device that can run Cemu
- An internet connection
### ステップ 1: 必要なファイルのダンプ
### Step 1: Dump Necessary Files
このガイドでは、すでにWii UでSPFNをセットアップし、アカウントを作成している必要があります。現在、このウェブサイトではアカウントの作成はできません。まだ完了していない場合は、[このガイド](/guides?guide=install-wiiu)に従ってください。
This guide requires that you have already set up SPFN on your Wii U and created an account. Account creation is currently unavailable on this website. If you have not done this yet, [follow this guide](/guides?guide=install-wiiu)
また、Wii UからSPFNアカウント、および `otp.bin``seeprom.bin` ファイルをダンプする必要があります。Cemuの[オンラインファイルダンプガイド](https://cemu.cfw.guide/using-dumpling.html#online-files)に従って、SPFNアカウントをダンプしてください。まだ行っていない場合は、この機会にSplatoonのゲームデータもダンプしておいてください。
You will also need to dump your SPFN account and `otp.bin` and `seeprom.bin`files from your Wii U. Follow Cemu's [guide to dump online files](https://cemu.cfw.guide/using-dumpling.html#online-files) and dump your SPFN account. Take this time to also dump your Splatoon game if you haven't already done so.
ダンプしたファイルをコンピュータに転送します。
Transfer the dumped files to your computer.
### ステップ 2: Cemuの設定
### Step 2: Cemu Configuration
最新バージョンのCemuを使用していることを確認してください。最新版は[こちら](https://github.com/cemu-project/Cemu/releases)から入手できます。Cemuを開き、 `File -> Open Cemu Folder` に移動します。ダンプした `mlc01` フォルダー、 `otp.bin` ファイル、および `seeprom.bin` ファイルをCemuフォルダー内に配置します。
Make sure you are using the latest version of Cemu. This can be found [here](https://github.com/cemu-project/Cemu/releases).
[こちら](/downloads/)から `network_services.xml` をダウンロードし、Cemuフォルダー内に配置します。
Open Cemu and go to `File -> Open Cemu Folder`. Place the dumped `mlc01` folder, the `otp.bin` file and the `seeprom.bin` file into the Cemu folder.
Cemuを開き、 `Options -> General Settings` に移動します。 `Account` タブで、SPFNアカウントが選択されていることを確認してください。選択されていない場合は、ドロップダウンから選択します。
Download network_services.xml from [here](/downloads/) and place it into the Cemu folder
カスタムネットワークサービスCustom network servicesに切り替えるオプションが表示されるはずです。これを選択してください。選択できない場合は、 `network_services.xml` ファイルが正しく追加されていません。
Open Cemu and go to `Options -> General Settings`. In the `Account` tab, make sure your SPFN account is selected. If not, select it from the dropdown.
Splatoonを開き、ニュースを受信できることを確認します。
You should see the option to switch to Custom network services. Select this. If you can't select it, you haven't added the `network_services.xml` file correctly.
Open Splatoon and check that you get the news.
You are now ready to play on the Splatfestival Network! [Join the Discord](https://discord.gg/grMSxZf) for information about upcoming or active Splatfests and other updates.
これでSplatfestival Networkで遊ぶ準備が整いました 今後の、または開催中のフェスやその他のアプデードに関する情報については、 [Discordに参加](https://discord.gg/grMSxZf)してください。

View file

@ -1,111 +1,113 @@
## Installation - Wii U
## インストール - Wii U
---
SPFN supports two methods of connecting to our servers:
- Aroma Plugin (Requires modded Wii U)
- SSSL (No mods required but reduced feature support)
SPFNは、当社のサーバーに接続するための2つの方法をサポートしています
Choose whichever method you prefer, then follow the corresponding guide. Note that SSSL has limitations compared to the Aroma method, so it is recommended you use the Aroma method if possible.
* Aroma Plugin (改造済みWii Uが必要)
* SSSL (改造不要だが機能が制限される)
お好みの方法を選択し、対応するガイドに従ってください。SSSLはAroma方式に比べて制限があるため、可能であればAroma方式を使用することをお勧めします。
---
## Aroma
Requirements:
- Modded Wii U with Aroma
- SD Card (Preferrably 32GB)
- Computer or other device to access SD Card
- An internet connection
要件:
In order to follow this guide, you must have a modded Wii U console with the latest version of Aroma. If your console isn't modded, [follow this guide](https://wiiu.hacks.guide/). If your console is modded, check for any Aroma updates with the Aroma Updater and install it if any are found. If you are unable to mod your Wii U, follow the SSSL guide instead.
* 最新バージョンのAromaがインストールされた改造済みWii U
* SDカード (32GB以上を推奨)
* SDカードにアクセスするためのコンピュータまたはその他のデバイス
* インターネット接続
This guide will create a duplicate Aroma environment which you can use to connect to our servers. Once set up, you will be able to switch between Pretendo and SPFN by switching which environment you launch into when starting your Wii U.
このガイドに従うには、最新バージョンのAromaがインストールされた改造済みWii U本体が必要です。お持ちの本体が改造されていない場合は、[このガイド](https://wiiu.hacks.guide/)に従って改造してください。本体が改造されている場合は、Aroma UpdaterでAromaのアップデートを確認し、アップデートがある場合はインストールしてください。Wii Uを改造できない場合は、代わりにSSSLガイドに従ってください。
Ensure that you don't have a default user set before setting up SPFN as it could cause you to log in with the wrong account. To disable it, turn on your Wii U and when it logs in, press your Mii in the top left and scroll down to the option labelled "Default User" and disable it.
このガイドでは、当社のサーバーに接続するために使用できる複製されたAroma環境を作成します。セットアップが完了すると、Wii Uの起動時にどの環境を起動するかを切り替えることで、PretendoとSPFNを切り替えることができます。
If you are currently using Pretendo's DNS servers to connect to Pretendo, disable the DNS server before continuing.
SPFNをセットアップする前に、デフォルトのユーザーが設定されていないことを確認してください。間違ったアカウントでログインしてしまう可能性があります。これを無効にするには、Wii Uの電源を入れ、ログインしたら左上のMiiを押し、下にスクロールして「デフォルトユーザー」というラベルのオプションを選択し、無効にします。
### Step 1: SD Card Preparation
現在、Pretendoに接続するためにPretendoのDNSサーバーを使用している場合は、続行する前にDNSサーバーを無効にしてください。
Plug your SD card into your computer and navigate to `SD:/wiiu/environments`
### ステップ 1: SDカードの準備
Make a copy of your `aroma` environment folder and rename it to `SPFN` - this will be the environment you use for connecting to our servers.
SDカードをコンピュータに差し込み、 `SD:/wiiu/environments` に移動します。
For users who previously used Pretendo's Inkay plugin, delete the files `plugins/Inkay-pretendo.wps` and `modules/Inkay-pretendo.wms` from the SPFN environment.
`aroma` 環境フォルダーのコピーを作成し、名前を `SPFN` に変更します。これが当社のサーバーに接続するために使用する環境になります。
Download the plugins and modules found on the [Downloads page](/downloads/) - make sure you enable file name extensions in your file browser and take note of the extension.
以前PretendoのInkayプラグインを使用していたユーザーは、SPFN環境から `plugins/Inkay-pretendo.wps``modules/Inkay-pretendo.wms` のファイルを削除してください。
- `Inkay-spfn.wps` goes into the `plugins` folder
- `Inkay-spfn.wms` goes into the `modules` folder
[ダウンロードページ](https://www.google.com/search?q=/downloads/)にあるプラグインとモジュールをダウンロードします。ファイルブラウザでファイル名拡張子を有効にし、拡張子に注意してください。
With these files installed, you can eject your SD card and put it into your Wii U.
* `Inkay-spfn.wps``plugins` フォルダーに入ります
* `Inkay-spfn.wms``modules` フォルダーに入ります
### Step 2: Setup on Console
これらのファイルをインストールしたら、SDカードを取り出してWii Uに差し込みます。
Power on the console and hold `X` on the gamepad to open the Environment Loader.
### ステップ 2: 本体でのセットアップ
Navigate using the D-Pad to `SPFN` and press `A` to select. Your console will now load into the environment and connect to our servers.
本体の電源を入れ、ゲームパッドの `X` を押し続けてEnvironment Loaderを開きます。
In the top left of your screen, you should see a message saying "Using SPFN".
十字ボタンを使用して `SPFN` に移動し、 `A` を押して選択します。本体が環境をロードし、当社のサーバーに接続します。
> If you see "Using Pretendo Network", DO NOT PROGRESS. Turn off the console and delete the Pretendo plugins as mentioned in step 1.
画面の左上に「Using SPFN」というメッセージが表示されるはずです。
> If you do not see the "Using SPFN" message, you likely didn't install the plugin correctly. Check the locations of the `Inkay-spfn.wps` and `Inkay-spfn.wms` files.
> 「Using Pretendo Network」と表示された場合は、先に進まないでください。本体の電源を切り、ステップ1で述べたようにPretendoプラグインを削除してください。
> 「Using SPFN」メッセージが表示されない場合は、プラグインが正しくインストールされていない可能性があります。 `Inkay-spfn.wps``Inkay-spfn.wms` ファイルの場所を確認してください。
SPFN's servers are separate from both Nintendo and Pretendo, so you will need to create a new account to access our services. Now that your console is connected to our servers, you should be brought to the accounts page. Press `+` on your gamepad to create a new account. Follow the process of creating the account. Select no when prompted if you have an NNID. Select a Mii for your account. When asked to create an account, press Link.
SPFNのサーバーはNintendoとPretendoの両方から独立しているため、当社のサービスにアクセスするには新しいアカウントを作成する必要があります。本体が当社のサーバーに接続されたので、アカウントページが表示されるはずです。ゲームパッドの `+` を押して新しいアカウントを作成します。アカウント作成プロセスに従います。NNIDを持っているか尋ねられたら、いいえを選択します。アカウントのMiiを選択します。アカウントの作成を求められたら、Linkを押します。
Before continuing, confirm that the agreement references Splatfestival Network. If it does not, your plugins aren't set up correctly. Return to step 1 and ensure they are correctly placed.
続行する前に、契約書がSplatfestival Networkに言及していることを確認してください。言及していない場合は、プラグインが正しくセットアップされていません。ステップ1に戻り、正しく配置されていることを確認してください。
If it does reference Splatfestival Network, read through the agreement and press `Agree`, then enter your account information.
Splatfestival Networkに言及している場合は、契約書を読み、 `Agree` を押してからアカウント情報を入力します。
> DO NOT REUSE PASSWORDS ACROSS MULTIPLE ACCOUNTS INSIDE OR OUTSIDE OF OUR NETWORK
> 当社ネットワーク内またはネットワーク外の複数のアカウントでパスワードを使い回さないでください
Once you have created your account, you will be sent a verification code to your registered email address. It may show up in your spam folder, so look around for it before resending a new one. To enter it, log into your account on your Wii U and it will prompt you for the code. If you are already logged in, press on your Mii in the top left of your gamepad and select Switch User. Then, select your SPFN account to log back in. The prompt should appear.
アカウントを作成すると、登録したメールアドレスに確認コードが送信されます。迷惑メールフォルダに入っている可能性があるため、新しいコードを再送信する前に確認してください。コードを入力するには、Wii Uでアカウントにログインすると、コードの入力を求められます。すでにログインしている場合は、ゲームパッドの左上のMiiを押し、ユーザーの切り替えを選択します。次に、SPFNアカウントを選択して再度ログインします。プロンプトが表示されるはずです。
Open Splatoon and check that you get the news.
Splatoonを開き、ニュースを受信できることを確認します。
You are now ready to play on the Splatfestival Network! [Join the Discord](https://discord.gg/grMSxZf) for information about upcoming or active Splatfests and other updates.
これでSplatfestival Networkで遊ぶ準備が整いました 今後の、または開催中のフェスやその他のアップデートに関する情報については、 [Discordに参加](https://discord.gg/grMSxZf)してください。
---
## SSSL
> SSSL does not support the full feature set SPFN has to offer, features such as the Miiverse applet and in game posting are not supported through SSSL and can only be used through the Aroma method. We currently don't have Miiverse fully functional on our servers, but once it is available, users connected through SSSL will only be able to view in game posts, not create them.
> SSSLはSPFNが提供するすべての機能をサポートしているわけではありません。Miiverseアプレットやゲーム内投稿などの機能はSSSLではサポートされておらず、Aroma方式でのみ使用できます。現在、当社のサーバーではMiiverseは完全に機能していませんが、利用可能になった場合、SSSLを介して接続されたユーザーはゲーム内投稿を表示することはできますが、作成することはできません。
Requirements:
- Wii U
- An internet connection
要件:
If you have a modded console, it is recommended that you use the Aroma method instead, but if you wish to continue with SSSL anyways, ensure you either disable Pretendo's Inkay if present or make a duplicate environment without the Pretendo Inkay plugin and module. Guides to making a duplicate environment can be found in Step 1 of the Aroma guide above. Note that when switching between servers, you will have to disable or reenable SSSL by following this guide again.
* Wii U
* インターネット接続
### Step 1: Console Configuration
改造済みの本体をお持ちの場合は、代わりにAroma方式を使用することをお勧めしますが、それでもSSSLで続行したい場合は、PretendoのInkayが存在する場合は無効にするか、Pretendo Inkayプラグインとモジュールのない複製環境を作成してください。複製環境を作成するガイドは、上記のAromaガイドのステップ1にあります。サーバーを切り替える際は、このガイドを再度実行してSSSLを無効または再度有効にする必要があることに注意してください。
SSSL uses the DNS settings of the console to redirect you to our servers. In order to connect, you must configure your active WiFi connection to use this DNS server.
### ステップ 1: 本体の設定
Boot up your Wii U and log in. Open the `System Settings` app and navigate to `Internet`. In here, select `Connect to the Internet`, press `X` to open your Connection List and select your current internet connection.
SSSLは本体のDNS設定を使用して、当社のサーバーにリダイレクトします。接続するには、アクティブなWiFi接続がこのDNSサーバーを使用するように設定する必要があります。
Select `Change Settings`, then navigate to `DNS`. Change it to `Do not auto-obtain` and input the following values:
Wii Uを起動してログインします。 `System Settings` アプリを開き、 `Internet` に移動します。ここで、 `Connect to the Internet` を選択し、 `X` を押して接続リストを開き、現在のインターネット接続を選択します。
- Primary DNS: 45.85.147.85
- Secondary DNS: 1.1.1.1
`Change Settings` を選択し、 `DNS` に移動します。 `Do not auto-obtain` に変更し、以下の値を入力します。
The Wii U may automatically format the values you inputted so that, for example, the primary DNS may look like `045.085.147.085`. This is normal and will still work correctly.
* Primary DNS: 45.85.147.85
* Secondary DNS: 1.1.1.1
Then press confirm and press `B` to save the internet settings. The console will prompt you to perform a connection test, select `Perform Test`. The test should pass. Once this is done, exit the System Settings app by repeatedly pressing `B` to return through the menus. You should now be connected to SPFN.
Wii Uは入力した値を自動的にフォーマットする場合があるため、たとえば、プライマリDNSが `045.085.147.085` のように見えることがあります。これは正常であり、問題なく動作します。
### Step 2: Creating an Account
次に、confirmを押し、 `B` を押してインターネット設定を保存します。本体が接続テストを実行するように求めてくるので、 `Perform Test` を選択します。テストは合格するはずです。完了したら、 `B` を繰り返し押してメニューを戻り、System Settingsアプリを終了します。これでSPFNに接続されているはずです。
SPFN's servers are separate from both Nintendo and Pretendo, so you will need to create a new account to access our services. Once you have exited System Settings, tap on your Mii in the top right corner to open User Settings, then select `Switch User`. Press `+` on your gamepad to create a new account. Follow the process of creating the account. Select no when prompted if you have an NNID. Select a Mii for your account. When asked to create an account, press Link.
### ステップ 2: アカウントの作成
Before continuing, confirm that the agreement references Splatfestival Network. If it does not, you may have configured SSSL incorrectly. Return to step 1 and ensure it is correctly configured. If this doesn't resolve it, contact a SPFN developer through the assistance channel of the [Discord server](https://discord.gg/grMSxZf).
SPFNのサーバーはNintendoとPretendoの両方から独立しているため、当社のサービスにアクセスするには新しいアカウントを作成する必要があります。System Settingsを終了したら、右上隅のMiiをタップしてユーザー設定を開き、 `Switch User` を選択します。ゲームパッドの `+` を押して新しいアカウントを作成します。アカウント作成プロセスに従います。NNIDを持っているか尋ねられたら、いいえを選択します。アカウントのMiiを選択します。アカウントの作成を求められたら、Linkを押します。
If it does reference Splatfestival Network, read through the agreement and press `Agree`, then enter your account information.
続行する前に、契約書がSplatfestival Networkに言及していることを確認してください。言及していない場合は、SSSLの設定が間違っている可能性があります。ステップ1に戻り、正しく設定されていることを確認してください。これで解決しない場合は、 [Discordサーバー](https://discord.gg/grMSxZf)のアシスタンスチャンネルからSPFN開発者に連絡してください。
> DO NOT REUSE PASSWORDS ACROSS MULTIPLE ACCOUNTS INSIDE OR OUTSIDE OF OUR NETWORK
Splatfestival Networkに言及している場合は、契約書を読み、 `Agree` を押してからアカウント情報を入力します。
Once you have created your account, you will be sent a verification code to your registered email address. It may show up in your spam folder, so look around for it before resending a new one. To enter it, log into your account on your Wii U and it will prompt you for the code. If you are already logged in, press on your Mii in the top left of your gamepad and select Switch User. Then, select your SPFN account to log back in. The prompt should appear.
> 当社ネットワーク内またはネットワーク外の複数のアカウントでパスワードを使い回さないでください
Open Splatoon and check that you get the news.
アカウントを作成すると、登録したメールアドレスに確認コードが送信されます。迷惑メールフォルダに入っている可能性があるため、新しいコードを再送信する前に確認してください。コードを入力するには、Wii Uでアカウントにログインすると、コードの入力を求められます。すでにログインしている場合は、ゲームパッドの左上のMiiを押し、ユーザーの切り替えを選択します。次に、SPFNアカウントを選択して再度ログインします。プロンプトが表示されるはずです。
You are now ready to play on the Splatfestival Network! [Join the Discord](https://discord.gg/grMSxZf) for information about upcoming or active Splatfests and other updates.
Splatoonを開き、ニュースを受信できることを確認します。
これでSplatfestival Networkで遊ぶ準備が整いました 今後の、または開催中のフェスやその他のアップデートに関する情報については、 [Discordに参加](https://discord.gg/grMSxZf)してください。

View file

@ -1,11 +1,11 @@
## Troubleshooting - Cemu
## トラブルシューティング - Cemu
---
### Splatoon freezes on the loading screen when first opening
### 初回起動時、Splatoonがロード画面でフリーズする
Restart Cemu and go to `Debug -> Open Logging Window`. Keep this window open and launch the game. Wait for at least 30 seconds. Screenshot the logging window and send it to the assistance channel of the [Discord](https://discord.gg/grMSxZf).
Cemuを再起動し、`Debug -> Open Logging Window`(デバッグ -> ログウィンドウを開くを選択します。このウィンドウを開いた状態のままゲームを起動し、少なくとも30秒間待ってください。ログウィンドウのスクリーンショットを撮影し、[Discord](https://discord.gg/grMSxZf)のサポートassistanceチャンネルに送信してください。
### My issue isn't listed here
### 困っている問題がここに記載されていない
[Join the Discord](https://discord.gg/grMSxZf) and ask in the assistance channel
[Discordに参加](https://discord.gg/grMSxZf)して、サポートassistanceチャンネルで質問してください。

View file

@ -1,10 +1,11 @@
## Troubleshooting - Wii U
## トラブルシューティング - Wii U
---
### When I load the environment, I don't see a "Using SPFN" message / see a "Using Pretendo Network" message
Either you have selected your main Aroma environment or you have not set up the plugin correctly. Verify that you have removed the Pretendo files from the SPFN environment folder (`inkay-pretendo.wps` in `plugins` and `inkay-pretendo.wms` in `modules`). Then, when next booting your Wii U, ensure you hold `X` to open the environment selector and select the SPFN environment.
### 環境をロードした際、「Using SPFN」というメッセージが表示されない、または「Using Pretendo Network」というメッセージが表示される
### My issue isn't listed here
メインのAroma環境を選択しているか、プラグインの設定が正しく行われていない可能性があります。SPFN環境フォルダーからPretendoのファイル`plugins` 内の `inkay-pretendo.wps` および `modules` 内の `inkay-pretendo.wms`が削除されているか確認してください。その後、次回Wii Uを起動する際に、必ず `X` ボタンを長押しして環境セレクターを開き、SPFN環境を選択してください。
[Join the Discord](https://discord.gg/grMSxZf) and ask in the assistance channel
### 困っている問題がここに記載されていない
[Discordに参加](https://discord.gg/grMSxZf)して、サポートassistanceチャンネルで質問してください。