Hacking Theme Brlyt Editor by The Wii Theme Team Release

Deleted member 552867

New Member
Newbie
Joined
Feb 27, 2021
Messages
2
Trophies
0
XP
80
sorry for the bump, currently making my own theme. Is there a way to 'set change to default' or anything? when i change the text on the home menu dialog, it breaks that menu. i want to go back and remove that change. is this possible?
 

diddy81

Wii Theme Team
OP
Member
Joined
Mar 14, 2009
Messages
916
Trophies
1
XP
1,099
Country
sorry for the late reply
no there is not a set to default button however you can just replace the brlyt file with a fresh copy from the base pack
for any color change on the home menu its the th_HomeBtn_d.brlyt file you need
 

diddy81

Wii Theme Team
OP
Member
Joined
Mar 14, 2009
Messages
916
Trophies
1
XP
1,099
Country
When I make themes I can't modify anything from the wii message board it stays as default
thats very odd the only parts for colour change is the parts of the back button and i just tested them on dolphin emu and they work fine
any more info you can give me would be helpful
 

pietempgba

Well-Known Member
Member
Joined
Jun 9, 2016
Messages
1,049
Trophies
0
XP
1,515
Country
United States
thats very odd the only parts for colour change is the parts of the back button and i just tested them on dolphin emu and they work fine
any more info you can give me would be helpful

Oh I think I know why i'm using the modded thememii for the vWii
 

pietempgba

Well-Known Member
Member
Joined
Jun 9, 2016
Messages
1,049
Trophies
0
XP
1,515
Country
United States
ahhh yes this was designed for the wii not vwii some of it will still work in vwii as the base app is about 80% the same as the wii version
I downloaded thememii from this thread https://gbatemp.net/threads/wii-theme-team-creations.260327/ and the messages still don't work here's the files that don't work

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

Is there a alternative to the wii letter photoshop script?
 

Attachments

  • files.7z
    134.5 KB · Views: 106

diddy81

Wii Theme Team
OP
Member
Joined
Mar 14, 2009
Messages
916
Trophies
1
XP
1,099
Country
I downloaded thememii from this thread https://gbatemp.net/threads/wii-theme-team-creations.260327/ and the messages still don't work here's the files that don't work

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

Is there a alternative to the wii letter photoshop script?
There is no alternative to the wii letter photoshop script that i know of.
It is very odd that those images dont work as there are no differences between the ash files in the base app that hold those images
Did you edit the mym.ini at all?
have you tried starting with a fresh copy of the base pack and just changing those images or just changing 1 images at a time?
 

pietempgba

Well-Known Member
Member
Joined
Jun 9, 2016
Messages
1,049
Trophies
0
XP
1,515
Country
United States
There is no alternative to the wii letter photoshop script that i know of.
It is very odd that those images dont work as there are no differences between the ash files in the base app that hold those images
Did you edit the mym.ini at all?
have you tried starting with a fresh copy of the base pack and just changing those images or just changing 1 images at a time?
I'll try that
 

pietempgba

Well-Known Member
Member
Joined
Jun 9, 2016
Messages
1,049
Trophies
0
XP
1,515
Country
United States
@diddy81 I made some bat scripts for splitting the wii letter image
they use ImageMagick

wiiletter_split.bat
Code:
magick convert image.png -resize 512x376! image2.png

magick -size 512x376 -depth 8 -extract 64x144+0+0 image2.png Letter_0000_Layer-1.png
magick -size 512x376 -depth 8 -extract 384x144+64+0 image2.png Letter_0001_Layer-2.png
magick -size 512x376 -depth 8 -extract 64x144+448+0 image2.png Letter_0002_Layer-3.png

magick -size 512x376 -depth 8 -extract 64x168+0+144 image2.png Letter_0003_Layer-4.png
magick -size 512x376 -depth 8 -extract 384x168+64+144 image2.png Letter_0004_Layer-5.png
magick -size 512x376 -depth 8 -extract 64x168+448+144 image2.png Letter_0005_Layer-6.png

magick -size 512x376 -depth 8 -extract 64x64+0+312 image2.png Letter_0006_Layer-7.png
magick -size 512x376 -depth 8 -extract 384x64+64+312 image2.png Letter_0007_Layer-8.png
magick -size 512x376 -depth 8 -extract 64x64+448+312 image2.png Letter_0008_Layer-9.png
del image2.png

wiiletter_merge.bat
Code:
magick convert Letter_0000_Layer-1.png Letter_0001_Layer-2.png Letter_0002_Layer-3.png +append part1.png
magick convert Letter_0003_Layer-4.png Letter_0004_Layer-5.png Letter_0005_Layer-6.png +append part2.png
magick convert Letter_0006_Layer-7.png Letter_0007_Layer-8.png Letter_0008_Layer-9.png +append part3.png
magick convert part1.png part2.png part3.png -append image_merged.png
del part*.png

