Homebrew [Release] GYTB: Custom badges made really, really, simple.

Deleted member 433093

Active Member
Newcomer
Joined
Sep 22, 2017
Messages
39
Trophies
0
Age
34
XP
131
Country
United Kingdom
MrCheese is it possible for it to add to existing badges instead of replacing ALL of them? Because I would like to keep my legit badges and custom ones too.

I know you can't create groups of custom badges in the editor (like the official ones) but I just want to know why, out of interest.
 
Joined
Jan 1, 2018
Messages
7,292
Trophies
2
XP
5,946
Country
United States
Joined
Jan 1, 2018
Messages
7,292
Trophies
2
XP
5,946
Country
United States
Oh, thanks! I've never seen that before. (Maybe because I usually search for .cia files for homebrew but this is a PC program).
You need both Advance badge editor v1.3.1 (Windows program) and either the accompanying *.3dsx or *.cia of SimpleBadgeInjector app. There are v1.2 of those found at the later posts of the thread.
 

rafalou38

New Member
Newbie
Joined
May 4, 2020
Messages
1
Trophies
0
Age
24
XP
43
Country
France
I am getting this error:

exdata exists.
nnid found: 6A85CEF3
checking for pre-existing badges arcade badges to dump...
what is wrong with the elf. d900458b

press any button to exit


and I did not find any answers
I also have a bug where I can't access my base badges the Nintendo shows them to me and say I don't have any bage
 
  • Like
Reactions: zoogie

Patman4evah

New Member
Newbie
Joined
Aug 25, 2020
Messages
1
Trophies
0
Age
38
XP
42
Country
Sweden
Im getting a arm11 error when GYTB has injected the custom badges. but when i boot up the 3ds again it only shows my badge collection i got from badge arcade. what could be the problem?
 

Vulpes-Vulpeos

Well-Known Member
Member
Joined
Feb 1, 2018
Messages
188
Trophies
1
XP
2,500
Country
Ukraine
Im getting a arm11 error when GYTB has injected the custom badges. but when i boot up the 3ds again it only shows my badge collection i got from badge arcade. what could be the problem?
Check badges you try to inject. If you downloaded them from themeplaza, you need to delete preview image from downloaded badges before injecting them.
 
  • Like
Reactions: champsblinder02

Rocky15

Member
Newcomer
Joined
Jun 14, 2020
Messages
11
Trophies
0
Age
31
XP
50
Country
United States
Hello I have an issue where the badges suddenly switch around and change places when I turn on the console and then just stay like that forever? Do I have to name them something specifically? I only use badges from the badges arcade pack and don’t have more than 100
 

placebo_yue

Well-Known Member
Member
Joined
Aug 7, 2019
Messages
739
Trophies
0
Age
33
XP
1,264
Country
Argentina
Hello I have an issue where the badges suddenly switch around and change places when I turn on the console and then just stay like that forever? Do I have to name them something specifically? I only use badges from the badges arcade pack and don’t have more than 100
I'm not sure if it's the same issue but when i add a new badge, ALL MY APPLIED BADGES get mixed up. Like... the pokemon folder badge suddenly has the "settings" gear badge, and the "mario" badge is now on my "kirby" folder, and so on...
If i delete everything and re-apply it's fixed i guess.. but that's quite annoying.
Just mentioning in case it helps debugging, because it's totally not a dealbreaker for the ammount of use i give it
 

AriaNights

Member
Newcomer
Joined
Mar 22, 2021
Messages
17
Trophies
0
Age
22
XP
62
Country
Canada
Hey! I’m having a bit of an issue with GYTB. Despite the badges folder being there, GYTB appears to be unable to read it, instead giving a 0000004f error code. When I deleted all official badges and re-attempted it, it told me the badges file wasn’t there, despite it being both on the root of my SD card alongside being beside the .3dsx file itself. Have I done something wrong? Thank you!
 

DocKlokMan

