From 45cecedc0a1242e6c4084536ba88f07a1ae41840 Mon Sep 17 00:00:00 2001 From: Aep <86505664+Aeplet@users.noreply.github.com> Date: Fri, 10 Oct 2025 21:29:35 -0400 Subject: [PATCH 1/2] ntrboot CHN 11.16 no extra data for chn --- docs/public/assets/js/selecting.js | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/docs/public/assets/js/selecting.js b/docs/public/assets/js/selecting.js index 349b418b65aef..991cc8f0854d2 100644 --- a/docs/public/assets/js/selecting.js +++ b/docs/public/assets/js/selecting.js @@ -111,15 +111,24 @@ function can_superskaterhax(major, minor, native, region, model) { // MSET9 // 11.4-11.17 function can_mset9(major, minor, native, region, model) { - + // CHN has no extra data + if (region == "C") { + return false; + } // Exploit supports 11.4 or later if(major == 11 && minor >= 4) { - window.location.href = "installing-boot9strap-(mset9)" + window.location.href = "installing-boot9strap-(mset9)"; return true; } return false; } +function can_ntrboot(major, minor, native, region, model) { + // The only reason ntrboot (ever) wouldn't work is when Start, Select, or X cannot be pressed. + window.location.href = "installing-boot9strap-(ntrboot)"; + return true; +} + /* Reality: @@ -148,6 +157,10 @@ function can_mset9(major, minor, native, region, model) { - N3DS only - MSET9 - 11.4 - 11.17 + - All regions (except CHN) + - All models + - ntrboot + - 1.0 - 11.17 - All regions - All models */ @@ -189,7 +202,8 @@ function redirect() { can_ssloth, can_safecerthax, can_superskaterhax, - can_mset9 + can_mset9, + can_ntrboot ].some(func => func(major, minor, nver, region, model)); if (redirected) return true; From 98f4c887692122b7273eb4f4fe3fdd3736fac4a3 Mon Sep 17 00:00:00 2001 From: Aep <86505664+Aeplet@users.noreply.github.com> Date: Fri, 10 Oct 2025 21:42:16 -0400 Subject: [PATCH 2/2] Update selecting.js --- docs/public/assets/js/selecting.js | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/public/assets/js/selecting.js b/docs/public/assets/js/selecting.js index 991cc8f0854d2..1097855e61490 100644 --- a/docs/public/assets/js/selecting.js +++ b/docs/public/assets/js/selecting.js @@ -111,7 +111,6 @@ function can_superskaterhax(major, minor, native, region, model) { // MSET9 // 11.4-11.17 function can_mset9(major, minor, native, region, model) { - // CHN has no extra data if (region == "C") { return false; }