Hacking Nintendont Themes and Custom Mods

  • Thread starter Thread starter AbdallahTerro
  • Start date Start date
  • Views Views 442,898
  • Replies Replies 2,649
  • Likes Likes 30
both are up to date, it's a mirror :)


Maybe I am finally losing my mind then...

But honestly I did download this fresh today, deleted my boot.dol, bins and imgs folder and added the ones from the zip. it really says 1073. weird, maybe but its true.

i'll try again when I get home and see what happens.

they def aint the same, just checked the file sizes.

i finally solved the issue! i was using a priiloader installed file to boot into wiiflow, and that apparently was 1073 -_-

once i stopped the autoboot, it works just fine. now i just need to find a proper priiloader forwarder.
 
  • Like
Reactions: AbdallahTerro
I really don't what whats the problem, tried every setting and nothing.
Got the wiiflow mastermod and it loaded the game directly.
And now, everytime I use nintendont, it autoboots the last game. Sigh... I know if I press b I can cancel autoboot, but how to disable it permanently?
 
either go to the homebrew channel and load nintendont. cancel the auto boot option load a game and just quit it. the setting should be saved turned off. if that fails i would just delete the nincf file i guess which is the settings for nintendont
 
Updated Mr. Mysterio's Mod to r337.
Here the links for the dol and the source.

One little question:
Is somebody else experiencing the issue reported in this post?


Edit: everything works fine, it's just the default loading screen :)
 
  • Like
Reactions: Gomza
Got the wiiflow mastermod and it loaded the game directly.
And now, everytime I use nintendont, it autoboots the last game. Sigh... I know if I press b I can cancel autoboot, but how to disable it permanently?
use wiiflow 1076 mod and delete nincfg.bin in sd/usb root
autoboot is a must when using a usb loader, it is ridiculous to even have the option to disable it
 
use wiiflow 1076 mod and delete nincfg.bin in sd/usb root
autoboot is a must when using a usb loader, it is ridiculous to even have the option to disable it


Any chance you can make it not say "press B to cancel autoboot" at the loading screen? i havent looked into it so if its an easy edit, let me know how and i'll gladly do it.

My son sees it on the screen and he thinks he is supposed to press B rather than its an option :)
 
Any chance you can make it not say "press B to cancel autoboot" at the loading screen? i havent looked into it so if its an easy edit, let me know how and i'll gladly do it.

My son sees it on the screen and he thinks he is supposed to press B rather than its an option :)
if you have my source patch just comment these lines in loader\main.c
Code:
        // Prevent autobooting if B is pressed
        int i = 0;
        while((ncfg->Config & NIN_CFG_AUTO_BOOT) && (i < 500000)) // wait for wiimote re-sync
        {   
            if (i == 0) {
                PrintInfo();
        if (which_bg == BG_NONE)
        {
          PrintFormat(DEFAULT_SIZE, BLACK, MENU_POS_X + 320 - 90, MENU_POS_Y + 20*10, "B: Cancel Autoboot");
          GRRLIB_Render();
          ClearScreen();
        }
        else if (which_bg == BG_LEGACY)
        {
          PrintFormat(DEFAULT_SIZE, WHITE, MENU_POS_X + 320 - 90, MENU_POS_Y + 20*10, "B: Cancel Autoboot");
          GRRLIB_Render();
          ClearScreen();
        }
        else if (which_bg == BG_BLACK)
        {
          GRRLIB_Render();
          ClearScreen();
        }
        else
        {
        PrintFormat(DEFAULT_SIZE, BLACK, 230, MENU_POS_Y + 406, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, BLACK, 230, MENU_POS_Y + 410, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, BLACK, 228, MENU_POS_Y + 408, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, BLACK, 232, MENU_POS_Y + 408, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, BLACK, 228, MENU_POS_Y + 406, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, BLACK, 232, MENU_POS_Y + 410, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, BLACK, 228, MENU_POS_Y + 410, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, BLACK, 232, MENU_POS_Y + 406, "B: Cancel Autoboot");
        PrintFormat(DEFAULT_SIZE, WHITE, 230, MENU_POS_Y + 408, "B: Cancel Autoboot");
        GRRLIB_Render();
        ClearScreen();
        }
        }
        FPAD_Update();
            if (FPAD_Cancel(0)) {
                ncfg->Config &= ~NIN_CFG_AUTO_BOOT;
                FadeOut();
                BackTheme();
                break;
            }
            i++;
        }
add /* at the beginning and */ at the end
or just delete the printformat lines to just hide it while still being able to press it
 
  • Like
Reactions: jammybudga777
if anybody does make a dol file that doesnt have the "B cancel" plz share :) or abz is there any chance in the future that this could just be a nice extra setting plz
 
the thing is i like the bios as it is (original). and also when i tried this mod it came up with the original loading screen where there is txt's of what is being loaded. i just want a mod with the bios as it is/no B to cancel/ and no kernel/app loading info when i select a game
 
On my side Mr.Mysterio mod give bios animation (not real bios) and NO kernel/app loading info. Small question. Bios Animation = nice and nostalgic. Real Bios = ??? Purpose?))
 
Well, At Last, the last word on cheats on nintendont:


Metroid Prime v1.00 works with the cheats, so if you have v1.02, don't waste your time.

Finally got infinite energy!

Thank you all who tried to help me!!!!!!!!!!
 
To give you a bit more retro feeling and for preventing people of thinking that Mr. Mysterio's Mod is buggy, I decided to keep the display black for all the booting up time until there is a BIOS loaded (iplpal.bin, etc.) or the animation of the BIOS shows up.
Note: This build is EXPERIMENTAL, that I have not tested, because I don't have access to my Wii U, but it should work fine. (Screen can stay black for a "very" long time, if using the "real" GameCube BIOS)
If there are any issues please tell me
 
Again a "little" update to Mr. Mysterio's Mod:
  • The code from above is no longer experimental
  • Added support for setting custom text colors:
    You may specify a custom text color by placing the color's hexadecimal RGBA value in "apps\Nintendont\textcolor.ini". (For example, "0000FFFF" is BLUE)
    If there is no textcolor.ini it will check for the average of color components of the first pixel of the background.
    If the average of the color components is greater than 128 then it will use black text, otherwise it will use white text.
Special thanks to Mr. Mysterio for the main code! :D

Here the links for the dol and the source.
 
Hey guys, I'm back.
Is there a possibility of making nintendont don't turn off the system if there is no cheat in the folder? Cause i tried another game today, no cheats, and I got this error message saying "missing cheat file". Of course, it happened because "cheat" was on. With cheat off, game booted fine.
If I set cheat on for one game, it gets on for every other, so I have to turn it on and off everytime.
Would be nice if there's no cheat in the folder, nintendont simply ignore it, or have individual setup for each game.
Just saying.
I'm really satisfied with nintendont, it's 98% perfect to me.
 

Site & Scene News

Popular threads in this forum