# Created by Deltaion Lee (MCMi460) & Preloading on Github # This is my private file, but with all of the dangerous stuff removed # You can use it as a template for yours SERIAL_NUMBER:str = "" # Serial number on console minus the last digit MAC_ADDRESS:str = "" # Console MAC address (see WiFi settings), all lowercase with no colons DEVICE_CERT:bytes = bytes.fromhex("") # Unique console certificate. Get from sniffing traffic or from the LocalSeedFriendCode file DEVICE_NAME:str = "" # Doesn't matter # 3DS does NOT send NEX credentials over NASC # They are generated once when the account is created and stored on the device # Homebrew like https://github.com/Stary2001/nex-dissector/tree/master/get_3ds_pid_password # can be used to dump the PID and password # You must redump these keys for each network. NINTENDO_PID:int = 0 NINTENDO_NEX_PASSWORD:str = "" PRETENDO_PID:int = 0 PRETENDO_NEX_PASSWORD:str = "" PID_HMAC:str = "" # Sniff console traffic or dump from friends title save (bytes 66-84) somewhere im the file REGION:int = 1 # USA LANGUAGE:int = 1 # English ######################### # Now, Discord secrets! # # Keep in mind that you # # will need the scope: # # activities.write in # # order to replicate # # this step. # CLIENT_ID:int = 0 # Taken from OAuth2 page CLIENT_SECRET:str = "" # Taken from OAuth2 page #### SERVER-SPECIFIC #### # Finally, we're grabbing # # server-specific things. # # This mostly only # # pertains to the domain. # # See format below \/ # HOST:str = "" # http(s)://subdomain.domain.extension # No ending slash! ### DATABASE-SPECIFIC ### IS_SQLITE:bool = True # SQLite should generally only be used for testing. It is recommended to use MySQL software like MariaDB # MySQL specifc DB_HOST:str = "localhost" DB_NAME:str = "3dsrpc" DB_USERNAME:str = "username" DB_PASSWORD:str = "password"