Merge pull request #124 from RiiConnect24/NightYoshi370-patch-1
Night yoshi370 patch 1
This commit is contained in:
commit
3ccd6c7e03
3 changed files with 39 additions and 33 deletions
|
@ -1,16 +1,3 @@
|
|||
---
|
||||
title: "CleanRip"
|
||||
---
|
||||
|
||||
{% include toc title="Table of Contents" %}
|
||||
|
||||
If you need help for anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/b4Y7jfD) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net).
|
||||
{: .notice--info}
|
||||
|
||||
Do you want to make a backup of your games? This tutorial will explain you how to use CleanRip.
|
||||
|
||||
![RiiConnect24 Logo](/images/WiiRC24Logo.jpg)
|
||||
|
||||
#### What you need
|
||||
|
||||
* An SD card or USB drive with at least 4.7 GB of free space
|
||||
|
|
|
@ -2,13 +2,45 @@
|
|||
title: "Dumping Wii/GameCube games"
|
||||
---
|
||||
|
||||
Want to legally dump a GameCube or a Wii game and play it on your Wii? With this tutorial we will explain how to do it.
|
||||
Want to dump a GameCube or a Wii disk? There are two ways of doing so, depending on the tools you have available with you.
|
||||
|
||||
Please choose how you want to dump the disc.
|
||||
{: .notice--warning}
|
||||
<button class="tablinks btn btn--large btn--primary" id="defaultOpen" onclick="openTab(event, 'cleanrip')">To the SD card/USB drive</button>
|
||||
<button class="tablinks btn btn--large btn--info" onclick="openTab(event, 'network')">To a PC over the network</button>
|
||||
|
||||
[I want to dump it to the SD card/USB device](cleanrip)
|
||||
{: .notice--info}
|
||||
{% capture cleanripInstructions %}
|
||||
### Cleanrip guide
|
||||
{% include_relative cleanrip.md %}
|
||||
{% endcapture %}
|
||||
|
||||
[I want to dump it directly to my PC over a network](dump-smb)
|
||||
{: .notice--info}
|
||||
{% capture networkInstructions %}
|
||||
### Dumping a game over a local network
|
||||
{% include_relative dump-smb.md %}
|
||||
{% endcapture %}
|
||||
|
||||
<div id="cleanrip" class="blanktabcontent">{{ cleanripInstructions | markdownify }}</div>
|
||||
<div id="network" class="blanktabcontent">{{ networkInstructions | markdownify }}</div>
|
||||
|
||||
<script>
|
||||
let tabcontent = document.getElementsByClassName("blanktabcontent");
|
||||
let tablinks = document.getElementsByClassName("tablinks");
|
||||
|
||||
function openTab(evt, tabName) {
|
||||
let element;
|
||||
|
||||
for (element of tabcontent) {
|
||||
element.style.display = "none";
|
||||
}
|
||||
|
||||
for (element of tablinks) {
|
||||
element.className = element.className.replace("btn--primary", "btn--info");
|
||||
if (!element.className.includes('btn--info'))
|
||||
element.className += " btn--info";
|
||||
}
|
||||
|
||||
document.getElementById(tabName).style.display = "block";
|
||||
evt.currentTarget.className = evt.currentTarget.className.replace("btn--info", "btn--primary");
|
||||
}
|
||||
|
||||
// Get the element with id="defaultOpen" and click on it
|
||||
document.getElementById("defaultOpen").click();
|
||||
</script>
|
||||
|
|
|
@ -1,16 +1,3 @@
|
|||
---
|
||||
title: "Dumping a game over a local network"
|
||||
---
|
||||
|
||||
{% include toc title="Table of Contents" %}
|
||||
|
||||
If you need help for anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/b4Y7jfD) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net).
|
||||
{: .notice--info}
|
||||
|
||||
Do you want to dump games through your local network? Follow this tutorial! This can be useful if you don't have an SD card or a USB drive that is large enough to dump a game to.
|
||||
|
||||
![RiiConnect24 Logo](/images/WiiRC24Logo.jpg)
|
||||
|
||||
#### What you need
|
||||
|
||||
* A Wii.
|
||||
|
|
Loading…
Reference in a new issue