Added Downloads Page, Mod Files and Updated Guides
This commit is contained in:
parent
109955f7f9
commit
9c638c039b
11 changed files with 147 additions and 9 deletions
|
|
@ -19,6 +19,7 @@
|
||||||
<ul class="nav-links">
|
<ul class="nav-links">
|
||||||
<a href="/"><button class="header-button">Home</button></a>
|
<a href="/"><button class="header-button">Home</button></a>
|
||||||
<a href="/guides"><button class="header-button">Guides</button></a>
|
<a href="/guides"><button class="header-button">Guides</button></a>
|
||||||
|
<a href="/downloads"><button class="header-button">Downloads</button></a>
|
||||||
<a href="/account"><button class="header-button active">Account</button></a>
|
<a href="/account"><button class="header-button active">Account</button></a>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
<ul class="nav-links">
|
<ul class="nav-links">
|
||||||
<a href="/"><button class="header-button">Home</button></a>
|
<a href="/"><button class="header-button">Home</button></a>
|
||||||
<a href="/guides"><button class="header-button">Guides</button></a>
|
<a href="/guides"><button class="header-button">Guides</button></a>
|
||||||
|
<a href="/downloads"><button class="header-button">Downloads</button></a>
|
||||||
<a href="/account"><button class="header-button active">Account</button></a>
|
<a href="/account"><button class="header-button active">Account</button></a>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
||||||
|
|
@ -350,6 +350,61 @@ code {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.download-category {
|
||||||
|
margin: 12px;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-category-title {
|
||||||
|
margin: 0;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-container {
|
||||||
|
display: flex;
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 70%;
|
||||||
|
background-color: #770505;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 8px;
|
||||||
|
font-size: 16px;
|
||||||
|
flex-direction: column;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-link-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-link {
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 16px;
|
||||||
|
border: 4px solid #a00b0b;
|
||||||
|
margin: 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-title {
|
||||||
|
padding-bottom: 8px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-path {
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
margin: 0;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (orientation: portrait) {
|
||||||
|
.download-container {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.active {
|
.active {
|
||||||
background-color: #a00b0b;
|
background-color: #a00b0b;
|
||||||
border-color: #6d0606;
|
border-color: #6d0606;
|
||||||
|
|
|
||||||
BIN
downloads/Inkay-spfn.wms
Normal file
BIN
downloads/Inkay-spfn.wms
Normal file
Binary file not shown.
BIN
downloads/Inkay-spfn.wps
Normal file
BIN
downloads/Inkay-spfn.wps
Normal file
Binary file not shown.
62
downloads/index.html
Normal file
62
downloads/index.html
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Downloads | SPFN</title>
|
||||||
|
<link rel="icon" type="image/png" href="/res/img/spfn.png">
|
||||||
|
|
||||||
|
<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 rel="stylesheet" href="/css/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<div style="display: flex;">
|
||||||
|
<img style="width: 96px; padding: 0px; margin: 0px" src="/res/img/spfn.png">
|
||||||
|
<h2 style="font-size: 32px; margin: auto; padding: 12px">Downloads</h2>
|
||||||
|
</div>
|
||||||
|
<nav>
|
||||||
|
<ul class="nav-links">
|
||||||
|
<a href="/"><button class="header-button">Home</button></a>
|
||||||
|
<a href="/guides"><button class="header-button">Guides</button></a>
|
||||||
|
<a href="/downloads"><button class="header-button active">Downloads</button></a>
|
||||||
|
<a href="/account"><button class="header-button">Account</button></a>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<div class="download-container">
|
||||||
|
<div>
|
||||||
|
<div class="download-category">
|
||||||
|
<h2 class="download-category-title">Wii U</h2>
|
||||||
|
<div class="download-link-container">
|
||||||
|
<div class="download-link">
|
||||||
|
<h3 class="download-title">Inkay-spfn.wps</h3>
|
||||||
|
<p class="download-path">SD:/wiiu/environments/SPFN/plugins/Inkay-spfn.wps</p>
|
||||||
|
<a download href="/downloads/Inkay-spfn.wps"><button class="header-button">Download</button></a>
|
||||||
|
</div>
|
||||||
|
<div class="download-link">
|
||||||
|
<h3 class="download-title">Inkay-spfn.wms</h3>
|
||||||
|
<p class="download-path">SD:/wiiu/environments/SPFN/modules/Inkay-spfn.wms</p>
|
||||||
|
<a download href="/downloads/Inkay-spfn.wms"><button class="header-button">Download</button></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="download-category">
|
||||||
|
<h2 class="download-category-title">Cemu</h2>
|
||||||
|
<div class="download-link-container">
|
||||||
|
<div class="download-link">
|
||||||
|
<h3 class="download-title">network_services.xml</h3>
|
||||||
|
<p class="download-path">%appdata%/Cemu/network_services.xml</p>
|
||||||
|
<a download href="/downloads/network_services.xml"><button class="header-button">Download</button></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<p class="center">Need assistance? <a href="https://discord.gg/grMSxZf" target="_blank">Join the Discord</a></p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
17
downloads/network_services.xml
Executable file
17
downloads/network_services.xml
Executable file
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<content>
|
||||||
|
<networkname>SPFN</networkname>
|
||||||
|
<disablesslverification>1</disablesslverification>
|
||||||
|
<urls>
|
||||||
|
<act>https://account.spfn.net</act>
|
||||||
|
<ecs>https://ecs.wup.shop.nintendo.net/ecs/services/ECommerceSOAP</ecs>
|
||||||
|
<nus>https://nus.wup.shop.nintendo.net/nus/services/NetUpdateSOAP</nus>
|
||||||
|
<ias>https://ias.wup.shop.nintendo.net/ias/services/IdentityAuthenticationSOAP</ias>
|
||||||
|
<ccsu>https://ccs.wup.shop.nintendo.net/ccs/download</ccsu>
|
||||||
|
<ccs>http://ccs.cdn.wup.shop.nintendo.net/ccs/download</ccs>
|
||||||
|
<idbe>https://idbe-wup.cdn.nintendo.net/icondata</idbe>
|
||||||
|
<boss>https://boss.spfn.net/p01/tasksheet</boss>
|
||||||
|
<tagaya>https://tagaya.wup.shop.nintendo.net/tagaya/versionlist</tagaya>
|
||||||
|
<olv>https://discover.olv.nintendo.net/v1/endpoint</olv>
|
||||||
|
</urls>
|
||||||
|
</content>
|
||||||
|
|
@ -22,6 +22,7 @@
|
||||||
<ul class="nav-links">
|
<ul class="nav-links">
|
||||||
<a href="/"><button class="header-button">Home</button></a>
|
<a href="/"><button class="header-button">Home</button></a>
|
||||||
<a href="/guides"><button class="header-button active">Guides</button></a>
|
<a href="/guides"><button class="header-button active">Guides</button></a>
|
||||||
|
<a href="/downloads"><button class="header-button">Downloads</button></a>
|
||||||
<a href="/account"><button class="header-button">Account</button></a>
|
<a href="/account"><button class="header-button">Account</button></a>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
<ul class="nav-links">
|
<ul class="nav-links">
|
||||||
<a href="/"><button class="header-button active">Home</button></a>
|
<a href="/"><button class="header-button active">Home</button></a>
|
||||||
<a href="/guides"><button class="header-button">Guides</button></a>
|
<a href="/guides"><button class="header-button">Guides</button></a>
|
||||||
|
<a href="/downloads"><button class="header-button">Downloads</button></a>
|
||||||
<a href="/account"><button class="header-button">Account</button></a>
|
<a href="/account"><button class="header-button">Account</button></a>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
||||||
|
|
@ -28,11 +28,11 @@ Make sure you are using the latest version of Cemu. This can be found [here](htt
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
Download the following file: network_services.xml (LINK NOT AVAILABLE) and place it into the Cemu folder
|
Download network_services.xml from [here](/downloads/) and place it into the Cemu folder
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
You should see the option to switch to Cusom network services. Select this. If you can't select it, you haven't added the `network_services.xml` file correctly.
|
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.
|
Open Splatoon and check that you get the news.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,10 +22,10 @@ Make a copy of your `aroma` environment folder and rename it to `SPFN` - this wi
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
Download the plugins and modules found here (LINK NOT AVAILABLE) - make sure you enable file name extensions in your file browser and take note of the extension.
|
Download the plugins and modules found [here](/downloads/) - make sure you enable file name extensions in your file browser and take note of the extension.
|
||||||
|
|
||||||
- `plugin.wps` goes into `plugins`
|
- `Inkay-spfn.wps` goes into `plugins`
|
||||||
- `module.wms` goes into `modules`
|
- `Inkay-spfn.wms` goes into `modules`
|
||||||
|
|
||||||
With these files installed, you can eject your SD card and put it into your Wii U.
|
With these files installed, you can eject your SD card and put it into your Wii U.
|
||||||
|
|
||||||
|
|
@ -37,13 +37,13 @@ Power on the console and hold `X` on the gamepad to open the Environment Loader.
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
In the top left of your screen, you should see a message saying "Connected to Servers".
|
In the top left of your screen, you should see a message saying "Using SPFN".
|
||||||
|
|
||||||
> If you see "Using Pretendo Network", DO NOT PROGRESS. Turn off the console and delete the Pretendo plugins as mentioned in step 1.
|
> If you see "Using Pretendo Network", DO NOT PROGRESS. Turn off the console and delete the Pretendo plugins as mentioned in step 1.
|
||||||
|
|
||||||
> If you do not see the "Connected to Servers" message, you likely didn't install the plugin correctly. Check the locations of the `plugin.wps` and `module.wms` files.
|
> If you do not see the "Using SPFN" message, you likely didn't install the plugin correctly. Check the locations of the `plugin.wps` and `module.wms` files.
|
||||||
|
|
||||||
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'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.
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
|
@ -51,7 +51,7 @@ If it does reference Splatfestival Network, read through the agreement and press
|
||||||
|
|
||||||
> DO NOT REUSE PASSWORDS ACROSS MULTIPLE ACCOUNTS INSIDE OR OUTSIDE OF OUR NETWORK
|
> 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. 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.
|
Once you have created your account, you will be sent a verification code to your registered email address. 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.
|
Open Splatoon and check that you get the news.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue