12-12-2022, 01:09 AM
Hi, I'm working on a tool to export the data from a lod file, specifically g@migo's catalog.lod. I made my code based on the structure that is in the client (Nov). But apparently g@migo devs changed something, it's not clear to me what he changes, because most of the data is correct, does anyone know anything about it? btw, my code is something like this:
ReadInt32 // ct count
#Loop by ct count
ReadInt32 // ct id
ReadInt32 // ct cat
ReadInt32 // ct price
ReadInt32 // ct mileage
ReadInt32 // ct flag
ReadByte // ct enable
ReadBytes(ReadInt32) // ct name/name length
ReadBytes(ReadInt32) // ct desc/desc length
ReadInt32 // ct items count
#Loop by ct items count
ReadInt32 // ct item id
ReadInt32 // ct item flag
ReadInt32 // ct item plus
ReadInt32 // ct item option
ReadInt32 // ct item count
ReadInt32 // ct icon

