midanlaw Posted November 1, 2023 Posted November 1, 2023 im trying to attempt translating the vn, but i have 0 knowledge on any technical/programing stuff. thanks to a few 4chan anons, i learned to extract and repack the files using betterfpk.exe, but upon repacking the files the vn crashes even while not editing any files. acording to said anons, this is a problem, so i want to know if there are other tools, or any info on how to make this work. tsuyokiss runs on system-c by the way. any help would be apreciated Quote
midanlaw Posted November 1, 2023 Author Posted November 1, 2023 8 hours ago, Sisulizer said: Try AE-VN tool just tried it, but it doesnt look like you can repack archives with it Quote
Sisulizer Posted November 2, 2023 Posted November 2, 2023 (edited) 16 hours ago, midanlaw said: just tried it, but it doesnt look like you can repack archives with it It can, "+" mean that format can be repacked. You can choose to create from folder or files Edited November 2, 2023 by Sisulizer Quote
midanlaw Posted November 2, 2023 Author Posted November 2, 2023 6 hours ago, Sisulizer said: It can, "+" mean that format can be repacked. You can choose to create from folder or files thank you, just tried it, but it gave me the same problem as betterfpk, thank you anyway Quote
Sisulizer Posted November 20, 2023 Posted November 20, 2023 import os import struct import sys def calc_hash(name): name=name.upper().encode('utf-8') h=0 for i in range(len(name)): h=(h+name[i]*(i+1))&0xffff return h def pack(folder, output): files = os.listdir(folder) files.sort(key=calc_hash) fs= open(output, 'wb') fs.write((len(files)|0x80000000).to_bytes(4,'little')) idx = bytearray() off = 4 for f in files: ff=open(os.path.join(folder,f),'rb') stm = ff.read() fs.write(stm) ff.close() idx+=struct.pack('II24sI', off, len(stm), f.encode('utf-8'), calc_hash(f)) off+=len(stm) fs.write(idx) fs.write((0).to_bytes(4,'little')) fs.write(off.to_bytes(4, 'little')) fs.close() pack(sys.argv[1], sys.argv[2]) Usage: python pak.py input_folder output_fpk Quote
midanlaw Posted November 20, 2023 Author Posted November 20, 2023 13 hours ago, Sisulizer said: import os import struct import sys def calc_hash(name): name=name.upper().encode('utf-8') h=0 for i in range(len(name)): h=(h+name[i]*(i+1))&0xffff return h def pack(folder, output): files = os.listdir(folder) files.sort(key=calc_hash) fs= open(output, 'wb') fs.write((len(files)|0x80000000).to_bytes(4,'little')) idx = bytearray() off = 4 for f in files: ff=open(os.path.join(folder,f),'rb') stm = ff.read() fs.write(stm) ff.close() idx+=struct.pack('II24sI', off, len(stm), f.encode('utf-8'), calc_hash(f)) off+=len(stm) fs.write(idx) fs.write((0).to_bytes(4,'little')) fs.write(off.to_bytes(4, 'little')) fs.close() pack(sys.argv[1], sys.argv[2]) Usage: python pak.py input_folder output_fpk thanks, it looks like this is the way to go, i need to find out how does this work tho Quote
midanlaw Posted November 20, 2023 Author Posted November 20, 2023 (edited) 4 hours ago, midanlaw said: thanks, it looks like this is the way to go, i need to find out how does this work tho forget it, thank to the 4chan anon i made it work, thank you for your help, i hope i can get this project moving Edited November 20, 2023 by midanlaw typo Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.