November 5, 20232 yr I have some pkg files from the iron man 2 game on ps3 but the standard pkg tools cannot extract them, can anyone help me? Samples:IronMan2_Samples.rar
November 26, 20232 yr Supporter //------------------------------------------------ //--- 010 Editor v14.0 Binary Template // // File: // Authors: // Version: // Purpose: // Category: // File Mask: // ID Bytes: // History: //------------------------------------------------ BigEndian(); struct TableInfo { uint32 Sign; uint32 TableSize; uint32 Unk[5]; uint32 Count; }; struct TableEntry { uint32 Flag; uint32 Offset; uint32 Size; uint32 Value0; uint32 Value1; uint32 CompressedSize; uint32 Value2; uint32 Value3; uint32 Value4; }; TableInfo Info; TableEntry Entry[Info.Count]; for compressed files use zlib. qbms should be easy to write.
May 8, 20242 yr Author Well, let's say I'm not good at this type of script creation, I'm quite a beginner at it.
May 9, 20242 yr Supporter Solution Try this: https://github.com/bartlomiejduda/Tools/blob/master/NEW Tools/Iron Man 2/Iron_Man_2_PKG_script.bms
May 9, 20242 yr Author it works thank you very much, The only "problem" I found is not really a problem as BMS says it has extracted 95% of the file Edited May 9, 20242 yr by LeoFeroz I saw an error later
May 10, 20242 yr Supporter There are some padding nulls between files. Those values shouldn't be extracted, so you have nothing to worry about. 🙂
Create an account or sign in to comment