Make super-skaterhax inline troubleshooting only

This commit is contained in:
Gruetzig 2023-04-11 22:16:40 +02:00 committed by lifehackerhansol
parent 632bea89db
commit abe4f29aea
3 changed files with 18 additions and 10 deletions

View file

@ -1,4 +1,4 @@
<table id="modeltable" class="modeltable" style="display:none">
<!-- <table id="modeltable" class="modeltable" style="display:none">
<thead>
<th><div align="center">Old 3DS/2DS</div></th>
<th><div align="center">New 3DS/2DS</div></th>
@ -7,7 +7,7 @@
<td> <img class="tableimage" src="/images/old3ds.png" alt="old 3DS"> <img class="tableimage" src="/images/old3dsxl.png" alt="old 3DS"> <img class="tableimage" src="/images/2ds.png" alt="old 3DS"><br><br><input type="radio" name="checkbox" id="old3DS"></td>
<td> <img class="tableimage" src="/images/new3ds.png" alt="old 3DS"> <img class="tableimage" src="/images/new3dsxl.png" alt="old 3DS"> <img class="tableimage" src="/images/new2dsxl.png" alt="old 3DS"><br><br><input type="radio" name="checkbox" id="new3DS"></td>
</tbody>
</table>
</table> -->
<div id="selectversion" class="selectversion" style="display:none">
<br>
<select id="major">
@ -107,7 +107,7 @@
</div>
<script>
document.getElementById("modeltable").style.display = "block";
//document.getElementById("modeltable").style.display = "block";
document.getElementById("selectversion").style.display = "block";
</script>

View file

@ -101,7 +101,10 @@ Your friend code was blocked from using the friend code bot because your 3DS did
{% capture compat %}
<summary><u>We were unable to successfully complete your bruteforce request. :`(</u></summary>
The website has determined that your `movable.sed` cannot be brute-forced. Ensure that you gave the correct ID0 to the website. If your ID0 is correct, then you will be unable to use Seedminer and you will have to use an alternate method that will require additional games or hardware.
The website has determined that your `movable.sed` cannot be brute-forced. Ensure that you gave the correct ID0 to the website. If your ID0 is correct, then you will be unable to use Seedminer and you will have to use an alternate method.
If you have a New 3DS / New 3DS XL / New 2DS XL (as indicated by the four shoulder buttons on the back and the C-Stick on the right), you can follow [Homebrew Launcher (super-skaterhax)](homebrew-launcher-(super-skaterhax)). Otherwise, you will need to follow a method that requires additional games or hardware.
{% endcapture %}
<details>{{ compat | markdownify }}</details>

View file

@ -75,15 +75,15 @@ function redirect() {
var minor = document.getElementById("minor");
var nver = document.getElementById("nver");
var region = document.getElementById("region");
var isN3DS = document.getElementById("new3DS").checked;
var isO3DS = document.getElementById("old3DS").checked;
//var isN3DS = document.getElementById("new3DS").checked;
//var isO3DS = document.getElementById("old3DS").checked;
document.getElementById("result_noneSelected").style.display = "none";
document.getElementById("result_invalidVersion").style.display = "none";
document.getElementById("result_methodUnavailable").style.display = "none";
if ((!isN3DS) && (!isO3DS)) {
document.getElementById("result_noneSelected").style.display = "block";
}
else if (major.value == 0) {
//if ((!isN3DS) && (!isO3DS)) {
// document.getElementById("result_noneSelected").style.display = "block";
//}
if (major.value == 0) {
document.getElementById("result_invalidVersion").style.display = "block";
}
// only do things if major isnt 0, which would be invalid
@ -102,9 +102,11 @@ function redirect() {
window.location.href = "installing-boot9strap-(safecerthax)";
}
// new browserhax for latest version
/*
else if (isN3DS) {
window.location.href = "homebrew-launcher-(super-skaterhax)";
}
*/
// seedminer does still work for the latest version on E/U/J/K/T/C, but can only be chained on E/U/J/K/T
else {
window.location.href = "seedminer";
@ -123,9 +125,12 @@ function redirect() {
else if (minor.value < 15 && isO3DS) {
window.location.href = "installing-boot9strap-(safecerthax)";
}
// new browserhax for latest version
/*
else if (isN3DS) {
window.location.href = "homebrew-launcher-(super-skaterhax)";
}
*/
// seedminer does still work for the latest version on E/U/J/K/T/C, but can only be chained on E/U/J/K/T
else {
window.location.href = "seedminer";