Novicenoble
Prince
Where can I find Mexican UP?
Should work ... have you double checked that you didn't delete a row from the exceptions list so that the ids don't match up?
Okay, you have two different things on your hand here.Area indicator - which let you know where your UHV targets are - is coded in cpp? It seems like not coded in python.
Well in fact, I cannot figure out how this bunch of codes and XML text are connected each other and works.
Spoiler :![]()
I'm out of ideas then, sorry. The exceptions definitely work because I've just played around with them when I made all these core changes.Yes. I did.
Leoreth, this guy (Fierabras) did modification to the CNM and able to add the special character easily. I can't understand what he's doing but probably you can![]()
Perhaps with this way we will actually see Tōkyō and Kyōto soon in the game haha
His result is in the attachment, using the vanilla version of CityNameManager.py
elif iPlayer == iAustralia:
if iGoal == 0:
iWA = self.getNumCitiesInArea(iAustralia, con.tWATL, con.WABR)
iNT = self.getNumCitiesInArea(iAustralia, con.tNTTL, con.tNTBR)
iSA = self.getNumCitiesInArea(iAustralia, tSATL, tSABR)
iQld = self.getNumCitiesInArea(iAustralia, tQldTL, tQldBR)
iNSW = self.getNumCitiesInArea(iAustralia, tNSWTL, tNSWBR)
aHelp.append(self.getIcon(iWA >= 3) + localText.getText("TXT_KEY_VICTORY_AUSTRALIA_CONTROL_WA", (iWA, 3)) + ' ' + self.getIcon(iNT >= 1) + localText.getText("TXT_KEY_VICTORY_AUSTRALIA_CONTROL_NT", (iNT, 1)) + ' ' + self.getIcon(iSA >= 1) + localText.getText("TXT_KEY_VICTORY_AUSTRALIA_CONTROL_SA", (iSA, 1)))
aHelp.append(self.getIcon(iQld >= 2) + localText.getText("TXT_KEY_VICTORY_AUSTRALIA_CONTROL_Qld", (iQld, 2)))
aHelp.append(self.getIcon(iNSW >= 2) + localText.getText("TXT_KEY_VICTORY_AUSTRALIA_CONTROL_NSW", (iNSW, 2)))
elif iGoal == 1:
iAirport = self.getNumBuildings(iAustralia, con.iAirport)
iImmigration = self.getNumBuildings(iAustralia, con.iAustralianImmigrationOffice)
aHelp.append(self.getIcon(iAirport >= 7) + localText.getText("TXT_KEY_VICTORY_NUM_AIRPORTS", (iAirport, 6)) + ' ' + self.getIcon(iImmigration >= 7) + localText.getText("TXT_KEY_VICTORY_NUM_IMMIGRATION", (iImmigration, 6)))
elif iGoal == 2:
iForestPreserves = self.countImprovements(iAustralia, con.iForestPreserve)
aHelp.append(self.getIcon(iForestPreserves >= 25) + localText.getText("TXT_KEY_VICTORY_NUM_IMPROVEMENTS", (gc.getImprovementInfo(con.iForestPreserve).getText(), iForestPreserves, 25)))