preliminary ACNL support
All checks were successful
Build and Test / friends (push) Successful in 3m10s
Build and Test / wii-u-chat (push) Successful in 4m31s
Build and Test / puyopuyo (push) Successful in 5m7s
Build and Test / mario-tennis (push) Successful in 5m7s
Build and Test / fast-racing-neo (push) Successful in 5m9s
Build and Test / minecraft-wiiu (push) Successful in 5m10s
Build and Test / splatoon (push) Successful in 5m10s
Build and Test / splatoon-testfire (push) Successful in 5m11s
Build and Test / wii-sports-club (push) Successful in 5m15s
Build and Test / sonic-transformed (push) Successful in 5m32s
Build and Test / super-mario-maker (push) Successful in 5m49s

This commit is contained in:
red binder 2026-06-23 14:39:42 +02:00
commit dfc12ca3d8
3 changed files with 23 additions and 0 deletions

View file

@ -9,6 +9,18 @@ sonic-transformed:
RNEX_VIRTUAL_PORT_SECURE: "1:10"
RNEX_DEFAULT_PORT: 10000
RNEX_ACCESS_KEY: "b26a3421"
ac-new-leaf:
include-in-checkall: true
features:
- prudpv1
- datastore
- v3-10-22
settings:
AUTH_REPORT_VERSION: "branch:origin/release/ngs/3.10.x.200x build:3_10_22_2006_0"
RNEX_VIRTUAL_PORT_INSECURE: "1:10"
RNEX_VIRTUAL_PORT_SECURE: "1:10"
RNEX_DEFAULT_PORT: 10000
RNEX_ACCESS_KEY: "d6f08b40"
wii-sports-club:
include-in-checkall: true
features:

View file

@ -813,6 +813,15 @@ impl Utility for User {
async fn acquire_nex_unique_id(&self) -> Result<u64, ErrorCode> {
return Ok(rand::random());
}
async fn get_integer_settings(&self, index: u32) -> Result<Vec<(u16, i32)>, ErrorCode> {
Ok(vec![
(0, 1),
(1, 2),
(2, 0),
(3, 4)
])
}
}
impl Ranking for User {

View file

@ -6,4 +6,6 @@ use rnex_core::rmc::response::ErrorCode;
pub trait Utility {
#[method_id(1)]
async fn acquire_nex_unique_id(&self) -> Result<u64, ErrorCode>;
#[method_id(7)]
async fn get_integer_settings(&self, index: u32) -> Result<Vec<(u16, i32)>, ErrorCode>;
}