Hacking [Release] rxTools - Roxas75 3DS Toolkit [fw 2.0 - 9.2]

  • Thread starter Thread starter Roxas75
  • Start date Start date
  • Views Views 3,297,902
  • Replies Replies 19,240
  • Likes Likes 151
Status
Not open for further replies.
Default theme BINs are made during compile of source code (converted from the PNG files in theme folder. Don't attempt to use the PNG files. They have to be converted to BIN before you can use them with rxTools. The ones in my test build I linked to earlier are in the correct format. So just put them in rxTools/Theme/0 and it should work). Though I would hope they would provide the bat files for users to make new themes with once 3.0 is ready. :D

I had provided a .bat file, but they removed it and everything was integrated into a Makefile. I have a better version of the one that I gave them, originally. It checks if ImageMagick is installed and all that jazz. Not sure if the team/devs still want it.

I attached the file, for anyone who wants it. What you think?

Batch contents:

Code:
@echo off
REM This script was written by Lavanoid (WhoAmI?). Enjoy!
REM Yeah, I like my batch files to be fun and pretty :3

convert | findstr /C:"Miscellaneous" 1>nul
cls
if errorlevel 1 (
    color c
    @echo ERROR! ImageMagick, is NOT installed or isn't in the PATH variable!
    @echo http://www.imagemagick.org/script/binary-releases.php
    pause >nul
    goto :end
)
@echo Converting...
cd %~dp0
if not exist "UI\" mkdir UI
if not exist "UI\" (
    color c
    @echo Failed to create directory "UI".
    pause >nul
    goto :end
)
set i=0
Title = Converting images. Processed: %i%
for %%f in (*.png) do call :convertfile "%%f"
Title = Finished converting images. Processed: %i%
color a
@echo --------------------------------------------
@echo All files have been processed.
@echo.
@echo         Script written by Lavanoid (WhoAmI?)
@echo --------------------------------------------
@echo Press any key.
pause >nul
goto :end
:convertfile
set /a i=%i%+1
echo [%i%] File: %~nx1
echo [%i%] BIN/BGR: %~n1.bin
if exist "UI\%~n1.bin" (
    @echo [%i%] Removing "UI\%~n1.bin"...
    del /f "UI\%~n1.bin"
)
if exist "UI\%~n1.bin" (
    color c
    @echo [%i%] Failed to remove "UI\%~n1.bin"!
    pause >nul
    goto :end
)
convert -rotate 90 %~nx1 UI\%~n1.bgr
if exist "UI\%~n1.bgr" rename "UI\%~n1.bgr" "%~n1.bin"
if exist "UI\%~n1.bin" @echo [%i%] Successfully generated "UI\%~n1.bin"!
Title = Converting images. Processed: %i%
:end
 

Attachments

Last edited by WhoAmI?, , Reason: Attached batch file.
If you insist:

https://github.com/ApacheThunder/rxTools/releases/tag/3.0b

It's pre-release though and isn't the "official" build. Actual 3.0 will probably have n3DS support and they won't release 3.0 until they get that ironed out.

I nested the theme bin files in the 0 folder in theme folder. Just copy theme folder to rxTools directory on SD card.

