[QUES] Putting Company Name in Text

Simple question. How do I put the players Company Name in text?

In the main code I’ve seen the following used:

“Hello {0}”.localize("{0} company name").format(b.name)

I just can’t seem to find out how this code is defined…

Many thanks to those who can help!

Nevermind, figured it out!

Thanks for sharing your resolution. :angry:

@Hyphon

"Hello {0}".format(GameManager.company.name)
1 Like

Thank you.