strategyonly
C2C Supreme Commander
Look in GreatPersonScreen.py for the interfaceScreen() function. A few lines into it szArtPath is set. My copy has this:
Code:szArtPath = CvPath.getPath(os.path.join("art","GreatPeople"), "Great Person.dds")
Is that what yours looks like? That won't work because this needs to be the path to the folder as below this line it adds the person's name to it. If you have the above, change it to this:
Code:szArtPath = CvPath.getPath("art", "GreatPeople")
Nope didnt work, i still get default GP screen.
Heres what i change to: (these are all the files that contain: szArtPath
00063: szArtPath = CvPath.getPath("art", "GreatPeople")
00064: #CvUtil.pyPrint("CvGreatPersonScreen: szArtPath: " + szArtPath)
00078: szImageFilename = os.path.join(szArtPath, szImageName + ".dds")
00083: szImageFilename = os.path.join(szArtPath, szImageName + ".dds")