ProjectMaximus
Chieftain
- Joined
- Aug 7, 2014
- Messages
- 27
If I were you, first, I would have a look at Python\Screens\CvMainInterface.py. That's the file responsible for the display of the main screen + the city screen.
But if you can't change it there, then it was changed in the dll (probably by the mod itself).
PS: I don't have the mod so it's up to you.
Hi Isenchine,
Thank you for the suggestions.
I went through in CvMainInterface.py and I found this part under the "SCORES" section:
for i in range( gc.getMAX_PLAYERS() ):
szName = "ScoreText" + str(i)
screen.setText( szName, "Background", u"", CvUtil.FONT_RIGHT_JUSTIFY, 996, 622, -0.3, FontTypes.SMALL_FONT, WidgetTypes.WIDGET_CONTACT_CIV, i, -1 )
screen.hide( szName )
I think this WIDGET_CONTACT_CIV contains that info what I looking for
so I googled it but there is no any useful info about where it is
I checked DLLs too, I found CvGameCoreDLL only in my mod folder and to be honest I have no clue how can I deal with this file type.
But if you can't change it there, then it was changed in the dll (probably by the mod itself).
PS: I don't have the mod so it's up to you.
Hi Isenchine,
Thank you for the suggestions.
I went through in CvMainInterface.py and I found this part under the "SCORES" section:
for i in range( gc.getMAX_PLAYERS() ):
szName = "ScoreText" + str(i)
screen.setText( szName, "Background", u"", CvUtil.FONT_RIGHT_JUSTIFY, 996, 622, -0.3, FontTypes.SMALL_FONT, WidgetTypes.WIDGET_CONTACT_CIV, i, -1 )
screen.hide( szName )
I think this WIDGET_CONTACT_CIV contains that info what I looking for

so I googled it but there is no any useful info about where it is

I checked DLLs too, I found CvGameCoreDLL only in my mod folder and to be honest I have no clue how can I deal with this file type.