BiggusWeeabus released a fantastic, remastered version of the Platinum Battle UI a while back, when v18.1 was the latest version of Essentials. Due to this, the scripts in his resource are now outdated. v20.1 scripts are provided here so you can still use this great resource in current day games.
Script Replacements
In BattleScene_Menus, replace lines 263 and 270 with the code below. It will move the Type Icon and PP displayed when selecting a move to the right, allowing it to better fit into the white space next to the move selection.
Move Type + Current PP Positioning:
@infoOverlay.x = self.x + 15
@typeIcon.x = self.x + 431
Before
After
In BattleScene_Objects, replace lines 10 and 11 with the ones below. What this does is make the text white in the Pokémon databoxes to match the darker background, and changes the shade of blue for the male gender symbol to match the one in Platinum.
White text and light blue male symbol:
NAME_BASE_COLOR = Color.new(255, 255, 255)
NAME_SHADOW_COLOR = Color.new(107, 107, 107)
MALE_BASE_COLOR = Color.new(0, 198, 255)
- Credits
- Zygoat