Hello Rounders,
If I may try to help, I guess that's exactly the place where you have to change it. But, if you notice it, the first text is for Player 1 (Team1) and the second is for Player 2 (Team2). So, what I think Manu suggested is to duplicate both, so you will have a first Team1 text formatted for "only first name", and a second Team1 text formatted for "only last name". For this second one, you would apply the bold font configuration.
Something like this:
- Code: Select all
 // Full names in full scoreboard
item
{
   FormatTeamName /Intern/Team1s 1 "F"
   Text /Intern/Team1
   Pos /Intern/ScoreX /Intern/ScoreYu Left Center
   Font FullNameF
   ShrinkToMaxPixel FullScoreNameMax
   ShowIf /Intern/ScoreType 1
   OnRender
   {
      MulAddMulCfg /Intern/ScoreX 0 /Intern/ScoreXl
      MulAddMulCfg /Intern/ScoreX 1 /Intern/ScoreNameX
   }
}
// Full names in full scoreboard
item
{
   FormatTeamName /Intern/Team1s 1 "L"         //  CHANGE FORMATTING
   Text /Intern/Team1
   Pos /Intern/ScoreX /Intern/ScoreYu Left Center
   Font FullNameFBold                                        // CHANGE FONT
   ShrinkToMaxPixel FullScoreNameMax
   ShowIf /Intern/ScoreType 1
   OnRender
   {
      MulAddMulCfg /Intern/ScoreX 0 /Intern/ScoreXl
      MulAddMulCfg /Intern/ScoreX 1 /Intern/ScoreNameX
   }
}
Well, I don't know if this works, changing the format like that, but, even if you make it work, it will be hard to position both texts without leaving extra spaces between them. Unless there is some way to determine how many characters are there in the first name, so you could position the last name right after it, but I guess this function doesn't exist. So, the second suggestion of Manu (custom font) would probably be easier.