setupsel_trans.bat
Code:
magick convert -size 235x133 xc:#ffffff setupsel_trans.png
 

Attachments

  • theme helpers 2.0.zip
    3.1 KB · Views: 42
Last edited by pietempgba,

pietempgba

Well-Known Member
Member
Joined
Jun 9, 2016
Messages
1,049
Trophies
0
XP
1,515
Country
United States
Updated the scripts so it doesn't give a error about black and white in rgb, also instead of naming a file image.png name it letter.png now

wiiletter_merge.bat
Code:
@echo off
magick convert Letter_0000_Layer-1.png Letter_0001_Layer-2.png Letter_0002_Layer-3.png +append PNG32:part1.png
magick convert Letter_0003_Layer-4.png Letter_0004_Layer-5.png Letter_0005_Layer-6.png +append PNG32:part2.png
magick convert Letter_0006_Layer-7.png Letter_0007_Layer-8.png Letter_0008_Layer-9.png +append PNG32:part3.png
magick convert part1.png part2.png part3.png -append image_merged.png
del part*.png

wiiletter_split.bat
Code:
@echo off
magick convert letter.png -resize 512x376! PNG32:letter2.png

magick -size 512x376 -extract 64x144+0+0 letter2.png PNG32:Letter_0000_Layer-1.png
magick -size 512x376 -extract 384x144+64+0 letter2.png PNG32:Letter_0001_Layer-2.png
magick -size 512x376 -extract 64x144+448+0 letter2.png PNG32:Letter_0002_Layer-3.png

magick -size 512x376 -extract 64x168+0+144 letter2.png PNG32:Letter_0003_Layer-4.png
magick -size 512x376 -extract 384x168+64+144 letter2.png PNG32:Letter_0004_Layer-5.png
magick -size 512x376 -extract 64x168+448+144 letter2.png PNG32:Letter_0005_Layer-6.png

magick -size 512x376 -extract 64x64+0+312 letter2.png PNG32:Letter_0006_Layer-7.png
magick -size 512x376 -extract 384x64+64+312 letter2.png PNG32:Letter_0007_Layer-8.png
magick -size 512x376 -extract 64x64+448+312 letter2.png PNG32:Letter_0008_Layer-9.png

del letter2.png
 

Attachments

  • wiiletter.zip
    1.6 KB · Views: 34

diddy81

Wii Theme Team
OP
Member
Joined
Mar 14, 2009
Messages
916
Trophies
1
XP
1,099
Country
Does the Wii Theme Team Base Pack also work to create a vwii theme?
It will work for most of the menu however there are some parts that it will miss these parts are
the disk channel and the settings selection screens (setupsel) the ones to get to your saves and such
apart from those 2 things the rest should work
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BakerMan @ BakerMan:
    fuck ubisoft, and fuck activision
    +1
  • realtimesave @ realtimesave:
    Nintendo needs to release a new console, switch is getting such shitty little games lately lol it's pathetic
  • Purple_Heart @ Purple_Heart:
    Lmao a new flashcart... The Unlock Switch... I knew it's not fake xD
    +1
  • NinStar @ NinStar:
    A new consoles won't solve that problem
  • NinStar @ NinStar:
    It will actually make it worse
  • The Real Jdbye @ The Real Jdbye:
    well actually
    a new console won't do anything right now, because the games are still in development, that's why there are few games being released
  • The Real Jdbye @ The Real Jdbye:
    it won't make the games finish any faster
  • Veho @ Veho:
    2/3rds of launch titles for the Switch 2 will just be lazy ports of Switch games anyway.
  • The Real Jdbye @ The Real Jdbye:
    probably
  • The Real Jdbye @ The Real Jdbye:
    maybe mario kart 9 will be a launch title
  • The Real Jdbye @ The Real Jdbye:
    i really want a new mario kart
  • Veho @ Veho:
    What, you mean the endless stream of DLCs doesn't count?
  • Veho @ Veho:
    Why develop a new game when you can just sell season passes forever?
  • Veho @ Veho:
    I'm still on MKDS so I'm not bothered :tpi:
  • The Real Jdbye @ The Real Jdbye:
    i like the dlc tbh, i'd like a new game more
  • ZeroT21 @ ZeroT21:
    but the current version is still selling fine at full price
  • SylverReZ @ SylverReZ:
    Hello
  • ZeroT21 @ ZeroT21:
    sup
    +1
  • SylverReZ @ SylverReZ:
    @realtimesave, You seen the Unlock Switch flashcart yet?
  • K3Nv2 @ K3Nv2:
    I'll see the 19.0 update that blocks use ability to it
    +1
  • K3Nv2 @ K3Nv2:
    Lol newegg+
    Screenshot-20240423-053504-Gmail.jpg
  • S @ salazarcosplay:
    does update 19 really block it
  • SylverReZ @ SylverReZ:
    Update 19 never came out yet. Just the 18.1.
    SylverReZ @ SylverReZ: Update 19 never came out yet. Just the 18.1.