- Joined
- Jan 25, 2024
- Messages
- 11,618
- Points
- 38
- Age
- 39
- Location
- USA
- Website
- gameparadise.org
- Credits
- 192,605
My project is to decrypt and encrypt the files into an .NDS format, thus allowing the Wood Firmware to be launched as an .NDS file, which allows users to keep more than 1 R4 firmware on their flashcard. Downloads of Wood R4 (.NDS) can be found below.
Wood R4 (.NDS) v1.62
Wood R4iDSN (.NDS) v1.62
Wood R4iDS Gold (.NDS) v1.64
Get the latest Wood firmware: Wood Firmwares - Complete information guide & downloads
---
How to encrypt it yourself? (r4crypt & r4denc)
r4crypt:
First download: r4crypt
After you've downloaded r4crypt, unpack the .zip file.
Then open NotePad and copy the text below to it!
Save under 'All Files' as: GUI.BAT (keep it in the same folder as where r4crypt.exe is!)
Then copy your _DS_MENU.DAT file to the same folder where you placed GUI.BAT.
Now run GUI.BAT and select your option!
First download: r4crypt
After you've downloaded r4crypt, unpack the .zip file.
Then open NotePad and copy the text below to it!
Code:
Echo off
:menu
cls
echo ---------------------------------
echo Action Menu
echo ---------------------------------
echo [1] Decrypt Wood for R4
echo [2] Decrypt Wood for R4iDSN
echo [3] Decrypt Wood for R4iDS Gold
echo.
echo [4] Encrypt Firmware
echo [0] Close
echo ---------------------------------
echo.
Set /P INPUT= Action:
if "%input%" =="1" goto wood_r4
if "%input%" =="2" goto wood_r4idsn
if "%input%" =="3" goto wood_r4ids_gold
if "%input%" =="4" goto encrypt_firmware
if "%input%" =="0" goto close
goto menu
:wood_r4
r4crypt.exe -d _DS_MENU.DAT "Wood R4 v0.00.nds"
pause
goto menu
:wood_r4idsn
r4crypt.exe -d _DSMENU.DAT "Wood R4iDSN v0.00.nds"
pause
goto menu
:wood_r4ids_gold
r4crypt.exe -d _DS_MENU.DAT "Wood R4iDS Gold v0.00.nds"
pause
goto menu
:encrypt_firmware
r4crypt.exe -e OUTPUT.NDS _DS_MENU.DAT
pause
goto menu
:close
cls
echo.
echo Converting has been completed!
echo Thank you for using this program.
pause
exit
Then copy your _DS_MENU.DAT file to the same folder where you placed GUI.BAT.
Now run GUI.BAT and select your option!
r4denc:
First download: r4denc
After you've downloaded r4denc, unpack the .zip file.
Then open NotePad and copy the text below to it!
Save under 'All Files' as: GUI.BAT (keep it in the same folder as where r4dec.exe & r4enc.exe is!)
Then copy your _DS_MENU.DAT file to the same folder where you placed GUI.BAT.
Now run GUI.BAT and select your option!
First download: r4denc
After you've downloaded r4denc, unpack the .zip file.
Then open NotePad and copy the text below to it!
Code:
Echo off
:menu
cls
echo ---------------------------------
echo Action Menu
echo ---------------------------------
echo [1] Decrypt Wood for R4
echo [2] Decrypt Wood for R4iDSN
echo [3] Decrypt Wood for R4iDS Gold
echo.
echo [4] Encrypt Firmware
echo [0] Close
echo ---------------------------------
echo.
Set /P INPUT= Action:
if "%input%" =="1" goto wood_r4
if "%input%" =="2" goto wood_r4idsn
if "%input%" =="3" goto wood_r4ids_gold
if "%input%" =="4" goto encrypt_firmware
if "%input%" =="0" goto close
goto menu
:wood_r4
r4crypt.exe -d _DS_MENU.DAT "Wood R4 v0.00.nds"
pause
goto menu
:wood_r4idsn
r4crypt.exe -d _DSMENU.DAT "Wood R4iDSN v0.00.nds"
pause
goto menu
:wood_r4ids_gold
r4crypt.exe -d _DS_MENU.DAT "Wood R4iDS Gold v0.00.nds"
pause
goto menu
:encrypt_firmware
r4crypt.exe -e OUTPUT.NDS _DS_MENU.DAT
pause
goto menu
:close
cls
echo.
echo Converting has been completed!
echo Thank you for using this program.
pause
exit
Then copy your _DS_MENU.DAT file to the same folder where you placed GUI.BAT.
Now run GUI.BAT and select your option!