Plugin Dev
Member
Joined
Apr 20, 2007
Messages
3,009
Trophies
2
Age
36
XP
4,571
Country
United States
Hello I have an issue where the badges suddenly switch around and change places when I turn on the console and then just stay like that forever? Do I have to name them something specifically? I only use badges from the badges arcade pack and don’t have more than 100

I'm not sure if it's the same issue but when i add a new badge, ALL MY APPLIED BADGES get mixed up. Like... the pokemon folder badge suddenly has the "settings" gear badge, and the "mario" badge is now on my "kirby" folder, and so on...
If i delete everything and re-apply it's fixed i guess.. but that's quite annoying.
Just mentioning in case it helps debugging, because it's totally not a dealbreaker for the ammount of use i give it
It's likely due to this line here: https://github.com/MrCheeze/GYTB/blob/2ec3c1e9a595fdf1894e00dcb269a4b2b22ab42b/source/main.c#L376

The folders reference which badge they are meant to show by the badge's ID number. When running the app to import badges, it assigns the badge ID as it processes the files, alphabetically and it re-processes all the badges each time it's run. This means that if you started with three badges named ALPHA, BETA and GAMMA they'd have IDs 1, 2, & 3. Now you assign those to three folders. Later you go in and add a new badge, DELTA. When you import it you now have ALPHA, BETA, DELTA and GAMMA which are assigned IDs 1, 2, 3 & 4. When you reboot and the folders go to load their icons, the folder that previously had badge GAMMA (ID 3) will now be loading badge DELTA in stead since DELTA is now ID 3 and GAMMA is ID 4.

The only way I can see to avoid this is if we could define our own IDs in the file name to ensure our badges are always processed in the same order with new ones always being processed last.
 
  • Like
Reactions: placebo_yue

placebo_yue

Well-Known Member
Member
Joined
Aug 7, 2019
Messages
739
Trophies
0
Age
33
XP
1,264
Country
Argentina
It's likely due to this line here: https://github.com/MrCheeze/GYTB/blob/2ec3c1e9a595fdf1894e00dcb269a4b2b22ab42b/source/main.c#L376

The folders reference which badge they are meant to show by the badge's ID number. When running the app to import badges, it assigns the badge ID as it processes the files, alphabetically and it re-processes all the badges each time it's run. This means that if you started with three badges named ALPHA, BETA and GAMMA they'd have IDs 1, 2, & 3. Now you assign those to three folders. Later you go in and add a new badge, DELTA. When you import it you now have ALPHA, BETA, DELTA and GAMMA which are assigned IDs 1, 2, 3 & 4. When you reboot and the folders go to load their icons, the folder that previously had badge GAMMA (ID 3) will now be loading badge DELTA in stead since DELTA is now ID 3 and GAMMA is ID 4.

The only way I can see to avoid this is if we could define our own IDs in the file name to ensure our badges are always processed in the same order with new ones always being processed last.

TLDR if i name my badges with numbers, adding one for each new badge i come up with, i won't have issues? good to know, thanks

edit: nice DW1 reference on ur user btw
 

GnarkillAU

Member
Newcomer
Joined
Aug 21, 2019
Messages
16
Trophies
0
Age
31
XP
122
Country
Australia
Can anyone direct me to an old version? I'm just looking to clear out my official badges but new version no longer does this. Alternatively if anybody knows how to just get rid of badges that'd be great also. Cheers
 

DocKlokMan

Plugin Dev
Member
Joined
Apr 20, 2007
Messages
3,009
Trophies
2
Age
36
XP
4,571
Country
United States
Can anyone direct me to an old version? I'm just looking to clear out my official badges but new version no longer does this. Alternatively if anybody knows how to just get rid of badges that'd be great also. Cheers
Hold L+R+X+Y while starting the app and it'll ask if you want to delete your Badge EXT Data. Say yes and it'll delete all badges.
 
  • Like
Reactions: champsblinder02

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Veho @ Veho: Firefox users be like "look at what they have to do to mimic a fraction of our power."