• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Scripting Question] End battle message box style to match EBDX

  • 12
    Posts
    9
    Years
    • Seen Apr 14, 2025
    Hi there,

    At the end of each trainer battle the opposing trainer will say something.
    Sadly, this doesn't look pretty with the message box style from EBDX which is partially see through. (Link)
    Does anyone know a way to match the Message Box from EBDX?

    Also, the game gets kinda laggy when it's about to display the "normal" styled message box, but this could be another problem entirely.


    Cheers,
    Frenk
     
    In Graphics/EBDX/Pictures/UI. two files exist - "skin1" (The partially see through windowskin) and "skin2" (The white windowskin that appears at the end). You may just be able to replace overwrite skin 2 with skin1.

    EDIT: Okay so if you'd rather not change the files, and you're okay with editing the scripts, I found a better solution. In Plugins/Elite Battle DX/[000] Scripts/Battle UI/ UI Scene -- you can replace the line
    Code:
    bmp2 = Bitmap.smartWindow(Rect.new(8, 8, 8, 8), Rect.new(0, 0, @viewport.width - 28, 82), "Graphics/EBDX/Pictures/UI/skin2")
    with
    Code:
    bmp2 = Bitmap.smartWindow(Rect.new(8, 8, 8, 8), Rect.new(0, 0, @viewport.width - 28, 82), "Graphics/EBDX/Pictures/UI/skin1")

    Hopefully this helps :)
     
    Thanks for your answer MewTheMega!

    I changed this:
    Code:
    bmp2 = Bitmap.smartWindow(Rect.new(8, 8, 8, 8), Rect.new(0, 0, @viewport.width - 28, 82), "Graphics/EBDX/Pictures/UI/skin2")
    to this:
    Code:
    bmp2 = bmp1
     
    Back
    Top