Hacking RXTools issues

homework

Well-Known Member
OP
Member
Joined
Mar 18, 2016
Messages
217
Trophies
0
Age
48
XP
261
Country
Canada
Yeah, that's true. Gateway cannot play GBA files because it doesn't apply the proper kind of reboot patches.
Do you know if it's possible to use Gateway OR rxTools?
Or does the launcher.dat have to be there for each of them? Therefore there can only be one Launcher.dat?
 

astronautlevel

Well-Known Member
Member
Joined
Jan 26, 2016
Messages
4,127
Trophies
0
Location
Maryland
Website
ataber.pw
XP
4,975
Country
United States
Do you know if it's possible to use Gateway OR rxTools?
Or does the launcher.dat have to be there for each of them? Therefore there can only be one Launcher.dat?
Launching rxTools via ctrbootmanager does not require Launcher.dat

Create two different entries in your boot configuration, and put whichever one you want to boot by default on the top.

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

@homework Oh, I think I know what's wrong

Use this as the gateway entry:
Code:
{
    title ="GW";
    path ="/3ds/GW/GW.3dsx";
},
 

homework

Well-Known Member
OP
Member
Joined
Mar 18, 2016
Messages
217
Trophies
0
Age
48
XP
261
Country
Canada
Launching rxTools via ctrbootmanager does not require Launcher.dat

Create two different entries in your boot configuration, and put whichever one you want to boot by default on the top.

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

@homework Oh, I think I know what's wrong

Use this as the gateway entry:
Code:
{
    title ="GW";
    path ="/3ds/GW/GW.3dsx";
},
By the way, how would I install bigbluemenu or DevMenu on CFW (non gateway)?

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

Also when I boot EmuNAND from RXTools now it's just a black screen. Any ideas?
 

astronautlevel

Well-Known Member
Member
Joined
Jan 26, 2016
Messages
4,127
Trophies
0
Location
Maryland
Website
ataber.pw
XP
4,975
Country
United States
By the way, how would I install bigbluemenu or DevMenu on CFW (non gateway)?
If you already have FBI installed, you shouldn't need devmenu; they serve the same purpose.

If you still want it, you can download the devmenu CIA and install it with FBI.

If you don't have FBI, you can install devmenu or BBM using Gateway to your EmuNAND and it should show up in rxtools.

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

Also when I boot EmuNAND from RXTools now it's just a black screen. Any ideas?
Hm, that's strange. Can I see the boot config again? Sounds like your offsets could be wrong.
 

homework

Well-Known Member
OP
Member
Joined
Mar 18, 2016
Messages
217
Trophies
0
Age
48
XP
261
Country
Canada
If you already have FBI installed, you shouldn't need devmenu; they serve the same purpose.

If you still want it, you can download the devmenu CIA and install it with FBI.

If you don't have FBI, you can install devmenu or BBM using Gateway to your EmuNAND and it should show up in rxtools.

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


Hm, that's strange. Can I see the boot config again? Sounds like your offsets could be wrong.
I figured that's how it would work.

Code:
// Boot menu configuration
boot_config =
{
    // Default timeout in seconds
    // If timeout = -1, disable autoboot
    timeout = 3;

    // Some devices (n3ds?) seems to have
    // some timing problems when using timeout=0 (autoboot).
    // You may increase this value to improve boot success rate.
    // Default delay (8) should be good for o3ds, 2 seems good for n3ds
    autobootfix = 8;

    // if timeout = 0 (autoboot),
    // hold this key to enter the menu
    // keycode list : https://goo.gl/4XLDIL
    recovery = 2; // SELECT

    // Default boot entry
    default = 0;

    // Boot menu entries (11 max)
    entries =
    (
        {
            title  = "rxTools";
            path = "/rxTools/sys/code.bin";
            offset = "0x12000";
            key = 0; // key to override default boot entry (A)
        },
        {
            title  = "HomeBrewMenu";
            path = "/boot_hb.3dsx";
        },
        {
            title  = "HomeMenu";
            path = "homemenu"; // magic path for homemenu, do not change
        },
        {
            title  = "Reboot";
            path = "reboot"; // magic path for reboot, do not change
        },
        {
            title  = "Shutdown";
            path = "shutdown"; // magic path for poweroff, do not change
        }
    );

    // RGB colors
    theme =
    {
        bgTop1 = "4a0031";
        bgTop2 = "6f0149";
        bgBottom = "6f0149";
        highlight = "dcdcdc";
        borders = "ffffff";
        font1 = "ffffff";
        font2 = "000000"; // selection
        bgImgTop = "/yourimage.bin"; // 400x240 pixels
        bgImgBot = "/yourimage2.bin"; // 320x240 pixels
    };
};
 

