This commit is contained in:
Евгений Храмов 2023-05-14 22:45:49 +03:00
parent 7c5c966c83
commit 335faca5a2

@ -515,8 +515,6 @@ def modextract(id_mod, id_game_workshop, dir_ark_mods):
modpath = b"../../../" + dir_shooter.encode() + b"/Content/Mods/" + id_mod.encode() + b'\x00'
modpathlen = len(modpath)
with open(f"{dir_ark_mods}.mod", "wb") as mod:
print(type(modnamelen))
print(type(modpathlen))
mod.write(struct.pack('<LLL{}sL{}sL'.format(modnamelen, modpathlen), int(id_mod), 0, modnamelen, modname,
modpathlen, modpath, nummaps))
for mapnum in range(nummaps):