Z
ZL325
Guest
I'm starting to not mind most of the redesigns, except Squall's, but I do find myself being okay with it from time to time.
Which are all things we could have now, if SE had worked with us on a open Gears engine, at the time when they made the re-release for FF7. They could have ported a lot of their psx games and we would have maintained it. But SE isn't a company that can't look far in the future. In the end they wasted more money than needed and also loose more and more of their reputation as a company, which makes high quality games.I was just reading the Steam reviews. Most people's complaints are usually: it isn't wide screen, backgrounds are blurry, it isn't 60 FPS, and there is no real analogue movement.
Are you sure we could have true 60 FPS now or just the menus in battle? I don't think people would settle for that. They're even complaining the FMVs are only 15 FPS. And what's OpenVIII?Which are all things we could have now, if SE had worked with us on a open Gears engine, at the time when they made the re-release for FF7. They could have ported a lot of their psx games and we would have maintained it. But SE isn't a company that can't look far in the future. In the end they wasted more money than needed and also loose more and more of their reputation as a company, which makes high quality games.
@Divatox ATM the remastered is technically better and with mod support in the future, overall. But OpenVIII will be the definitive version which will have most of the things which people do except for a remaster.
pretty sure the modded version is better, and the Remaster will only bring more to the modded version... 8)So what is the conclusion?
Remaster is better? or the mods are still winning?
I don't ever deal with scripting, but I can execute pre-made scripts just fine. Would you be able to create a script that can repack the data? Or would that be as simple as compressing it to a zip file and then renaming the zip file main.zzz or other.zzz?python2 script to unpack ZZZ files- just change path in line 5 to either main.zzz or other.zzz
Code: [Select]Code:import sysimport osimport structfd = open('main.zzz', 'rb')def ReadEntry(): filenameLen = struct.unpack('<I', fd.read(4))[0] filename = fd.read(filenameLen) absPos = struct.unpack('<I', fd.read(4))[0] flag = struct.unpack('<I', fd.read(4))[0] fileSize = struct.unpack('<I', fd.read(4))[0] return [filenameLen, filename, absPos, flag, fileSize] filesCount = struct.unpack('<I', fd.read(4))[0]entries = [ReadEntry()]for i in range(1,filesCount): entries += [ReadEntry()] #print(entries[i]) for i in range(0,len(entries)): finPath = os.path.join(os.getcwd(), 'EXPORT', entries[i][1].replace('\\', '/')) dirPath = os.path.dirname(finPath).replace('\\', '/') if not os.path.exists(dirPath): os.makedirs(dirPath) outfd = open(finPath, 'wb') fd.seek(entries[i][2]) buffer = fd.read(entries[i][4]) outfd.write(buffer) outfd.close() print(finPath + " saved.")