This version does work on Ninjhax. They finally got the screen buffers fixed. (turns out there was an additional change to brahma code to get that working. Kinda wished I took a closer look at the brahma code yesterday. I was actually looking for references to bottom screen offset. Guess I didn't try hard enough. :P )
 
Last edited by Apache Thunder,
i cant compile the last rxTools source ...

cfwtool - generating : TWL_FIRM
make[2]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode/twl
_firm'
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode'
make[1]: Entering directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make[1]: *** No rule to make target `bigpayload'. Stop.
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make: *** [rxTools.dat] Error 2


edit : i guess ist normal... :)
 
Last edited by Spzjulien,
I had provided a .bat file, but they removed it and everything was integrated into a Makefile. I have a better version of the one that I gave them, originally. It checks if ImageMagick is installed and all that jazz. Not sure if the team/devs still want it.

I attached the file, for anyone who wants it. What you think?

Batch contents:

Code:
@echo off
REM This script was written by Lavanoid (WhoAmI?). Enjoy!
REM Yeah, I like my batch files to be fun and pretty :3

convert | findstr /C:"Miscellaneous" 1>nul
cls
if errorlevel 1 (
    color c
    @echo ERROR! ImageMagick, is NOT installed or isn't in the PATH variable!
    @echo http://www.imagemagick.org/script/binary-releases.php
    pause >nul
    goto :end
)
@echo Converting...
cd %~dp0
if not exist "UI\" mkdir UI
if not exist "UI\" (
    color c
    @echo Failed to create directory "UI".
    pause >nul
    goto :end
)
set i=0
Title = Converting images. Processed: %i%
for %%f in (*.png) do call :convertfile "%%f"
Title = Finished converting images. Processed: %i%
color a
@echo --------------------------------------------
@echo All files have been processed.
@echo.
@echo         Script written by Lavanoid (WhoAmI?)
@echo --------------------------------------------
@echo Press any key.
pause >nul
goto :end
:convertfile
set /a i=%i%+1
echo [%i%] File: %~nx1
echo [%i%] BIN/BGR: %~n1.bin
if exist "UI\%~n1.bin" (
    @echo [%i%] Removing "UI\%~n1.bin"...
    del /f "UI\%~n1.bin"
)
if exist "UI\%~n1.bin" (
    color c
    @echo [%i%] Failed to remove "UI\%~n1.bin"!
    pause >nul
    goto :end
)
convert -rotate 90 %~nx1 UI\%~n1.bgr
if exist "UI\%~n1.bgr" rename "UI\%~n1.bgr" "%~n1.bin"
if exist "UI\%~n1.bin" @echo [%i%] Successfully generated "UI\%~n1.bin"!
Title = Converting images. Processed: %i%
:end
There is going to be an all-in-one script meant for theme creators, with all the features of Pasta's scripts.
 
  • Like
Reactions: WhoAmI?
If you insist:

https://github.com/ApacheThunder/rxTools/releases/tag/3.0b

It's pre-release though and isn't the "official" build. Actual 3.0 will probably have n3DS support and they won't release 3.0 until they get that ironed out.

I nested the theme bin files in the 0 folder in theme folder. Just copy theme folder to rxTools directory on SD card.

This version does work on Ninjhax. They finally got the screen buffers fixed. (turns out there was an additional change to brahma code to get that working. Kinda wished I took a closer look at the brahma code yesterday. I was actually looking for references to bottom screen offset. Guess I didn't try hard enough. :P )
Thanks, i will test it
 
it say missing theme files edit i placed the 0 files on the theme folder dierctly but it boot automately on emunand how to acced on menu ?
 
Last edited by laharl22,
Will an "emunand formater" be integrated into rxTools at a later date? I think most users are still relying on gateway's launcher to accomplish that task.
 
  • Like
Reactions: kactusss
i cant compile the last rxTools source ...

cfwtool - generating : TWL_FIRM
make[2]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode/twl
_firm'
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode'
make[1]: Entering directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make[1]: *** No rule to make target `bigpayload'. Stop.
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make: *** [rxTools.dat] Error 2


edit : i guess ist normal... :)

I've got the same problem. How to fix this and what do you mean with "i guess ist normal..." in the edit?
 
When i press r it say theme files missing my folder of thème files are thème/0/ i have an old3ds with mset 4.
 
I've got the same problem. How to fix this and what do you mean with "i guess ist normal..." in the edit?

bec i guess is not ready yet to compile a pre pre -0 beta version .... :P

--------------------- MERGED ---------------------------

When i press r it say theme files missing my folder of thème files are thème/0/ i have an old3ds with mset 4.

essaye de mettre theme dans le dossier rxTools a la racine
 
bec i guess is not ready yet to compile a pre pre -0 beta version .... :P

--------------------- MERGED ---------------------------



essaye de mettre theme dans le dossier rxTools a la racine
Ah ok thanks. I understand.
 
Do anyone know why pokemon x and y freeze and return to home menu and then forcing 3ds to restart ? I installed many cia pokemon but all the same ?
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum