Quote:
Originally Posted by zargon05
Anything other than 74 01 doesn't work in ep5 for me and gives a sgraphics error.
Edit:
For reading all levels of curse of goddess edit Skill.py
2 lines before the last from
Code:
if (i == record_total and j == 3):
to
Code:
if (i == record_total and j == 9):
|
I changed j==3 to j == 9, then i got error when i unpack with original Skill.sdata. However, if i change it back to 3, it will be fine to unpack.
Creating ./Output/SData/Skill.complete.csv
Traceback (most recent call last):
File "src\SData.py", line 113, in <module>
main(sys.argv[1:])
File "src\SData.py", line 102, in main
result = SDataItems[SDataName](outFmt)
File "E:\shay_data_edit_0-1c\src\Skill.py", line 123, in MainSkill
return ExtractSkill("Skill", outFmt)
File "E:\shay_data_edit_0-1c\src\Skill.py", line 193, in ExtractSkill
rec = unpack_fields(input, skill_types, {})
File "E:\shay_data_edit_0-1c\src\Utils.py", line 97, in unpack_fields
rec[ field[0]] = unpack_field(input, type)
File "E:\shay_data_edit_0-1c\src\Utils.py", line 85, in unpack_field
len = struct.unpack('=I', input.read(4))[0]
struct.error: unpack requires a string argument of length 4
Press any key to continue . . .