there in resources are missing, if this error occur just follow this:
1.
PatchNoteWindow.LoadWindow.BindObject - <type 'exceptions.NameError'>:global name 'pack_open' is not defined
uipatchnotes.py
def BuildPatchnotes(self):
try:
patchnotes = pack_open("%s/patchnotes.txt" % app.GetLocalePath(), "r")
except:
patchnotes = pack_open("locale/en/patchnotes.txt", "r")
change to this:
def BuildPatchnotes(self):
try:
patchnotes = open("%s/patchnotes.txt" % app.GetLocalePath(), "r")
except:
patchnotes = open("locale/en/patchnotes.txt", "r")
2. PatchNoteWindow.LoadWindow.BindObject - <type 'exceptions.AttributeError'>:'module' object has no attribute 'UI_DEF_FONT_SLARGE'
* add in locale_game.txt
UI_DEF_FONT_SLARGE Patchnotes