• Hey, guest user. Hope you're enjoying GameParadise! Have you considered registering for an account? Come join us and add your take to the daily discourse.

Hacking Wood R4 (.NDS files to load Wood R4)(CK3)

 
 

admin

Chad
Staff member
85%
Joined
Jan 25, 2024
Messages
3,518
Points
38
Age
38
Location
USA
Website
gameparadise.org
Credits
63,216
1709844564391.png

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.

:download: Wood R4 (.NDS) v1.62
:download: Wood R4iDSN (.NDS) v1.62
:download: 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!

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
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!
r4denc:
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
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!
 
 

Recent Content

Newest Downloads

Tutorials

Back
Top