1
0
mirror of https://github.com/hacks-guide/Guide_3DS.git synced 2025-08-26 01:44:20 +02:00

Deploying to gh-pages from @ hacks-guide/Guide_3DS@773f9e0f85 🚀

This commit is contained in:
lifehackerhansol
2023-06-05 20:02:15 +00:00
parent 04b7a03d52
commit 513e9334ef
631 changed files with 21672 additions and 13472 deletions

File diff suppressed because one or more lines are too long

View File

@@ -179,6 +179,21 @@ function can_seedminer(major, minor, native, region, model) {
return false;
}
function is_o3ds_1117(major, minor, native, region, model) {
let do_redirect = false;
if (model == 0) {
if (major == 11 && minor == 17) {
// sanity check this: K/T/C does not have 11.17 (yet?)
if (["U", "E", "J"].includes(region)) do_redirect = true;
}
}
if (do_redirect) {
window.location.href = "alternate-exploits"
return true;
}
return false;
}
/*
Redirects page based on input from user.
Input:
@@ -202,7 +217,7 @@ function can_seedminer(major, minor, native, region, model) {
- N3DS & 11.17 (EUR / JPN / USA):
- super-skaterhax
- O3DS & 11.17:
- Unhackable
- Use alternate exploits; can't hack without any extra stuff
*/
function redirect() {
let major = document.getElementById("major");
@@ -229,12 +244,13 @@ function redirect() {
else if(isN3DS) model = DEVICE_N3DS;
let redirected = [
can_soundhax,
can_ssloth,
can_safecerthax,
can_miimine,
can_seedminer,
can_superskaterhax,
can_soundhax,
can_ssloth,
can_safecerthax,
can_miimine,
can_seedminer,
can_superskaterhax,
is_o3ds_1117
].some(func => func(major.value, minor.value, nver.value, region.value, model));
if (redirected) return true;