- 112
- Posts
- 10
- Years
- Seen Nov 17, 2023
I've almost fully implemented the FR/LG summary screens for my game, but I'm running into an issue you can see in the image below:
(The arrows and red lines were added to make it easier to see the text overlapping the lines. Also don't worry about the words cutting off, I plan to shorten the descriptions to fit the text box)
I was actually able to get the first line of the description lined up correctly by editing its position in this section of code in PScreen_Summary:
But I can't find the value that deals with the offset of each line of text in the description. The code above seems to be the only part that references move descriptions.
Does anyone know where I can find the offset for the move description text in the summary screen?
![[PokeCommunity.com] Move description line offset value? [PokeCommunity.com] Move description line offset value?](https://i.imgur.com/KTUUyes.png)
(The arrows and red lines were added to make it easier to see the text overlapping the lines. Also don't worry about the words cutting off, I plan to shorten the descriptions to fit the text box)
I was actually able to get the first line of the description lined up correctly by editing its position in this section of code in PScreen_Summary:
Code:
drawTextEx(overlay,15,209,238,4,
pbGetMessage(MessageTypes::MoveDescriptions,moveid),
Color.new(64,64,64),Color.new(176,176,176))
But I can't find the value that deals with the offset of each line of text in the description. The code above seems to be the only part that references move descriptions.
Does anyone know where I can find the offset for the move description text in the summary screen?