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

Status
Not open for further replies.

WhoAmI?

PASTA's dirty animal
Member
Joined
Mar 15, 2015
Messages
1,276
Trophies
0
Location
Poké Ball
Website
lavanoid.github.io
XP
1,279
Country
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

  • makebgr-all.zip
    756 bytes · Views: 108
Last edited by WhoAmI?, , Reason: Attached batch file.

Apache Thunder

I have cameras in your head!
Member
Joined
Oct 7, 2007
Messages
4,433
Trophies
3
Age
36
Location
Levelland, Texas
Website
www.mariopc.co.nr
XP
6,806
Country
United States
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,

Spzjulien

Well-Known Member
Member
Joined
Sep 8, 2012
Messages
329
Trophies
1
XP
625
Country
France
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,

nastys

ナースティス
Member
Joined
Aug 5, 2014
Messages
1,730
Trophies
0
Age
26
Location
Earth
XP
1,794
Country
Italy
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?

chronoss

Well-Known Member
Member
Joined
May 26, 2015
Messages
3,007
Trophies
1
XP
4,900
Country
Congo, Republic of the
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
 

laharl22

Well-Known Member
Member
Joined
Dec 19, 2014
Messages
1,767
Trophies
0
Age
38
XP
615
Country
France
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,

3xkrazy

Well-Known Member
Member
Joined
Jun 2, 2013
Messages
299
Trophies
0
XP
279
Country
United States
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

herocis23

Active Member
Newcomer
Joined
Jan 30, 2015
Messages
29
Trophies
0
Age
34
XP
98
Country
Netherlands
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?
 

laharl22

Well-Known Member
Member
Joined
Dec 19, 2014
Messages
1,767
Trophies
0
Age
38
XP
615
Country
France
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.
 

Spzjulien

Well-Known Member
Member
Joined
Sep 8, 2012
Messages
329
Trophies
1
XP
625
Country
France
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
 

mustafag32g

Well-Known Member
Member
Joined
Jul 30, 2014
Messages
806
Trophies
0
Age
34
XP
2,331
Country
Argentina
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

General chit-chat
Help Users
  • Psionic Roshambo @ Psionic Roshambo:
    Ironic this was posted today lol
  • BigOnYa @ BigOnYa:
    I think the tv series has boasted play of, I did see they said playing of it Is up, way more than norm
    +1
  • BigOnYa @ BigOnYa:
    I've been playing the next gen version on Series X all day, I love it. :wub:
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Downloading some random stuff, damn almost 400GBs in like 4 hours lol
  • Psionic Roshambo @ Psionic Roshambo:
    Gonna be over 1TB this month.... damn lol
  • Xdqwerty @ Xdqwerty:
    good night
    +1
  • BigOnYa @ BigOnYa:
    At least you have some fast speeds. What a drag that used to be, I remb downloading 1 pic back in the day, and seeing line by line show
    +1
  • BigOnYa @ BigOnYa:
    Nighty night.
  • BigOnYa @ BigOnYa:
    Or worse, you downloading something, and someone calls your phone and interupts the download, good ole AOL. Of course that's before most you guys even were born yet.
  • Psionic Roshambo @ Psionic Roshambo:
    Lol I think my first modem was 48K but it had some sort of firmware or software update that let me get 56K
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I had EarthLink lol
  • Psionic Roshambo @ Psionic Roshambo:
    A bunch of NetZero accounts that I used for things... Lol
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    So glad I'm not in prison lol
  • BigOnYa @ BigOnYa:
    Yea marriage is a bitch sometimes...
  • Psionic Roshambo @ Psionic Roshambo:
    I legit think they passed the cyber terrorism laws from some of my hmm pranks lol
  • Psionic Roshambo @ Psionic Roshambo:
    I knocked the east coast backbone of EarthLink offline for like 6 hours one time, was on the news and everything well I mean I wasn't on the news.... Just they where having "technical difficulties" lol
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Was just one single custom packet. I miss when Internet security was an afterthought lol almost all modems and network hardware operated in promiscuous mode.
  • Psionic Roshambo @ Psionic Roshambo:
    Now these days they do sanity checks.... The source IP can't also be the destination IP lol
  • Psionic Roshambo @ Psionic Roshambo:
    They did end up using some of my stuff in the first Gulf war though lol
  • BakerMan @ BakerMan:
    GUYS I JUST COMMENTED A YOUR MOM JOKE ON A GACHA YT COMMUNITY POST (the algorithm has cursed me in terms of community posts, bc I fuck around on that sort of community post, just commenting and being a jackass)
    +1
  • BakerMan @ BakerMan:
    IT FELT SO GOOD
    +1
  • BakerMan @ BakerMan:
    the OP made a couple vocaloid characters, and the post had the caption "Guess who I did 💙💛❤️

    hint: they're from vocaloid"
    +1
  • BakerMan @ BakerMan:
    to which I responded:
    "Guess who I did 💙💛❤️

    hint: it's uremum"
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I studied IPV6 if they hadn't passed the cyber terrorism laws omg.... In theory I have some awesome pranks but I'm afraid to test them lol
  • BigOnYa @ BigOnYa:
    Thank goodness for VPN nowadays
    BigOnYa @ BigOnYa: Thank goodness for VPN nowadays