astronautlevel

Well-Known Member
Member
Joined
Jan 26, 2016
Messages
4,127
Trophies
0
Location
Maryland
Website
ataber.pw
XP
4,975
Country
United States
I figured that's how it would work.

Code:
// Boot menu configuration
boot_config =
{
    // Default timeout in seconds
    // If timeout = -1, disable autoboot
    timeout = 3;

    // Some devices (n3ds?) seems to have
    // some timing problems when using timeout=0 (autoboot).
    // You may increase this value to improve boot success rate.
    // Default delay (8) should be good for o3ds, 2 seems good for n3ds
    autobootfix = 8;

    // if timeout = 0 (autoboot),
    // hold this key to enter the menu
    // keycode list : https://goo.gl/4XLDIL
    recovery = 2; // SELECT

    // Default boot entry
    default = 0;

    // Boot menu entries (11 max)
    entries =
    (
        {
            title  = "rxTools";
            path = "/rxTools/sys/code.bin";
            offset = "0x12000";
            key = 0; // key to override default boot entry (A)
        },
        {
            title  = "HomeBrewMenu";
            path = "/boot_hb.3dsx";
        },
        {
            title  = "HomeMenu";
            path = "homemenu"; // magic path for homemenu, do not change
        },
        {
            title  = "Reboot";
            path = "reboot"; // magic path for reboot, do not change
        },
        {
            title  = "Shutdown";
            path = "shutdown"; // magic path for poweroff, do not change
        }
    );

    // RGB colors
    theme =
    {
        bgTop1 = "4a0031";
        bgTop2 = "6f0149";
        bgBottom = "6f0149";
        highlight = "dcdcdc";
        borders = "ffffff";
        font1 = "ffffff";
        font2 = "000000"; // selection
        bgImgTop = "/yourimage.bin"; // 400x240 pixels
        bgImgBot = "/yourimage2.bin"; // 320x240 pixels
    };
};
I don't see anything wrong. What happens if you hold L when you select rxTools?
 
General chit-chat
Help Users
  • JuanMena @ JuanMena:
    Kissing random dudes choking in celery? Really? Need to study for that?
  • K3N1 @ K3N1:
    Yes it requires a degree
  • K3N1 @ K3N1:
    I could also yank out the rest of my teeth but theirs professionals for that
  • x65943 @ x65943:
    If your throat closes, putting oxygen in your mouth will not solve anything - as you will be introducing oxygen prior to the area of obstruction
  • JuanMena @ JuanMena:
    Just kiss me Kyle.
  • x65943 @ x65943:
    You either need to be intubated to bypass obstruction or create a stoma inferior to the the area of obstruction to survive
  • x65943 @ x65943:
    "Just kiss me Kyle." And I thought all the godreborn gay stuff was a smear campaign
  • JuanMena @ JuanMena:
    If I die, tell my momma I won't be carrying Baby Jesus this christmas :sad::cry:
  • K3N1 @ K3N1:
    Smear campaigns are in The political section now?
  • JuanMena @ JuanMena:
    Chary! Chary! Chary, Chary, Chary!
  • Sonic Angel Knight @ Sonic Angel Knight:
    Pork Provolone :P
  • Psionic Roshambo @ Psionic Roshambo:
    Sounds yummy
  • K3N1 @ K3N1:
    Sweet found my Wii u PSU right after I ordered a new one :tpi:
  • JuanMena @ JuanMena:
    It was waiting for you to order another one.
    Seems like, your PSU was waiting for a partner.
  • JuanMena @ JuanMena:
    Keep them both
    separated or you'll have more PSUs each year.
  • K3N1 @ K3N1:
    Well one you insert one PSU into the other one you get power
  • JuanMena @ JuanMena:
    It literally turns it on.
  • K3N1 @ K3N1:
    Yeah power supplies are filthy perverts
  • K3N1 @ K3N1:
    @Psionic Roshambo has a new friend
    +1
  • JuanMena @ JuanMena:
    It's Kyle, the guy that went to school to be a Certified man Kisser.
  • Psionic Roshambo @ Psionic Roshambo:
    Cartmans hand has taco flavored kisses
  • A @ abraarukuk:
    hi guys
  • Iron_Masuku @ Iron_Masuku:
    Hello
    Skelletonike @ Skelletonike: hmm