├── .github └── FUNDING.yml ├── .gitignore ├── Binary Templates ├── EA_FONT_SFN_FFN_XFN_MFN.bt ├── Favorite_Dear_LKF_Archive.bt ├── GTX_WII_U_Image.bt ├── Mario_Kart_DS_NSBTX.bt ├── Monsters_Inc_Scream_Team_Training_WAD_Archive.bt ├── TIM2_TM2_PS2_Image_binary_template.bt └── TMNT_2003_AFS_DAT_Archive.bt ├── Compressed Samples Checker ├── README.MD ├── compressed_samples_checker.py ├── images_samples_checker.py └── requirements.txt ├── Frida Scripts ├── Allegro Engine │ └── allegro_DAT_frida_hook.js ├── Good Pizza Great Pizza │ ├── OLD_frida_hook_init_script.py │ ├── frida_hook_init_script.bat │ ├── good_pizza_frida_hook.js │ ├── readme.md │ └── requirements.txt ├── Hatch Engine │ └── hatch_engine_frida_script.js ├── ObsCure 2 │ ├── obscure2_frida_hook.js │ └── run_frida_for_obscure2.BAT ├── co.kr.eamobile.roomofprey3 │ └── room_of_prey_frida_script.js ├── cocos2d │ ├── cocos2d_pvr_script.js │ └── cocos2d_xxtea_script.js └── jp.co.cybird.android.conanescape01 │ ├── README.md │ ├── extra_code.js │ ├── frida_android_conanescape01_hook.js │ └── frida_android_conanescape01_hook.py ├── LICENSE ├── NEW Tools ├── 10tons games │ └── 10tons_XML_Tool.py ├── 7 Days │ └── 7_Days_SPK_script.bms ├── AFK Arena │ └── AFK_Arena_LZAP_script.bms ├── Abbey Games │ └── Abbey_Games_TIM_script.bms ├── Acclaim │ └── Acclaim_TRE_Tool │ │ ├── .gitignore │ │ ├── README.md │ │ ├── acclaim_tre_tool.py │ │ ├── filenames │ │ ├── turok_evolution_filenames.txt │ │ ├── turok_evolution_filenames2.txt │ │ ├── turok_evolution_filenames3.txt │ │ ├── turok_evolution_filenames4.txt │ │ ├── turok_evolution_filenames5.txt │ │ ├── vexx_filenames.txt │ │ └── vexx_filenames2.txt │ │ └── requirements.txt ├── Action Hero 3D Wild Dog │ └── action_hero_3d_wild_dog_res_script.bms ├── Actua Soccer │ └── Actua_Soccer_BM_PAL_Tool.py ├── Adventure Time Explore The Dungeon │ ├── Adventure PAK REpacker.py │ └── Adventure PAK unpacker.py ├── Akuji the Demon │ └── Akuji_the_Demon_QDA_script.bms ├── Allegro │ └── Allegro_DAT_article.txt ├── Antecrypt │ └── Antecrypt_SGR_script.bms ├── Arc System Works │ └── PSARC_FPAC_splitter.bms ├── Archangel │ └── Archangel_PAK_script.bms ├── Asobo Studio DPC DPS Research │ ├── .vgmstream.txth │ ├── Asobo_DPC_DPS_Tool.py │ ├── Asobo_SDX_Tool.py │ ├── CT_Special_Forces_PC_DPC_file_format.txt │ ├── CT_Special_Forces_fonts_dpc.hbk │ ├── Garfield_2_PC_DPC_bookmark.hbk │ ├── Garfield_2_PC_DPC_file_format.txt │ ├── Ratatouille_PS2_DPS_file_format.txt │ ├── Sitting_Ducks_PS2_DPS_file_format.txt │ └── Sitting_Ducks_PS2_MENU_DPS_bookmark.hbk ├── Asterix Gallic War │ └── Asterix_The_Gallic_War_DAT_Tool.py ├── Attack on Titan Wings of Freedom │ └── Aot_Wing_of_freedom_DAT_Tool.py ├── Avernum_Tool_1.py ├── BD HEX DEC CONVERTER │ ├── BD_HEX_DEC_CONVERTER.pyw │ └── RUN.BAT ├── BD LBA FINDER │ ├── BD_LBA_Finder.pyw │ └── LBA_FINDER.py ├── BD_hash_cracker │ ├── Hash_cracker │ │ ├── Hash_cracker.vcxproj │ │ ├── Hash_cracker.vcxproj.filters │ │ ├── Hash_cracker.vcxproj.user │ │ ├── Hash_cracker_main.cpp │ │ ├── hash_func.h │ │ ├── logs.txt │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── x64 │ │ │ ├── Debug │ │ │ ├── Hash_cracker.Build.CppClean.log │ │ │ ├── Hash_cracker.log │ │ │ ├── Hash_cracker.pch │ │ │ ├── Hash_cracker.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── Hash_cracker.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── Hash_cracker.vcxproj.FileListAbsolute.txt │ │ │ ├── Hash_cracker_main.obj │ │ │ ├── pch.obj │ │ │ ├── vc142.idb │ │ │ └── vc142.pdb │ │ │ └── Release │ │ │ ├── Hash_cracker.Build.CppClean.log │ │ │ ├── Hash_cracker.log │ │ │ ├── Hash_cracker.pch │ │ │ ├── Hash_cracker.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Hash_cracker.lastbuildstate │ │ │ ├── Hash_cracker.write.1u.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.delete.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ │ ├── Hash_cracker.vcxproj.FileListAbsolute.txt │ │ │ ├── Hash_cracker_main.obj │ │ │ ├── pch.obj │ │ │ └── vc142.pdb │ ├── Hash_cracker_sol.sln │ ├── Hercules_files │ │ ├── herchash.txt │ │ └── unknown_hash_list.txt │ └── x64 │ │ ├── Debug │ │ ├── Hash_cracker.ilk │ │ ├── Hash_cracker.pdb │ │ └── logs.txt │ │ └── Release │ │ ├── Hash_cracker.exe │ │ ├── Hash_cracker.iobj │ │ ├── Hash_cracker.ipdb │ │ ├── Hash_cracker.pdb │ │ └── logs.txt ├── BD_line_counter.py ├── BINARY_&_MEMORY_SEARCH │ ├── BINARY_&_MEMORY_SEARCH.py │ ├── Examples │ │ ├── Pattern1_example.bin │ │ └── Search1_example.bin │ └── TotalDump │ │ ├── TASKLIST_script.BAT │ │ ├── TOTAL_DUMP_script.BAT │ │ ├── TotalDump.cpp │ │ └── TotalDump.exe ├── BLOOD+ One Night Kiss │ ├── Blood_One_Night_Kiss_BIN_script.bms │ └── UNPACK.BAT ├── Behemoth │ └── Behemoth_BREC_script.bms ├── Beyond Good & Evil │ └── Beyond_Good_and_Evil_PAK_BPAK_script.bms ├── Binding of Isaac │ ├── IKS_binding_of_isaac_REpack.py │ └── IKS_binding_of_isaac_unpack.py ├── Blobby Volley │ └── Blobby_Volley_PAK_Tool.py ├── Bomberman Wars │ └── Bomberman_Wars_BIN_IDX_script.bms ├── Broken Sword │ └── Broken_sword_DAT_script.bms ├── Bully Anniversary Edition │ ├── Bully_XML_Tool.cpp │ └── Bully_XML_Tool.py ├── Bust a Groove │ └── Bust_a_Groove_DFS_script.bms ├── C12 Final Resistance │ ├── C12_Final_Resistance_Tool.py │ ├── C12_SAVES │ │ ├── C12_NTSC_SCUS_94666_SAVES │ │ │ ├── c12_ntsc_saves_part1.png │ │ │ ├── c12_ntsc_saves_part2.png │ │ │ ├── c12_ntsc_saves_part3.png │ │ │ ├── epsxe000.mcr │ │ │ ├── epsxe000_part3.mcr │ │ │ └── epsxe001.mcr │ │ ├── C12_PAL_SCES_03364_SAVES │ │ │ ├── epsxe000.mcr │ │ │ └── epsxe001.mcr │ │ └── readme.txt │ ├── C12_codes.txt │ └── C12_short_info.txt ├── CT Special Forces Fire for effect │ ├── Audio │ │ ├── 01_SDX.hbk │ │ └── CT_SDX_Audio_description.txt │ ├── Cheats │ │ ├── CT_Cheats_Hotkeys_List.txt │ │ ├── CT_cheats_view.png │ │ ├── [IKS] CT Special Forces Cheat Table.CT │ │ └── readme.txt │ └── Save Editor files │ │ ├── BLOCK1_SAV.hbk │ │ ├── CT_SF_Save_File_Format.txt │ │ └── CT_Special_Forces_FFE_checksum_fixer.py ├── Cars 2 │ └── Cars_2_The_Video_Game_PACK_script.bms ├── Cat Daddy Tycoons │ ├── Cat_Daddy_Tycoons_BIN_script.bms │ └── UNPACK.BAT ├── Catwoman PC │ ├── Catwoman_Tool.py │ ├── catwoman_01.vol_bookmark.hbk │ └── catwoman_bookmark.hbk ├── Cause of Death │ └── Cause_of_Death_EXP_script.bms ├── City Interactive Games │ └── City_Interactive_DPK_script.bms ├── Cocos2d │ └── cocos2d_CCZp_script.bms ├── Code Lyoko - Quest For Infinity │ ├── Code_Lyoko_GRP_Tool.py │ ├── GRP file format.txt │ └── MUSIC.GRP_bookmark.hbk ├── Commandos │ └── Commandos_DIR_script.bms ├── Conflict Desert Storm │ ├── UNPACK.BAT │ └── conflict_desert_storm_dat_script.bms ├── Corrosion Cold Winter Waiting │ ├── IKS_corrosion_REpack.py │ └── IKS_corrosion_unpack.py ├── Crash Bandicoot Mutant Island 2008 │ ├── Cheats │ │ ├── 01_Wumpas_+100_cheat │ │ │ ├── Crash.class │ │ │ └── readme.md │ │ ├── Crash Bandicoot.jad │ │ └── Crash_Mutant_Island_Immortality_Cheat.txt │ ├── Crash Mutant Island Font Tool │ │ ├── Crash_Mutant_Island_Font_Tool.py │ │ ├── Crash_font_file_format.txt │ │ ├── crash_f_icon.ico │ │ ├── crash_font_tool_manual.html │ │ ├── img │ │ │ ├── crash_font_tool_01.png │ │ │ ├── crash_font_tool_02.png │ │ │ ├── crash_font_tool_03.png │ │ │ └── crash_font_tool_04.png │ │ └── tkintertable │ │ │ ├── App.py │ │ │ ├── Custom.py │ │ │ ├── Dialogs.py │ │ │ ├── Filtering.py │ │ │ ├── Plot.py │ │ │ ├── Prefs.py │ │ │ ├── TableFormula.py │ │ │ ├── TableModels.py │ │ │ ├── Table_images.py │ │ │ ├── Tables.py │ │ │ ├── Tables_IO.py │ │ │ ├── Testing.py │ │ │ └── __init__.py │ ├── Crash Mutant Island Sprite Tools │ │ ├── Boards_Palettes.bin_file_format.txt │ │ ├── Boards_Styles_Datas.bin_file_format.txt │ │ ├── Graphics_file_format.txt │ │ ├── Sprites_nb_file_format.txt │ │ └── crash_mutant_island_sprite_tool.py │ ├── Crash Mutant Island Text Tool │ │ ├── Crash_Mutant_Island_Text_Tool.py │ │ ├── Txts_Pack_nb_file_format.txt │ │ ├── Txts_Packs_Indexes_file_format.txt │ │ ├── crash_t_icon.ico │ │ └── img │ │ │ └── crash_text_tool_01.png │ └── Sound_files_info.txt ├── Crash Mind Over Mutant PSP │ ├── Crash_Mind_Over_Mutant_RCF_Tool.py │ ├── RCF file format.txt │ └── default.rcf_bookmark.hbk ├── Crash Team Racing │ └── CTR_CHAR_REPLACER.py ├── Crazy Ball │ ├── BOD file format.txt │ └── Crazy_Ball_BOD_Tool.py ├── Crazy Taxi │ ├── Crazy_Taxi_JPK_script.bms │ ├── JPK Tool │ │ ├── Cazy_Taxi_JPK_File_format.txt │ │ └── Crazy_Taxi_JPK_Tool.py │ └── Other files │ │ └── Crazy_Taxi_Other_files.txt ├── Crime Cities │ └── Crime_Cities_PAK_script.bms ├── Critical Velocity │ └── Critical_Velocity_PAC_script.bms ├── Davilex Games │ └── davilex_games.bms ├── Dead or Alive 2 (PS2) │ ├── DOA2_Text_Tool.py │ └── strings_eng_data.txt ├── Deadly Premonition │ └── Deadly_Premonition_XPC_script.bms ├── Deep Silver Volition │ └── Deep_Silver_Volition_VPP_script.bms ├── Def Jam Fight for NY │ └── Def_Jam_Fight_for_NY_PAK_script.bms ├── Dexter's Laboratory Mandarks Lab │ └── Dexter Bin Tool.py ├── Digimon FS.BIN unpacker.py ├── Digimon Rumble Arena 2 │ └── RES file format.txt ├── Dink Smallwood HD │ ├── 01_CREATE_ALL_FONTS.BAT │ ├── 01_DECOMPRESS_ALL.BAT │ ├── Dink_Smallwood_HD_Text_Manager.py │ ├── IN │ │ └── dummy.zz │ ├── OUT │ │ └── dummy.zz │ ├── dink_smallwood_hd_text_tool.cpp │ └── dinkhd_license.txt ├── Disney's Hercules PC │ ├── Cheats │ │ ├── Hercules_cheats.txt │ │ └── Hercules_passwords.txt │ ├── Hercules_PC_Tool.py │ ├── Hercules_short_info.txt │ └── herchash.txt ├── Drakan │ ├── Drakan RRC file format.txt │ ├── Drakan_RRC_Tool.py │ └── Drakan_test.cpp ├── Dungeon Siege III │ └── Dungeon_siege_III_OAF_script.bms ├── Dynasty Warriors 8 │ └── Dynasty_Warriors_8_BIN_IDX_Tool.py ├── E-racer │ ├── DecompRA_auto.bat │ ├── E-Racer_Hook.cpp │ ├── E-Racer_XFS_Tool.py │ ├── XFS file format.txt │ ├── eracer_hash_dump.txt │ └── hash_func.py ├── EA Games │ ├── EA_Games_ARC_script.bms │ ├── EA_Games_BIG_VIV_BIGF_script.bms │ ├── EA_Games_BIG_VIV_C0FB_script.bms │ ├── EA_Games_BIG_VIV_EB_script.bms │ └── EA_Games_MUS_Extractor.bms ├── Elasto Mania │ ├── Elma RES Tool │ │ ├── elma_res_tool.py │ │ └── key.bin │ ├── LGR file format.txt │ └── RES file format.txt ├── Eldritch │ └── Eldritch_CPK_script.bms ├── Executioners │ ├── Executioners_INTRO.VOL_script.bms │ └── Executioners_RLE_Tool │ │ ├── README.MD │ │ ├── executioners_rle_tool.py │ │ └── requirements.txt ├── F-Zero X │ └── TEX Tool │ │ ├── README.md │ │ ├── data │ │ ├── face1.png │ │ ├── face1.py │ │ ├── face3.png │ │ ├── face3.py │ │ ├── ko_msel_bg.png │ │ ├── ko_msel_bg.py │ │ ├── ko_title_TIS.png │ │ ├── ko_title_TIS.py │ │ ├── ko_title_TIS2.png │ │ ├── ko_title_TIS2.py │ │ ├── sot_falcon32.png │ │ └── sot_falcon32.py │ │ ├── main.py │ │ └── requirements.txt ├── FSB Batch Generator │ ├── FSB_BATCH_GENERATOR.BAT │ ├── IN │ │ └── dummy.txt │ ├── Line_Replacer.exe │ ├── Line_Replacer │ │ ├── .vs │ │ │ └── Line_Replacer │ │ │ │ └── v15 │ │ │ │ ├── .suo │ │ │ │ ├── Browse.VC.db │ │ │ │ └── ipch │ │ │ │ └── b7e9f79389023021.ipch │ │ ├── Line_Replacer.sln │ │ ├── Line_Replacer │ │ │ ├── .vs │ │ │ │ └── Line_Replacer │ │ │ │ │ └── v15 │ │ │ │ │ ├── .suo │ │ │ │ │ ├── Browse.VC.db │ │ │ │ │ └── ipch │ │ │ │ │ └── 489f44a7ba19e0e7.ipch │ │ │ ├── Line_Replacer.cpp │ │ │ ├── Line_Replacer.vcxproj │ │ │ ├── Line_Replacer.vcxproj.filters │ │ │ ├── Line_Replacer.vcxproj.user │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── x64 │ │ │ │ └── Debug │ │ │ │ ├── Line_Replacer.log │ │ │ │ ├── Line_Replacer.obj │ │ │ │ ├── Line_Replacer.pch │ │ │ │ ├── Line_Replacer.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── Line_Replacer.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ │ ├── pch.obj │ │ │ │ ├── vc141.idb │ │ │ │ └── vc141.pdb │ │ └── x64 │ │ │ └── Debug │ │ │ ├── Line_Replacer.exe │ │ │ ├── Line_Replacer.ilk │ │ │ ├── Line_Replacer.pdb │ │ │ └── TEST.TXT │ ├── NOWY_5.fdp │ ├── OUT │ │ └── dummy.txt │ └── readme.txt ├── Family Guy PSP │ ├── 10_00.r4s_bookmark.hbk │ ├── 99_99.r4s_bookmark.hbk │ └── R4S file format.txt ├── Favourite Dear │ └── Favorite_Dear_LKF_script.bms ├── FrostyToolsuite │ └── Frosty_Toolsuite_FBMOD_script.bms ├── Full Auto 2 │ └── Full_Auto_2_Battlelines_PAK_script.bms ├── Furi_Tool_2.py ├── GDevelop │ └── GDevelop_EGD_script.bms ├── Gaelic Games Football 2 │ ├── UNPACK.BAT │ └── gaelic_games_football_2_DAT_script.bms ├── Game of Nightmares │ ├── Game_of_Nightmares_script.bms │ └── UNPACK.BAT ├── Gameloft │ ├── Gameloft CustomPak GLA │ │ ├── UNPACK.BAT │ │ └── gameloft_gla_script.bms │ └── Gameloft_BIN_OFF_Text_Tool │ │ ├── .gitignore │ │ ├── logger.py │ │ ├── main.py │ │ └── requirements.txt ├── Gangstar Miami │ └── Gangstar_Miami_Text_Tool.py ├── Genso Manege │ └── Genso_Manege_QPI_QPK_script.bms ├── Giana Sisters Twisted Dreams │ ├── Giana_Sisters_TD_Owltimate_Edition_PAK_Tool.py │ ├── PAK file format.txt │ └── animations.pak_bookmark.hbk ├── Giana Worlds │ ├── Giana_Worlds_LZS_Tool.py │ ├── LZS file format.txt │ └── giana_worlds_lzs_qbms_script.bms ├── Gianas Return │ ├── Gianas_Return_ZDA_Tool.py │ ├── ZDA file format.txt │ └── zda_bookmark.hbk ├── Godot Engine │ └── Godot_Engine_STEX_script.bms ├── Gromada Revenge │ └── Gromada_Revenge_RES_script.bms ├── HEX_INSERTER.py ├── Hamsterball │ ├── DESC file format.txt │ └── Hamsterball v1.0.CT ├── Harry Potter Sorcerers Stone │ └── Potter DAT unpack.py ├── Harry Potter and the Goblet of Fire │ ├── harry_potter_and_the_goblet_of_fire_SDT_script.bms │ └── harry_potter_and_the_goblet_of_fire_SDT_script_2.bms ├── Harry Potter and the Sorcerer's Stone (PS1) │ ├── FINU chunk format.txt │ ├── Harry_Potter_SS_PS1_TEXT_Tool.py │ ├── T1L1M007.WAD_FINU_bookmark.hbk │ ├── T1L1M007.WAD_XSPL_bookmark.hbk │ └── XSPL chunk format.txt ├── Hatch Engine │ ├── Hatch Engine Archive Tool │ │ ├── README.MD │ │ ├── filelists │ │ │ └── sonic_galactic_demo2_filenames.txt │ │ ├── hatch_engine_archive_tool.py │ │ ├── remove_duplicates_and_sort.py │ │ └── requirements.txt │ └── Hatch_Engine_HATCH_script.bms ├── Haven │ ├── Haven DAT file format.txt │ └── Haven_DAT_Tool.py ├── Heart of Darkness │ ├── LVL file format.txt │ ├── MST file format.txt │ └── PAF file format.txt ├── Hellpoint │ └── Hellpoint_DAT_Tool.py ├── Hex pattern search Tool │ ├── Hex_pattern_search_Tool.py │ └── readme.txt ├── Hokuto No Ken │ └── Hokuto_no_ken_BIN_IDX_Tool.py ├── Hollow Knight Silksong │ └── Text Tool │ │ ├── Hollow_Knight_Silksong_Text_Tool.zip │ │ ├── Hollow_Knight_Silksong_Text_Tool_SOURCE │ │ ├── Program.cs │ │ └── TxtEncryption.cs │ │ └── README.md ├── Homefront │ ├── BIN file format.txt │ ├── Homefront_TEXT_Tool.py │ └── coalesced_bookmark.hbk ├── IKS Telltale Tool.py ├── Insane 1nsane │ ├── Insane_IDF_script.bms │ └── UNPACK.BAT ├── Intelligent Games │ └── Intelligent Games RFH RFD Tool │ │ ├── README.md │ │ ├── requirements.txt │ │ └── rfh_rfd_tool.py ├── Iron Man 2 │ └── Iron_Man_2_PKG_script.bms ├── JFK Reloaded │ ├── JFK_Reloaded_WAD_script.bms │ └── UNPACK.BAT ├── Jack Orlando │ └── Jack_Orlando_PBM_Tool.py ├── Just Cause │ └── Just_Cause_1_sarc_script.bms ├── KEX Engine │ └── KEX Engine TARC Tool │ │ ├── README.md │ │ ├── kex_engine_tarc_tool.py │ │ └── requirements.txt ├── Kelly Slater’s Pro Surfer │ └── Kelly_Slaters_Pro_surfer_ST2_Tool.py ├── Kill Switch │ └── Kill_Switch_DAT_Tool.py ├── Kim Possible 2 GBA │ └── Kim_Possible_2_GBA_Tool.py ├── King of Colosseum 2 │ └── King_of_Colosseum_2_Tool.py ├── LEGO Games │ ├── LEGO Marvel Super Heroes │ │ └── Cheats │ │ │ ├── Lego_MSH_cheats_view.png │ │ │ ├── Lego_MSH_cheats_view_V1.1.png │ │ │ ├── [IKS] LEGO_Marvel_Super_Heroes V1.0.CT │ │ │ ├── [IKS] LEGO_Marvel_Super_Heroes V1.1.CT │ │ │ └── readme.txt │ └── LEGO_Games_FT2_script.bms ├── LEGO Loco │ └── Lego_Loco_RFH_RFD_script.bms ├── Legacy of Kain Soul Reaver │ └── DAT file format.txt ├── Legend of Galactic Heroes │ ├── IKM file format.txt │ └── LoGH_IKM_Tool.py ├── Love and Berry Dress Up and Dance │ └── Love_and_Berry_FC_script.bms ├── MAKE_EXE.BAT ├── MT Framework │ └── MT Framework TEX Converter │ │ ├── README.md │ │ ├── mt_framework_tex_converter.py │ │ └── requirements.txt ├── Mace Griffin Bounty Hunter │ └── Mace_Griffin_WAD_script.bms ├── Madoka Magica Pachislot │ ├── Madoka_Magica_Pachislot_OBB_script.bms │ ├── Madoka_Magica_Pachislot_USM_script.bms │ ├── UNPACK_OBB.BAT │ └── UNPACK_USM.BAT ├── Mario's Early Years │ └── Marios_Early_Years_RES_script.bms ├── Marmalade SDK │ └── Marmalade_SDK_S3E_script.bms ├── Martian Gothic Unification │ ├── Martian_Gothic_Unification_script.bms │ └── UNPACK.BAT ├── Mat Hoffman's Pro BMX │ └── PKR file format.txt ├── MediEvil Ressurrection Tools │ ├── MediEvil_Ressurection_LTR_Tool_6.py │ └── Medievil_PSP_gamedata_bin_Tool_1.py ├── Miami Vice The Game │ └── tex_Miami_Vice_The_Game_PSP_tga.py ├── Micro Commandos │ └── Micro_Commandos.CT ├── Mini_Fighters_Tool │ └── Mini_Fighters_Tool_1.py ├── Minority Report (Xbox) │ ├── Minority_Report_XSH_XSD_Tool.py │ └── XSH file format.txt ├── Monsters vs Aliens │ └── Monsters_vs_Aliens_DAT_script.bms ├── Monsters, Inc. Scream Team Training │ └── Monsters_Inc_Scream_Team_training_WAD_script.bms ├── Mr Bean │ └── Mr Bean PC BRA file format.txt ├── Ms. Splosion Man │ └── Ms_Splosion_Man_PPR_script.bms ├── Muppets Treasure Island │ ├── MPL_file_format.txt │ ├── MUP_DATA_file_list.txt │ ├── Muppets_Treasure_Island_MPL_Tool_1.py │ └── mup_data_bookmark.hbk ├── My Riding Stables 2 │ └── My_Riding_Stables_2_DAT_Tool.py ├── NERD Engine │ └── NERD_engine_NPK_VPK_script.bms ├── NHL 2K3 │ └── NHL_2K3_CMN_script.bms ├── NHL Championship 2000 │ └── NHL DAT TOOL │ │ ├── .gitignore │ │ ├── README.MD │ │ ├── main.py │ │ └── requirements.txt ├── Namco All-Stars │ └── Namco All-Stars PAK Tool │ │ ├── README.md │ │ ├── namco_all_stars_pak_tool.py │ │ └── requirements.txt ├── Narbacular Drop │ └── Narbacular_Drop_ORE_script.bms ├── Ninja Shadow of Darkness │ └── Ninja_Shadow_of_Darkness_PAK_script.bms ├── Nowhere (Java game) │ ├── Nowhere_Java_Image_script.bms │ └── Nowhere_Java_Text_script.bms ├── ObsCure 2 │ ├── ObsCure 2 HVP Tools │ │ ├── .gitignore │ │ ├── Obscure_2_hvp_extractor.py │ │ ├── README.md │ │ ├── constants.py │ │ ├── create_custom_hash_list.py │ │ ├── create_hook_list.py │ │ ├── custom_filenames.py │ │ ├── hash_dumps │ │ │ └── .gitkeep │ │ ├── hash_lists │ │ │ ├── .gitkeep │ │ │ ├── obscure_2_custom_ff2_hash_list.txt │ │ │ ├── obscure_2_custom_ff2_not_sure_hash_list.txt │ │ │ ├── obscure_2_custom_ff_hash_list.txt │ │ │ ├── obscure_2_custom_hash_list.txt │ │ │ └── obscure_2_hook_list.txt │ │ ├── initial_stats.txt │ │ ├── objects.py │ │ └── requirements.txt │ ├── ObsCure 2 Hook │ │ ├── Obs_HOOK.cpp │ │ ├── Obs_HOOK.dll │ │ ├── Obs_Hook.png │ │ └── readme.txt │ └── hashcat files │ │ ├── obs_input.hash │ │ └── run_hashcat_for_obscure_2.BAT ├── ObsCure │ └── Obscure_HVP_script.bms ├── Outlaw Golf │ ├── Outlaw_Golf_PAK_Tool.py │ ├── PAK file format.txt │ └── outlaw_golf_PAK_bookmark.hbk ├── Overboard a.k.a. Shipwreckers & G-Police │ ├── OverBoard_Shipwreckers_v1.0.CT │ ├── Overboard Save file format.txt │ ├── Psygnosis RDA file format.txt │ ├── Psygnosis RDI file format.txt │ ├── Psygnosis RDR file format.txt │ ├── Psygnosis RDX file format.txt │ ├── RDT bookmark.hbk │ └── overboard_save_file_bookmark.hbk ├── PGA Tour 97 │ ├── ASC file format.txt │ ├── PGA_Tour_97_Tool.py │ └── VAN file format.txt ├── Pacific Rim The Video Game │ └── Pacific_Rim_DAT_script.bms ├── Parasite Eve 2 │ └── Parasite_Eve_2_CDF_HED_Tool.py ├── Penguin Kelvin │ └── Penguin_Kelvin_PAK_script.bms ├── Port Royale 4 │ └── Port_Royale_4_RES_Tool.py ├── Postal │ └── Postal_SAK_script.bms ├── Prey │ └── Prey_2006_BPAK_script.bms ├── Quake 2 │ ├── Lista.py │ ├── Quake_2_PAK_script.bms │ ├── REpak.py │ └── unpak.py ├── RAR │ └── RAR Password Scanner │ │ ├── passwords_list.txt │ │ ├── rar_password_scanner.py │ │ ├── readme.md │ │ ├── requirements.txt │ │ └── test.rar ├── RE Engine │ ├── RE Engine TEX Finder │ │ └── main.py │ └── RE_Engine_TEX_script.py ├── REGULAR_CHAR_REPLACER.py ├── RTL Ski Jumping │ └── RTL_Ski_Jumping_2002_DIR_DAT_script.bms ├── RUN_FOR_ALL.BAT ├── Raiders Sphere │ └── Raiders_Sphere_PAC_Tool.py ├── ReTiyoruga │ └── ReTiyoruga_DAT_Tool │ │ ├── README.MD │ │ ├── main.py │ │ └── requirements.txt ├── Ready 2 Rumble Boxing │ └── Ready_2_rumble_BIN_script.bms ├── Red Comrades Save The Galaxy │ └── Red_Comrades_Save_The_Galaxy_SFX_script.bms ├── Resident Evil 7 │ ├── RE7_Kitchen_PAK_Tool.py │ └── RE7_PAK_file_format.txt ├── Retro64 │ ├── Retro64 ECO Tool │ │ ├── .gitignore │ │ ├── logger.py │ │ ├── main.py │ │ └── requirements.txt │ ├── Retro64 LEV Tool │ │ ├── .gitignore │ │ ├── Retro64_LEV_Tool.py │ │ ├── logger.py │ │ └── requirements.txt │ └── WarHeads_SE_NDX_WAD_script.bms ├── Robin Hood The Legend of Sherwood │ ├── Robin_Hood_PAK_script.bms │ └── Robin_Hood_RES_script.bms ├── Room Of Prey │ ├── Room Of Prey VFS Tool │ │ ├── .gitignore │ │ ├── README.md │ │ ├── Room_Of_Prey_VFS_Tool.py │ │ ├── hash_lists │ │ │ ├── room_of_prey_1_filelist.txt │ │ │ ├── room_of_prey_2_filelist.txt │ │ │ ├── room_of_prey_3_filelist.txt │ │ │ └── room_of_prey_4_filelist.txt │ │ └── requirements.txt │ └── Room_of_Prey_VFS_script.bms ├── SQLITE3 │ └── Dump_SQLite3_database_script.bms ├── Sacred │ ├── Sacred_Gold_v2-28-ASE_Steam_by_BD.CT │ └── Sacred_PAK_script.bms ├── Satellite Reign │ └── Satellite_Reign_Text_Tool │ │ ├── .gitignore │ │ ├── data │ │ ├── LICENSE │ │ ├── icon_bd.ico │ │ └── readme.txt │ │ ├── logger.py │ │ ├── main.py │ │ ├── make_exe.bat │ │ ├── requirements.txt │ │ └── setup.py ├── Scooby-Doo Whos Watching Who │ └── Scooby_Doo_MST_Tool.py ├── Scooby_Doo_MST_Tool_1.py ├── Scrapland │ ├── Scrapland_cheat_table_V1.0.CT │ ├── Scrapland_cheat_table_V1.1.CT │ └── Scrapland_readme.txt ├── Shiro Games │ └── Shiro_Games_PAK_script.bms ├── ShtyrliTz Discovery of America │ └── ShtyrliTz_Discovery_of_America_RES_script.bms ├── Signature Finder │ └── signature_finder.py ├── Silent Hill Orphan │ ├── BIN file format.txt │ ├── LAN file format.txt │ ├── Silent_Hill_Orphan_BIN_Tool.py │ └── Silent_Hill_Orphan_TEXT_Tool.py ├── Silent Hill Shattered Memories │ ├── ARC file format.txt │ ├── FONT file format.txt │ ├── How_to_edit_font.txt │ ├── How_to_replace_text.txt │ ├── SUB file format.txt │ ├── Silent_Hill_SM_ARC_Tool.py │ ├── Silent_Hill_SM_Char_Replacer.py │ ├── Silent_Hill_SM_Font_Tool.py │ ├── Silent_Hill_SM_OmegaT_Fixer.py │ ├── Silent_Hill_SM_Text_Tool.py │ ├── Silent_Hill_SM_ZLIB_Tool.py │ ├── TXD file format.txt │ └── silent_hill.bms ├── SimCity 3000 │ └── SimCity_3000_Unlimited_IXF_script.bms ├── Simpsons_CHAR_REPLACER_2.py ├── Sin Gold │ └── Sin_Gold_SIN_script.bms ├── Sonic The Hedgehog 2006 │ └── Sonic_2006_ARC_script.bms ├── Sonic Unleashed │ ├── 888 file format.txt │ ├── 999 file format.txt │ ├── N_PACK file format.txt │ ├── N_SUBPACK file format.txt │ ├── PACK file format.txt │ ├── SUBPACK file format.txt │ ├── Sonic_Unleashed_PACK_Tool.py │ ├── dataIGPSprites file format.txt │ └── list_of_supported_Gameloft_games.txt ├── Soulbringer │ └── Soulbringer_b16_bin_Noesis_script.py ├── Spec Ops II Omega Squad │ └── Spec_Ops_II_Omega_Squad_PAK_script.bms ├── SpellForce 2 │ └── SpellForce_2_PAK_script.bms ├── SpellForce │ └── SpellForce_PAK_script.bms ├── Spider-man Enter Electro_Tool_1.py ├── Spiderman The Movie PKG Tool │ ├── PKG FILE FORMAT.txt │ └── Spiderman the movie PKG tool.py ├── Spy Bot Chronicles │ ├── PAK file format.txt │ ├── Spy_bot_Chronicles_Tool.py │ └── spybot.pak_bookmark.hbk ├── Star Stable Online │ ├── Hook_Star_Stable_Online.cpp │ ├── Star_Stable_Online_PTE_TGA_script.bms │ ├── TGA file format.txt │ └── tga_bookmark.hbk ├── Star Wars Jedi Knight Jedi Academy │ └── Star_Wars_Jedi_Knight_Jedi_Academy_BNK_TBL_script.bms ├── Storm Engine │ └── storm_engine_script.py ├── Super Mario Sunshine │ └── Super_Mario_Sunshine_HAR_HIX_script.bms ├── TEMPLATES │ ├── BIN file format.txt │ ├── Hook_Template.cpp │ ├── bat_script_template.bat │ ├── bd_lib.py │ ├── comp_script_template.bms │ ├── quickbms_template_script.bms │ ├── template_argparse.py │ └── template_tool_OLD.py ├── TMNT 2003 │ ├── Cheats │ │ ├── TMNT_2003_passwords.txt │ │ ├── [IKS] TMNT_2003.CT │ │ ├── readme.txt │ │ └── tmnt_2003_cheats_view.png │ ├── TMNT_2003_TXD_Tool.py │ └── TMNT_2003_short_info.txt ├── Tail Concerto │ └── Tail Concerto Tools │ │ ├── README.md │ │ ├── Tail_Concerto_Translation_Tool_main.py │ │ ├── mod_memory.py │ │ ├── requirements.txt │ │ └── translation_memory.py ├── Tekken 5 Java │ ├── Tekken 5 Java Save Tool │ │ ├── otek_1.rms_save_file_format.txt │ │ └── settek_1.rms_save_file_format.txt │ └── Tekken 5 Java Text Tool │ │ ├── TRAD_xxxx.loc_file format.txt │ │ └── Tekken_5_Java_Text_Tool.py ├── The Amazing Spider-Man │ ├── PKZ file format.txt │ └── pkz_dlcmain_bookmark.hbk ├── The End Is Nigh │ └── The_End_Is_Nigh_GPAK_script.bms ├── The Genius of Sappheiros Weekend │ ├── The_Genius_of_Sappheiros_Weekend_PAK_script.bms │ └── UNPACK.BAT ├── The Godfather │ └── TheGodfather_text_Tool.py ├── The Incredible Hulk 2008 │ ├── The_Incredible_Hulk_2008_ARC_script.bms │ └── The_Incredible_Hulk_2008_X360_ARC_script.bms ├── The Longest Journey │ └── The_Longest_Journey_XARC_script.bms ├── The Nations │ ├── The_Nations_CA_script.bms │ └── UNPACK.BAT ├── The Prince and the Coward │ ├── The_Prince_and_the_Coward_PTC_script.bms │ └── UNPACK.BAT ├── The Sims │ └── The_Sims_FAR_script.bms ├── The Stanley Parable │ └── The_Stanley_Parable_DAT_script.bms ├── The Touryst │ ├── localize.loc file format.txt │ ├── localize.loc_bookmark.hbk │ └── localize.loc_tool.py ├── The sims 2 │ ├── The Sims 2 TXFL Extractor │ │ ├── README.MD │ │ ├── requirements.txt │ │ └── txfl_extractor.py │ └── The_Sims_2_ARC_script.bms ├── Thousand arms (PS1) │ ├── MAIN.STM_bookmark.hbk │ ├── STM file format.txt │ └── Thousand_arms_STM_Tool.py ├── Tiger Woods PGA Tour │ └── Tiger_Woods_GCB_script.bms ├── Tiny Thor │ └── Tiny_Thor_TPK_script.bms ├── Tom Clancy's Splinter Cell Conviction Mobile │ └── Tom Clancy's Splinter Cell Conviction Mobile Tool.py ├── Tony Hawk’s Underground (PS2) │ ├── HED file format.txt │ └── Tony_Hawks_Underground_HED_WAD_Tool.py ├── Touch Detective │ ├── Touch_Detective_AQC_script.bms │ └── Touch_Detective_OBB_script.bms ├── Transformers │ ├── ITF_finder.py │ └── fmt_TF2004_ITF.py ├── Treasure Cove │ ├── BNDL file format.txt │ ├── DAT file format.txt │ ├── TLD file format.txt │ ├── Treasure_Cove_Tool.py │ └── sound_bookmark.hbk ├── Tribez │ └── KTX file format.txt ├── Turok Evolution │ └── Turok_Evolution_Gamecube_TRE_script.bms ├── Tzar │ └── Tzar RLE Tool │ │ ├── README.md │ │ ├── requirements.txt │ │ └── tzar_rle_tool.py ├── UJAM Beatmaker │ └── UJAM_Beatmaker_BLOB_Tool.py ├── UNITY_TOOLS │ ├── Multiple_UnityFS_files_in_one_archive_script.bms │ ├── Multiple_XM_files_in_one_RESOURCE_Unity_archive.bms │ ├── Unity_DAT_font_script.bms │ ├── Unity_Text_Mesh_Tool_1.py │ ├── Unity_UnityFS_double_header_script.bms │ └── unity3d_unityFS_script.bms ├── UNREAL_ENGINE_TOOLS │ ├── Extract_OGG_files_from_UEXP_script.bms │ └── swfmovie_script.bms ├── Urban Chaos Riot Response │ └── Urban_Chaos_Riot_Response_SAF_script.bms ├── Urban Chaos │ ├── ALL file format.txt │ ├── LGT file format.txt │ ├── PAL file format.txt │ ├── POO file format.txt │ ├── PRM file format.txt │ ├── SEX file format.txt │ ├── STY file format.txt │ ├── TMA file format.txt │ ├── TXC file format.txt │ ├── UCM file format.txt │ ├── Urban_Chaos_TXC_Tool.py │ └── Urban_Chaos_UCM_Tool.py ├── Value Reader │ ├── example_big_endian.bin │ ├── example_little_endian.bin │ ├── value_reader.cpp │ └── value_reader.exe ├── Valve Games │ └── Valve_WAD3_script.bms ├── Waking Mars │ └── Waking_Mars_Steam_v1.0.CT ├── Warlords_Battlecry │ ├── ARM file format.txt │ ├── Warlords_Battlecry_ARM_Tool.py │ └── key.bin ├── White Night │ ├── TEXT file format.txt │ └── White_Night_TEXT_Tool.py ├── World of Goo 2 │ └── World_of_Goo_2_IMAGE_script.bms ├── Yogurting │ └── Yogurting_IRH_IRD_script.bms ├── Youtubers Life 2 │ └── Text Tool │ │ ├── README.md │ │ ├── Youtubers_Life_2_Text_Tool.zip │ │ └── Youtubers_Life_2_Text_Tool_SOURCE │ │ ├── EncDec.cs │ │ └── Program.cs ├── Yulgang 2 │ ├── THD file format.txt │ └── Yulgang2_THD_TDT_Tool.py ├── Zanzarah The Hidden Portal │ ├── IKS Zanzarah Char Replacer.py │ ├── IKS_PAK_unpacker.py │ ├── IKS_fbs_REpacker.py │ └── IKS_fbs_unpacker.py ├── gzip_script.bms ├── refpack_script.bms └── xor_script.bms ├── README.md ├── ReverseBox_Demo ├── DTEX Parser │ ├── .gitignore │ ├── main.py │ ├── readme.md │ └── requirements.txt ├── GXT Parser │ ├── README.MD │ ├── main.py │ └── requirements.txt ├── RAW Parser │ ├── .gitignore │ ├── README.md │ ├── main.py │ └── requirements.txt ├── Raw Image Edit - Example 1 │ ├── files │ │ ├── 001cee1b.ctxr │ │ ├── 001cee1b.dds │ │ └── 001cee1b_2.ctxr │ ├── raw_image_edit_example1.py │ └── requirements.txt ├── Raw Image Edit - Example 2 (indexed image) │ ├── files │ │ ├── merlin_anotherfile.bin │ │ ├── merlin_anotherfile.pal │ │ ├── merlin_anotherfile2.bin │ │ ├── merlin_anotherfile2.pal │ │ └── merlin_image.dds │ ├── raw_image_edit_example2.py │ └── requirements.txt └── TPL Parser │ ├── .gitignore │ ├── README.MD │ ├── main.py │ └── requirements.txt └── auto_commit.BAT /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /Binary Templates/EA_FONT_SFN_FFN_XFN_MFN.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Binary Templates/EA_FONT_SFN_FFN_XFN_MFN.bt -------------------------------------------------------------------------------- /Binary Templates/Favorite_Dear_LKF_Archive.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Binary Templates/Favorite_Dear_LKF_Archive.bt -------------------------------------------------------------------------------- /Binary Templates/GTX_WII_U_Image.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Binary Templates/GTX_WII_U_Image.bt -------------------------------------------------------------------------------- /Binary Templates/Mario_Kart_DS_NSBTX.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Binary Templates/Mario_Kart_DS_NSBTX.bt -------------------------------------------------------------------------------- /Binary Templates/Monsters_Inc_Scream_Team_Training_WAD_Archive.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Binary Templates/Monsters_Inc_Scream_Team_Training_WAD_Archive.bt -------------------------------------------------------------------------------- /Binary Templates/TIM2_TM2_PS2_Image_binary_template.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Binary Templates/TIM2_TM2_PS2_Image_binary_template.bt -------------------------------------------------------------------------------- /Binary Templates/TMNT_2003_AFS_DAT_Archive.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Binary Templates/TMNT_2003_AFS_DAT_Archive.bt -------------------------------------------------------------------------------- /Compressed Samples Checker/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Compressed Samples Checker/README.MD -------------------------------------------------------------------------------- /Compressed Samples Checker/compressed_samples_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Compressed Samples Checker/compressed_samples_checker.py -------------------------------------------------------------------------------- /Compressed Samples Checker/images_samples_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Compressed Samples Checker/images_samples_checker.py -------------------------------------------------------------------------------- /Compressed Samples Checker/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox>=0.17.2 2 | rawutil 3 | pillow -------------------------------------------------------------------------------- /Frida Scripts/Allegro Engine/allegro_DAT_frida_hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/Allegro Engine/allegro_DAT_frida_hook.js -------------------------------------------------------------------------------- /Frida Scripts/Good Pizza Great Pizza/OLD_frida_hook_init_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/Good Pizza Great Pizza/OLD_frida_hook_init_script.py -------------------------------------------------------------------------------- /Frida Scripts/Good Pizza Great Pizza/frida_hook_init_script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/Good Pizza Great Pizza/frida_hook_init_script.bat -------------------------------------------------------------------------------- /Frida Scripts/Good Pizza Great Pizza/good_pizza_frida_hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/Good Pizza Great Pizza/good_pizza_frida_hook.js -------------------------------------------------------------------------------- /Frida Scripts/Good Pizza Great Pizza/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/Good Pizza Great Pizza/readme.md -------------------------------------------------------------------------------- /Frida Scripts/Good Pizza Great Pizza/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/Good Pizza Great Pizza/requirements.txt -------------------------------------------------------------------------------- /Frida Scripts/Hatch Engine/hatch_engine_frida_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/Hatch Engine/hatch_engine_frida_script.js -------------------------------------------------------------------------------- /Frida Scripts/ObsCure 2/obscure2_frida_hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/ObsCure 2/obscure2_frida_hook.js -------------------------------------------------------------------------------- /Frida Scripts/ObsCure 2/run_frida_for_obscure2.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/ObsCure 2/run_frida_for_obscure2.BAT -------------------------------------------------------------------------------- /Frida Scripts/co.kr.eamobile.roomofprey3/room_of_prey_frida_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/co.kr.eamobile.roomofprey3/room_of_prey_frida_script.js -------------------------------------------------------------------------------- /Frida Scripts/cocos2d/cocos2d_pvr_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/cocos2d/cocos2d_pvr_script.js -------------------------------------------------------------------------------- /Frida Scripts/cocos2d/cocos2d_xxtea_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/cocos2d/cocos2d_xxtea_script.js -------------------------------------------------------------------------------- /Frida Scripts/jp.co.cybird.android.conanescape01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/jp.co.cybird.android.conanescape01/README.md -------------------------------------------------------------------------------- /Frida Scripts/jp.co.cybird.android.conanescape01/extra_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/jp.co.cybird.android.conanescape01/extra_code.js -------------------------------------------------------------------------------- /Frida Scripts/jp.co.cybird.android.conanescape01/frida_android_conanescape01_hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/jp.co.cybird.android.conanescape01/frida_android_conanescape01_hook.js -------------------------------------------------------------------------------- /Frida Scripts/jp.co.cybird.android.conanescape01/frida_android_conanescape01_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/Frida Scripts/jp.co.cybird.android.conanescape01/frida_android_conanescape01_hook.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/LICENSE -------------------------------------------------------------------------------- /NEW Tools/10tons games/10tons_XML_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/10tons games/10tons_XML_Tool.py -------------------------------------------------------------------------------- /NEW Tools/7 Days/7_Days_SPK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/7 Days/7_Days_SPK_script.bms -------------------------------------------------------------------------------- /NEW Tools/AFK Arena/AFK_Arena_LZAP_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/AFK Arena/AFK_Arena_LZAP_script.bms -------------------------------------------------------------------------------- /NEW Tools/Abbey Games/Abbey_Games_TIM_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Abbey Games/Abbey_Games_TIM_script.bms -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/.gitignore: -------------------------------------------------------------------------------- 1 | log* 2 | .idea/ -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/acclaim_tre_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/acclaim_tre_tool.py -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames.txt -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames2.txt -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames3.txt -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames4.txt -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/turok_evolution_filenames5.txt -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/vexx_filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/vexx_filenames.txt -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/vexx_filenames2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Acclaim/Acclaim_TRE_Tool/filenames/vexx_filenames2.txt -------------------------------------------------------------------------------- /NEW Tools/Acclaim/Acclaim_TRE_Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.11.8 -------------------------------------------------------------------------------- /NEW Tools/Action Hero 3D Wild Dog/action_hero_3d_wild_dog_res_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Action Hero 3D Wild Dog/action_hero_3d_wild_dog_res_script.bms -------------------------------------------------------------------------------- /NEW Tools/Actua Soccer/Actua_Soccer_BM_PAL_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Actua Soccer/Actua_Soccer_BM_PAL_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Adventure Time Explore The Dungeon/Adventure PAK REpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Adventure Time Explore The Dungeon/Adventure PAK REpacker.py -------------------------------------------------------------------------------- /NEW Tools/Adventure Time Explore The Dungeon/Adventure PAK unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Adventure Time Explore The Dungeon/Adventure PAK unpacker.py -------------------------------------------------------------------------------- /NEW Tools/Akuji the Demon/Akuji_the_Demon_QDA_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Akuji the Demon/Akuji_the_Demon_QDA_script.bms -------------------------------------------------------------------------------- /NEW Tools/Allegro/Allegro_DAT_article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Allegro/Allegro_DAT_article.txt -------------------------------------------------------------------------------- /NEW Tools/Antecrypt/Antecrypt_SGR_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Antecrypt/Antecrypt_SGR_script.bms -------------------------------------------------------------------------------- /NEW Tools/Arc System Works/PSARC_FPAC_splitter.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Arc System Works/PSARC_FPAC_splitter.bms -------------------------------------------------------------------------------- /NEW Tools/Archangel/Archangel_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Archangel/Archangel_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/.vgmstream.txth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/.vgmstream.txth -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/Asobo_DPC_DPS_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/Asobo_DPC_DPS_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/Asobo_SDX_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/Asobo_SDX_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/CT_Special_Forces_PC_DPC_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/CT_Special_Forces_PC_DPC_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/CT_Special_Forces_fonts_dpc.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/CT_Special_Forces_fonts_dpc.hbk -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/Garfield_2_PC_DPC_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/Garfield_2_PC_DPC_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/Garfield_2_PC_DPC_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/Garfield_2_PC_DPC_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/Ratatouille_PS2_DPS_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/Ratatouille_PS2_DPS_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/Sitting_Ducks_PS2_DPS_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/Sitting_Ducks_PS2_DPS_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Asobo Studio DPC DPS Research/Sitting_Ducks_PS2_MENU_DPS_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asobo Studio DPC DPS Research/Sitting_Ducks_PS2_MENU_DPS_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Asterix Gallic War/Asterix_The_Gallic_War_DAT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Asterix Gallic War/Asterix_The_Gallic_War_DAT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Attack on Titan Wings of Freedom/Aot_Wing_of_freedom_DAT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Attack on Titan Wings of Freedom/Aot_Wing_of_freedom_DAT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Avernum_Tool_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Avernum_Tool_1.py -------------------------------------------------------------------------------- /NEW Tools/BD HEX DEC CONVERTER/BD_HEX_DEC_CONVERTER.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD HEX DEC CONVERTER/BD_HEX_DEC_CONVERTER.pyw -------------------------------------------------------------------------------- /NEW Tools/BD HEX DEC CONVERTER/RUN.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD HEX DEC CONVERTER/RUN.BAT -------------------------------------------------------------------------------- /NEW Tools/BD LBA FINDER/BD_LBA_Finder.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD LBA FINDER/BD_LBA_Finder.pyw -------------------------------------------------------------------------------- /NEW Tools/BD LBA FINDER/LBA_FINDER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD LBA FINDER/LBA_FINDER.py -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker.vcxproj -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker.vcxproj.filters -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker.vcxproj.user -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/Hash_cracker_main.cpp -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/hash_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/hash_func.h -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/logs.txt -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/pch.cpp -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/pch.h -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.Build.CppClean.log -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.log -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.pch -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/Hash_cracker.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/Hash_cracker.lastbuildstate -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker_main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/Hash_cracker_main.obj -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/pch.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/pch.obj -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.Build.CppClean.log -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.log -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.pch -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/Hash_cracker.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/Hash_cracker.lastbuildstate -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/Hash_cracker.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/Hash_cracker.write.1u.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.delete.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.delete.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker_main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/Hash_cracker_main.obj -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/pch.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/pch.obj -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hash_cracker_sol.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hash_cracker_sol.sln -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hercules_files/herchash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hercules_files/herchash.txt -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/Hercules_files/unknown_hash_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/Hercules_files/unknown_hash_list.txt -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Debug/Hash_cracker.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Debug/Hash_cracker.ilk -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Debug/Hash_cracker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Debug/Hash_cracker.pdb -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Debug/logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Debug/logs.txt -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.exe -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.iobj -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.ipdb -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Release/Hash_cracker.pdb -------------------------------------------------------------------------------- /NEW Tools/BD_hash_cracker/x64/Release/logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_hash_cracker/x64/Release/logs.txt -------------------------------------------------------------------------------- /NEW Tools/BD_line_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BD_line_counter.py -------------------------------------------------------------------------------- /NEW Tools/BINARY_&_MEMORY_SEARCH/BINARY_&_MEMORY_SEARCH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BINARY_&_MEMORY_SEARCH/BINARY_&_MEMORY_SEARCH.py -------------------------------------------------------------------------------- /NEW Tools/BINARY_&_MEMORY_SEARCH/Examples/Pattern1_example.bin: -------------------------------------------------------------------------------- 1 | ABC -------------------------------------------------------------------------------- /NEW Tools/BINARY_&_MEMORY_SEARCH/Examples/Search1_example.bin: -------------------------------------------------------------------------------- 1 | sqG'g$ -------------------------------------------------------------------------------- /NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TASKLIST_script.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TASKLIST_script.BAT -------------------------------------------------------------------------------- /NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TOTAL_DUMP_script.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TOTAL_DUMP_script.BAT -------------------------------------------------------------------------------- /NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TotalDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TotalDump.cpp -------------------------------------------------------------------------------- /NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TotalDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BINARY_&_MEMORY_SEARCH/TotalDump/TotalDump.exe -------------------------------------------------------------------------------- /NEW Tools/BLOOD+ One Night Kiss/Blood_One_Night_Kiss_BIN_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/BLOOD+ One Night Kiss/Blood_One_Night_Kiss_BIN_script.bms -------------------------------------------------------------------------------- /NEW Tools/BLOOD+ One Night Kiss/UNPACK.BAT: -------------------------------------------------------------------------------- 1 | quickbms.exe -o Blood_One_Night_Kiss_BIN_script.bms RGDATA.BIN rgdata_out 2 | pause -------------------------------------------------------------------------------- /NEW Tools/Behemoth/Behemoth_BREC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Behemoth/Behemoth_BREC_script.bms -------------------------------------------------------------------------------- /NEW Tools/Beyond Good & Evil/Beyond_Good_and_Evil_PAK_BPAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Beyond Good & Evil/Beyond_Good_and_Evil_PAK_BPAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Binding of Isaac/IKS_binding_of_isaac_REpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Binding of Isaac/IKS_binding_of_isaac_REpack.py -------------------------------------------------------------------------------- /NEW Tools/Binding of Isaac/IKS_binding_of_isaac_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Binding of Isaac/IKS_binding_of_isaac_unpack.py -------------------------------------------------------------------------------- /NEW Tools/Blobby Volley/Blobby_Volley_PAK_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Blobby Volley/Blobby_Volley_PAK_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Bomberman Wars/Bomberman_Wars_BIN_IDX_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Bomberman Wars/Bomberman_Wars_BIN_IDX_script.bms -------------------------------------------------------------------------------- /NEW Tools/Broken Sword/Broken_sword_DAT_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Broken Sword/Broken_sword_DAT_script.bms -------------------------------------------------------------------------------- /NEW Tools/Bully Anniversary Edition/Bully_XML_Tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Bully Anniversary Edition/Bully_XML_Tool.cpp -------------------------------------------------------------------------------- /NEW Tools/Bully Anniversary Edition/Bully_XML_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Bully Anniversary Edition/Bully_XML_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Bust a Groove/Bust_a_Groove_DFS_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Bust a Groove/Bust_a_Groove_DFS_script.bms -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_Final_Resistance_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_Final_Resistance_Tool.py -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/c12_ntsc_saves_part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/c12_ntsc_saves_part1.png -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/c12_ntsc_saves_part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/c12_ntsc_saves_part2.png -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/c12_ntsc_saves_part3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/c12_ntsc_saves_part3.png -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/epsxe000.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/epsxe000.mcr -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/epsxe000_part3.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/epsxe000_part3.mcr -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/epsxe001.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_NTSC_SCUS_94666_SAVES/epsxe001.mcr -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_PAL_SCES_03364_SAVES/epsxe000.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_PAL_SCES_03364_SAVES/epsxe000.mcr -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/C12_PAL_SCES_03364_SAVES/epsxe001.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/C12_PAL_SCES_03364_SAVES/epsxe001.mcr -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_SAVES/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_SAVES/readme.txt -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_codes.txt -------------------------------------------------------------------------------- /NEW Tools/C12 Final Resistance/C12_short_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/C12 Final Resistance/C12_short_info.txt -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Audio/01_SDX.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Audio/01_SDX.hbk -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Audio/CT_SDX_Audio_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Audio/CT_SDX_Audio_description.txt -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Cheats/CT_Cheats_Hotkeys_List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Cheats/CT_Cheats_Hotkeys_List.txt -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Cheats/CT_cheats_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Cheats/CT_cheats_view.png -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Cheats/[IKS] CT Special Forces Cheat Table.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Cheats/[IKS] CT Special Forces Cheat Table.CT -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Cheats/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Cheats/readme.txt -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Save Editor files/BLOCK1_SAV.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Save Editor files/BLOCK1_SAV.hbk -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Save Editor files/CT_SF_Save_File_Format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Save Editor files/CT_SF_Save_File_Format.txt -------------------------------------------------------------------------------- /NEW Tools/CT Special Forces Fire for effect/Save Editor files/CT_Special_Forces_FFE_checksum_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/CT Special Forces Fire for effect/Save Editor files/CT_Special_Forces_FFE_checksum_fixer.py -------------------------------------------------------------------------------- /NEW Tools/Cars 2/Cars_2_The_Video_Game_PACK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Cars 2/Cars_2_The_Video_Game_PACK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Cat Daddy Tycoons/Cat_Daddy_Tycoons_BIN_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Cat Daddy Tycoons/Cat_Daddy_Tycoons_BIN_script.bms -------------------------------------------------------------------------------- /NEW Tools/Cat Daddy Tycoons/UNPACK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Cat Daddy Tycoons/UNPACK.BAT -------------------------------------------------------------------------------- /NEW Tools/Catwoman PC/Catwoman_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Catwoman PC/Catwoman_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Catwoman PC/catwoman_01.vol_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Catwoman PC/catwoman_01.vol_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Catwoman PC/catwoman_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Catwoman PC/catwoman_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Cause of Death/Cause_of_Death_EXP_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Cause of Death/Cause_of_Death_EXP_script.bms -------------------------------------------------------------------------------- /NEW Tools/City Interactive Games/City_Interactive_DPK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/City Interactive Games/City_Interactive_DPK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Cocos2d/cocos2d_CCZp_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Cocos2d/cocos2d_CCZp_script.bms -------------------------------------------------------------------------------- /NEW Tools/Code Lyoko - Quest For Infinity/Code_Lyoko_GRP_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Code Lyoko - Quest For Infinity/Code_Lyoko_GRP_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Code Lyoko - Quest For Infinity/GRP file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Code Lyoko - Quest For Infinity/GRP file format.txt -------------------------------------------------------------------------------- /NEW Tools/Code Lyoko - Quest For Infinity/MUSIC.GRP_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Code Lyoko - Quest For Infinity/MUSIC.GRP_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Commandos/Commandos_DIR_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Commandos/Commandos_DIR_script.bms -------------------------------------------------------------------------------- /NEW Tools/Conflict Desert Storm/UNPACK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Conflict Desert Storm/UNPACK.BAT -------------------------------------------------------------------------------- /NEW Tools/Conflict Desert Storm/conflict_desert_storm_dat_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Conflict Desert Storm/conflict_desert_storm_dat_script.bms -------------------------------------------------------------------------------- /NEW Tools/Corrosion Cold Winter Waiting/IKS_corrosion_REpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Corrosion Cold Winter Waiting/IKS_corrosion_REpack.py -------------------------------------------------------------------------------- /NEW Tools/Corrosion Cold Winter Waiting/IKS_corrosion_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Corrosion Cold Winter Waiting/IKS_corrosion_unpack.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/01_Wumpas_+100_cheat/Crash.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/01_Wumpas_+100_cheat/Crash.class -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/01_Wumpas_+100_cheat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/01_Wumpas_+100_cheat/readme.md -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/Crash Bandicoot.jad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/Crash Bandicoot.jad -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/Crash_Mutant_Island_Immortality_Cheat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Cheats/Crash_Mutant_Island_Immortality_Cheat.txt -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/Crash_font_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/Crash_font_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/crash_f_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/crash_f_icon.ico -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_01.png -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_02.png -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_03.png -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/img/crash_font_tool_04.png -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/App.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Custom.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Dialogs.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Filtering.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Plot.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Prefs.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Tables.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Tables_IO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Tables_IO.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/Testing.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Font Tool/tkintertable/__init__.py -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Text Tool/crash_t_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Text Tool/crash_t_icon.ico -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Text Tool/img/crash_text_tool_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Crash Mutant Island Text Tool/img/crash_text_tool_01.png -------------------------------------------------------------------------------- /NEW Tools/Crash Bandicoot Mutant Island 2008/Sound_files_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Bandicoot Mutant Island 2008/Sound_files_info.txt -------------------------------------------------------------------------------- /NEW Tools/Crash Mind Over Mutant PSP/Crash_Mind_Over_Mutant_RCF_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Mind Over Mutant PSP/Crash_Mind_Over_Mutant_RCF_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Crash Mind Over Mutant PSP/RCF file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Mind Over Mutant PSP/RCF file format.txt -------------------------------------------------------------------------------- /NEW Tools/Crash Mind Over Mutant PSP/default.rcf_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Mind Over Mutant PSP/default.rcf_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Crash Team Racing/CTR_CHAR_REPLACER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crash Team Racing/CTR_CHAR_REPLACER.py -------------------------------------------------------------------------------- /NEW Tools/Crazy Ball/BOD file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crazy Ball/BOD file format.txt -------------------------------------------------------------------------------- /NEW Tools/Crazy Ball/Crazy_Ball_BOD_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crazy Ball/Crazy_Ball_BOD_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Crazy Taxi/Crazy_Taxi_JPK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crazy Taxi/Crazy_Taxi_JPK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Crazy Taxi/JPK Tool/Cazy_Taxi_JPK_File_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crazy Taxi/JPK Tool/Cazy_Taxi_JPK_File_format.txt -------------------------------------------------------------------------------- /NEW Tools/Crazy Taxi/JPK Tool/Crazy_Taxi_JPK_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crazy Taxi/JPK Tool/Crazy_Taxi_JPK_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Crazy Taxi/Other files/Crazy_Taxi_Other_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crazy Taxi/Other files/Crazy_Taxi_Other_files.txt -------------------------------------------------------------------------------- /NEW Tools/Crime Cities/Crime_Cities_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Crime Cities/Crime_Cities_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Critical Velocity/Critical_Velocity_PAC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Critical Velocity/Critical_Velocity_PAC_script.bms -------------------------------------------------------------------------------- /NEW Tools/Davilex Games/davilex_games.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Davilex Games/davilex_games.bms -------------------------------------------------------------------------------- /NEW Tools/Dead or Alive 2 (PS2)/DOA2_Text_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dead or Alive 2 (PS2)/DOA2_Text_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Dead or Alive 2 (PS2)/strings_eng_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dead or Alive 2 (PS2)/strings_eng_data.txt -------------------------------------------------------------------------------- /NEW Tools/Deadly Premonition/Deadly_Premonition_XPC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Deadly Premonition/Deadly_Premonition_XPC_script.bms -------------------------------------------------------------------------------- /NEW Tools/Deep Silver Volition/Deep_Silver_Volition_VPP_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Deep Silver Volition/Deep_Silver_Volition_VPP_script.bms -------------------------------------------------------------------------------- /NEW Tools/Def Jam Fight for NY/Def_Jam_Fight_for_NY_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Def Jam Fight for NY/Def_Jam_Fight_for_NY_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Dexter's Laboratory Mandarks Lab/Dexter Bin Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dexter's Laboratory Mandarks Lab/Dexter Bin Tool.py -------------------------------------------------------------------------------- /NEW Tools/Digimon FS.BIN unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Digimon FS.BIN unpacker.py -------------------------------------------------------------------------------- /NEW Tools/Digimon Rumble Arena 2/RES file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Digimon Rumble Arena 2/RES file format.txt -------------------------------------------------------------------------------- /NEW Tools/Dink Smallwood HD/01_CREATE_ALL_FONTS.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dink Smallwood HD/01_CREATE_ALL_FONTS.BAT -------------------------------------------------------------------------------- /NEW Tools/Dink Smallwood HD/01_DECOMPRESS_ALL.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dink Smallwood HD/01_DECOMPRESS_ALL.BAT -------------------------------------------------------------------------------- /NEW Tools/Dink Smallwood HD/Dink_Smallwood_HD_Text_Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dink Smallwood HD/Dink_Smallwood_HD_Text_Manager.py -------------------------------------------------------------------------------- /NEW Tools/Dink Smallwood HD/IN/dummy.zz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/Dink Smallwood HD/OUT/dummy.zz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/Dink Smallwood HD/dink_smallwood_hd_text_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dink Smallwood HD/dink_smallwood_hd_text_tool.cpp -------------------------------------------------------------------------------- /NEW Tools/Dink Smallwood HD/dinkhd_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dink Smallwood HD/dinkhd_license.txt -------------------------------------------------------------------------------- /NEW Tools/Disney's Hercules PC/Cheats/Hercules_cheats.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | http://fearlessrevolution.com/viewtopic.php?t=8920 -------------------------------------------------------------------------------- /NEW Tools/Disney's Hercules PC/Cheats/Hercules_passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Disney's Hercules PC/Cheats/Hercules_passwords.txt -------------------------------------------------------------------------------- /NEW Tools/Disney's Hercules PC/Hercules_PC_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Disney's Hercules PC/Hercules_PC_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Disney's Hercules PC/Hercules_short_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Disney's Hercules PC/Hercules_short_info.txt -------------------------------------------------------------------------------- /NEW Tools/Disney's Hercules PC/herchash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Disney's Hercules PC/herchash.txt -------------------------------------------------------------------------------- /NEW Tools/Drakan/Drakan RRC file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Drakan/Drakan RRC file format.txt -------------------------------------------------------------------------------- /NEW Tools/Drakan/Drakan_RRC_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Drakan/Drakan_RRC_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Drakan/Drakan_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Drakan/Drakan_test.cpp -------------------------------------------------------------------------------- /NEW Tools/Dungeon Siege III/Dungeon_siege_III_OAF_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dungeon Siege III/Dungeon_siege_III_OAF_script.bms -------------------------------------------------------------------------------- /NEW Tools/Dynasty Warriors 8/Dynasty_Warriors_8_BIN_IDX_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Dynasty Warriors 8/Dynasty_Warriors_8_BIN_IDX_Tool.py -------------------------------------------------------------------------------- /NEW Tools/E-racer/DecompRA_auto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/E-racer/DecompRA_auto.bat -------------------------------------------------------------------------------- /NEW Tools/E-racer/E-Racer_Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/E-racer/E-Racer_Hook.cpp -------------------------------------------------------------------------------- /NEW Tools/E-racer/E-Racer_XFS_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/E-racer/E-Racer_XFS_Tool.py -------------------------------------------------------------------------------- /NEW Tools/E-racer/XFS file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/E-racer/XFS file format.txt -------------------------------------------------------------------------------- /NEW Tools/E-racer/eracer_hash_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/E-racer/eracer_hash_dump.txt -------------------------------------------------------------------------------- /NEW Tools/E-racer/hash_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/E-racer/hash_func.py -------------------------------------------------------------------------------- /NEW Tools/EA Games/EA_Games_ARC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/EA Games/EA_Games_ARC_script.bms -------------------------------------------------------------------------------- /NEW Tools/EA Games/EA_Games_BIG_VIV_BIGF_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/EA Games/EA_Games_BIG_VIV_BIGF_script.bms -------------------------------------------------------------------------------- /NEW Tools/EA Games/EA_Games_BIG_VIV_C0FB_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/EA Games/EA_Games_BIG_VIV_C0FB_script.bms -------------------------------------------------------------------------------- /NEW Tools/EA Games/EA_Games_BIG_VIV_EB_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/EA Games/EA_Games_BIG_VIV_EB_script.bms -------------------------------------------------------------------------------- /NEW Tools/EA Games/EA_Games_MUS_Extractor.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/EA Games/EA_Games_MUS_Extractor.bms -------------------------------------------------------------------------------- /NEW Tools/Elasto Mania/Elma RES Tool/elma_res_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Elasto Mania/Elma RES Tool/elma_res_tool.py -------------------------------------------------------------------------------- /NEW Tools/Elasto Mania/Elma RES Tool/key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Elasto Mania/Elma RES Tool/key.bin -------------------------------------------------------------------------------- /NEW Tools/Elasto Mania/LGR file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Elasto Mania/LGR file format.txt -------------------------------------------------------------------------------- /NEW Tools/Elasto Mania/RES file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Elasto Mania/RES file format.txt -------------------------------------------------------------------------------- /NEW Tools/Eldritch/Eldritch_CPK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Eldritch/Eldritch_CPK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Executioners/Executioners_INTRO.VOL_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Executioners/Executioners_INTRO.VOL_script.bms -------------------------------------------------------------------------------- /NEW Tools/Executioners/Executioners_RLE_Tool/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Executioners/Executioners_RLE_Tool/README.MD -------------------------------------------------------------------------------- /NEW Tools/Executioners/Executioners_RLE_Tool/executioners_rle_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Executioners/Executioners_RLE_Tool/executioners_rle_tool.py -------------------------------------------------------------------------------- /NEW Tools/Executioners/Executioners_RLE_Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.24.0 2 | rawutil 3 | pillow -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/face1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/face1.png -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/face1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/face1.py -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/face3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/face3.png -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/face3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/face3.py -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/ko_msel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/ko_msel_bg.png -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/ko_msel_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/ko_msel_bg.py -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS.png -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS.py -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS2.png -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/ko_title_TIS2.py -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/sot_falcon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/sot_falcon32.png -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/data/sot_falcon32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/data/sot_falcon32.py -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/F-Zero X/TEX Tool/main.py -------------------------------------------------------------------------------- /NEW Tools/F-Zero X/TEX Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox>=0.12.6 2 | pillow 3 | rawutil -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/FSB_BATCH_GENERATOR.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/FSB_BATCH_GENERATOR.BAT -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/IN/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer.exe -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/.vs/Line_Replacer/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/.vs/Line_Replacer/v15/.suo -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/.vs/Line_Replacer/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/.vs/Line_Replacer/v15/Browse.VC.db -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/.vs/Line_Replacer/v15/ipch/b7e9f79389023021.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/.vs/Line_Replacer/v15/ipch/b7e9f79389023021.ipch -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer.sln -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/.vs/Line_Replacer/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/.vs/Line_Replacer/v15/.suo -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/.vs/Line_Replacer/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/.vs/Line_Replacer/v15/Browse.VC.db -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.cpp -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.vcxproj -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.vcxproj.filters -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/Line_Replacer.vcxproj.user -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/pch.cpp -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/pch.h -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/Line_Replacer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/Line_Replacer.log -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/Line_Replacer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/Line_Replacer.obj -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/Line_Replacer.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/Line_Replacer.pch -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/pch.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/pch.obj -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/vc141.idb -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/Line_Replacer/x64/Debug/vc141.pdb -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/Line_Replacer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/Line_Replacer.exe -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/Line_Replacer.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/Line_Replacer.ilk -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/Line_Replacer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/Line_Replacer.pdb -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/TEST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/Line_Replacer/x64/Debug/TEST.TXT -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/NOWY_5.fdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/NOWY_5.fdp -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/OUT/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/FSB Batch Generator/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FSB Batch Generator/readme.txt -------------------------------------------------------------------------------- /NEW Tools/Family Guy PSP/10_00.r4s_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Family Guy PSP/10_00.r4s_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Family Guy PSP/99_99.r4s_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Family Guy PSP/99_99.r4s_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Family Guy PSP/R4S file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Family Guy PSP/R4S file format.txt -------------------------------------------------------------------------------- /NEW Tools/Favourite Dear/Favorite_Dear_LKF_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Favourite Dear/Favorite_Dear_LKF_script.bms -------------------------------------------------------------------------------- /NEW Tools/FrostyToolsuite/Frosty_Toolsuite_FBMOD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/FrostyToolsuite/Frosty_Toolsuite_FBMOD_script.bms -------------------------------------------------------------------------------- /NEW Tools/Full Auto 2/Full_Auto_2_Battlelines_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Full Auto 2/Full_Auto_2_Battlelines_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Furi_Tool_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Furi_Tool_2.py -------------------------------------------------------------------------------- /NEW Tools/GDevelop/GDevelop_EGD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/GDevelop/GDevelop_EGD_script.bms -------------------------------------------------------------------------------- /NEW Tools/Gaelic Games Football 2/UNPACK.BAT: -------------------------------------------------------------------------------- 1 | quickbms.exe gaelic_games_football_2_DAT_script.bms DAY_DRY.DAT day_dry_out 2 | pause -------------------------------------------------------------------------------- /NEW Tools/Gaelic Games Football 2/gaelic_games_football_2_DAT_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gaelic Games Football 2/gaelic_games_football_2_DAT_script.bms -------------------------------------------------------------------------------- /NEW Tools/Game of Nightmares/Game_of_Nightmares_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Game of Nightmares/Game_of_Nightmares_script.bms -------------------------------------------------------------------------------- /NEW Tools/Game of Nightmares/UNPACK.BAT: -------------------------------------------------------------------------------- 1 | quickbms.exe Game_of_Nightmares_script.bms nw_0003 out1 2 | pause -------------------------------------------------------------------------------- /NEW Tools/Gameloft/Gameloft CustomPak GLA/UNPACK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gameloft/Gameloft CustomPak GLA/UNPACK.BAT -------------------------------------------------------------------------------- /NEW Tools/Gameloft/Gameloft CustomPak GLA/gameloft_gla_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gameloft/Gameloft CustomPak GLA/gameloft_gla_script.bms -------------------------------------------------------------------------------- /NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/.gitignore -------------------------------------------------------------------------------- /NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/logger.py -------------------------------------------------------------------------------- /NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/main.py -------------------------------------------------------------------------------- /NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gameloft/Gameloft_BIN_OFF_Text_Tool/requirements.txt -------------------------------------------------------------------------------- /NEW Tools/Gangstar Miami/Gangstar_Miami_Text_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gangstar Miami/Gangstar_Miami_Text_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Genso Manege/Genso_Manege_QPI_QPK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Genso Manege/Genso_Manege_QPI_QPK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Giana Sisters Twisted Dreams/Giana_Sisters_TD_Owltimate_Edition_PAK_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Giana Sisters Twisted Dreams/Giana_Sisters_TD_Owltimate_Edition_PAK_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Giana Sisters Twisted Dreams/PAK file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Giana Sisters Twisted Dreams/PAK file format.txt -------------------------------------------------------------------------------- /NEW Tools/Giana Sisters Twisted Dreams/animations.pak_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Giana Sisters Twisted Dreams/animations.pak_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Giana Worlds/Giana_Worlds_LZS_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Giana Worlds/Giana_Worlds_LZS_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Giana Worlds/LZS file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Giana Worlds/LZS file format.txt -------------------------------------------------------------------------------- /NEW Tools/Giana Worlds/giana_worlds_lzs_qbms_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Giana Worlds/giana_worlds_lzs_qbms_script.bms -------------------------------------------------------------------------------- /NEW Tools/Gianas Return/Gianas_Return_ZDA_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gianas Return/Gianas_Return_ZDA_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Gianas Return/ZDA file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gianas Return/ZDA file format.txt -------------------------------------------------------------------------------- /NEW Tools/Gianas Return/zda_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gianas Return/zda_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Godot Engine/Godot_Engine_STEX_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Godot Engine/Godot_Engine_STEX_script.bms -------------------------------------------------------------------------------- /NEW Tools/Gromada Revenge/Gromada_Revenge_RES_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Gromada Revenge/Gromada_Revenge_RES_script.bms -------------------------------------------------------------------------------- /NEW Tools/HEX_INSERTER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/HEX_INSERTER.py -------------------------------------------------------------------------------- /NEW Tools/Hamsterball/DESC file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hamsterball/DESC file format.txt -------------------------------------------------------------------------------- /NEW Tools/Hamsterball/Hamsterball v1.0.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hamsterball/Hamsterball v1.0.CT -------------------------------------------------------------------------------- /NEW Tools/Harry Potter Sorcerers Stone/Potter DAT unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter Sorcerers Stone/Potter DAT unpack.py -------------------------------------------------------------------------------- /NEW Tools/Harry Potter and the Goblet of Fire/harry_potter_and_the_goblet_of_fire_SDT_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter and the Goblet of Fire/harry_potter_and_the_goblet_of_fire_SDT_script.bms -------------------------------------------------------------------------------- /NEW Tools/Harry Potter and the Goblet of Fire/harry_potter_and_the_goblet_of_fire_SDT_script_2.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter and the Goblet of Fire/harry_potter_and_the_goblet_of_fire_SDT_script_2.bms -------------------------------------------------------------------------------- /NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/FINU chunk format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/FINU chunk format.txt -------------------------------------------------------------------------------- /NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/Harry_Potter_SS_PS1_TEXT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/Harry_Potter_SS_PS1_TEXT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/T1L1M007.WAD_FINU_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/T1L1M007.WAD_FINU_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/T1L1M007.WAD_XSPL_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/T1L1M007.WAD_XSPL_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/XSPL chunk format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Harry Potter and the Sorcerer's Stone (PS1)/XSPL chunk format.txt -------------------------------------------------------------------------------- /NEW Tools/Hatch Engine/Hatch Engine Archive Tool/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hatch Engine/Hatch Engine Archive Tool/README.MD -------------------------------------------------------------------------------- /NEW Tools/Hatch Engine/Hatch Engine Archive Tool/filelists/sonic_galactic_demo2_filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hatch Engine/Hatch Engine Archive Tool/filelists/sonic_galactic_demo2_filenames.txt -------------------------------------------------------------------------------- /NEW Tools/Hatch Engine/Hatch Engine Archive Tool/hatch_engine_archive_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hatch Engine/Hatch Engine Archive Tool/hatch_engine_archive_tool.py -------------------------------------------------------------------------------- /NEW Tools/Hatch Engine/Hatch Engine Archive Tool/remove_duplicates_and_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hatch Engine/Hatch Engine Archive Tool/remove_duplicates_and_sort.py -------------------------------------------------------------------------------- /NEW Tools/Hatch Engine/Hatch Engine Archive Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.48.1 2 | rawutil 3 | pillow 4 | -------------------------------------------------------------------------------- /NEW Tools/Hatch Engine/Hatch_Engine_HATCH_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hatch Engine/Hatch_Engine_HATCH_script.bms -------------------------------------------------------------------------------- /NEW Tools/Haven/Haven DAT file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Haven/Haven DAT file format.txt -------------------------------------------------------------------------------- /NEW Tools/Haven/Haven_DAT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Haven/Haven_DAT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Heart of Darkness/LVL file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Heart of Darkness/LVL file format.txt -------------------------------------------------------------------------------- /NEW Tools/Heart of Darkness/MST file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Heart of Darkness/MST file format.txt -------------------------------------------------------------------------------- /NEW Tools/Heart of Darkness/PAF file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Heart of Darkness/PAF file format.txt -------------------------------------------------------------------------------- /NEW Tools/Hellpoint/Hellpoint_DAT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hellpoint/Hellpoint_DAT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Hex pattern search Tool/Hex_pattern_search_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hex pattern search Tool/Hex_pattern_search_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Hex pattern search Tool/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hex pattern search Tool/readme.txt -------------------------------------------------------------------------------- /NEW Tools/Hokuto No Ken/Hokuto_no_ken_BIN_IDX_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hokuto No Ken/Hokuto_no_ken_BIN_IDX_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Hollow Knight Silksong/Text Tool/Hollow_Knight_Silksong_Text_Tool.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hollow Knight Silksong/Text Tool/Hollow_Knight_Silksong_Text_Tool.zip -------------------------------------------------------------------------------- /NEW Tools/Hollow Knight Silksong/Text Tool/Hollow_Knight_Silksong_Text_Tool_SOURCE/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hollow Knight Silksong/Text Tool/Hollow_Knight_Silksong_Text_Tool_SOURCE/Program.cs -------------------------------------------------------------------------------- /NEW Tools/Hollow Knight Silksong/Text Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Hollow Knight Silksong/Text Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/Homefront/BIN file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Homefront/BIN file format.txt -------------------------------------------------------------------------------- /NEW Tools/Homefront/Homefront_TEXT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Homefront/Homefront_TEXT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Homefront/coalesced_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Homefront/coalesced_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/IKS Telltale Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/IKS Telltale Tool.py -------------------------------------------------------------------------------- /NEW Tools/Insane 1nsane/Insane_IDF_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Insane 1nsane/Insane_IDF_script.bms -------------------------------------------------------------------------------- /NEW Tools/Insane 1nsane/UNPACK.BAT: -------------------------------------------------------------------------------- 1 | quickbms.exe Insane_IDF_script.bms Data.idf out1 2 | pause -------------------------------------------------------------------------------- /NEW Tools/Intelligent Games/Intelligent Games RFH RFD Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Intelligent Games/Intelligent Games RFH RFD Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/Intelligent Games/Intelligent Games RFH RFD Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.52.1 2 | pillow 3 | -------------------------------------------------------------------------------- /NEW Tools/Intelligent Games/Intelligent Games RFH RFD Tool/rfh_rfd_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Intelligent Games/Intelligent Games RFH RFD Tool/rfh_rfd_tool.py -------------------------------------------------------------------------------- /NEW Tools/Iron Man 2/Iron_Man_2_PKG_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Iron Man 2/Iron_Man_2_PKG_script.bms -------------------------------------------------------------------------------- /NEW Tools/JFK Reloaded/JFK_Reloaded_WAD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/JFK Reloaded/JFK_Reloaded_WAD_script.bms -------------------------------------------------------------------------------- /NEW Tools/JFK Reloaded/UNPACK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/JFK Reloaded/UNPACK.BAT -------------------------------------------------------------------------------- /NEW Tools/Jack Orlando/Jack_Orlando_PBM_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Jack Orlando/Jack_Orlando_PBM_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Just Cause/Just_Cause_1_sarc_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Just Cause/Just_Cause_1_sarc_script.bms -------------------------------------------------------------------------------- /NEW Tools/KEX Engine/KEX Engine TARC Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/KEX Engine/KEX Engine TARC Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/KEX Engine/KEX Engine TARC Tool/kex_engine_tarc_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/KEX Engine/KEX Engine TARC Tool/kex_engine_tarc_tool.py -------------------------------------------------------------------------------- /NEW Tools/KEX Engine/KEX Engine TARC Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.50.0 2 | pillow 3 | -------------------------------------------------------------------------------- /NEW Tools/Kelly Slater’s Pro Surfer/Kelly_Slaters_Pro_surfer_ST2_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Kelly Slater’s Pro Surfer/Kelly_Slaters_Pro_surfer_ST2_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Kill Switch/Kill_Switch_DAT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Kill Switch/Kill_Switch_DAT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Kim Possible 2 GBA/Kim_Possible_2_GBA_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Kim Possible 2 GBA/Kim_Possible_2_GBA_Tool.py -------------------------------------------------------------------------------- /NEW Tools/King of Colosseum 2/King_of_Colosseum_2_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/King of Colosseum 2/King_of_Colosseum_2_Tool.py -------------------------------------------------------------------------------- /NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/Lego_MSH_cheats_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/Lego_MSH_cheats_view.png -------------------------------------------------------------------------------- /NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/Lego_MSH_cheats_view_V1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/Lego_MSH_cheats_view_V1.1.png -------------------------------------------------------------------------------- /NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/[IKS] LEGO_Marvel_Super_Heroes V1.0.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/[IKS] LEGO_Marvel_Super_Heroes V1.0.CT -------------------------------------------------------------------------------- /NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/[IKS] LEGO_Marvel_Super_Heroes V1.1.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/[IKS] LEGO_Marvel_Super_Heroes V1.1.CT -------------------------------------------------------------------------------- /NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/LEGO Games/LEGO Marvel Super Heroes/Cheats/readme.txt -------------------------------------------------------------------------------- /NEW Tools/LEGO Games/LEGO_Games_FT2_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/LEGO Games/LEGO_Games_FT2_script.bms -------------------------------------------------------------------------------- /NEW Tools/LEGO Loco/Lego_Loco_RFH_RFD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/LEGO Loco/Lego_Loco_RFH_RFD_script.bms -------------------------------------------------------------------------------- /NEW Tools/Legacy of Kain Soul Reaver/DAT file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Legacy of Kain Soul Reaver/DAT file format.txt -------------------------------------------------------------------------------- /NEW Tools/Legend of Galactic Heroes/IKM file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Legend of Galactic Heroes/IKM file format.txt -------------------------------------------------------------------------------- /NEW Tools/Legend of Galactic Heroes/LoGH_IKM_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Legend of Galactic Heroes/LoGH_IKM_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Love and Berry Dress Up and Dance/Love_and_Berry_FC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Love and Berry Dress Up and Dance/Love_and_Berry_FC_script.bms -------------------------------------------------------------------------------- /NEW Tools/MAKE_EXE.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/MAKE_EXE.BAT -------------------------------------------------------------------------------- /NEW Tools/MT Framework/MT Framework TEX Converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/MT Framework/MT Framework TEX Converter/README.md -------------------------------------------------------------------------------- /NEW Tools/MT Framework/MT Framework TEX Converter/mt_framework_tex_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/MT Framework/MT Framework TEX Converter/mt_framework_tex_converter.py -------------------------------------------------------------------------------- /NEW Tools/MT Framework/MT Framework TEX Converter/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox>=0.17.0 2 | pillow -------------------------------------------------------------------------------- /NEW Tools/Mace Griffin Bounty Hunter/Mace_Griffin_WAD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Mace Griffin Bounty Hunter/Mace_Griffin_WAD_script.bms -------------------------------------------------------------------------------- /NEW Tools/Madoka Magica Pachislot/Madoka_Magica_Pachislot_OBB_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Madoka Magica Pachislot/Madoka_Magica_Pachislot_OBB_script.bms -------------------------------------------------------------------------------- /NEW Tools/Madoka Magica Pachislot/Madoka_Magica_Pachislot_USM_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Madoka Magica Pachislot/Madoka_Magica_Pachislot_USM_script.bms -------------------------------------------------------------------------------- /NEW Tools/Madoka Magica Pachislot/UNPACK_OBB.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Madoka Magica Pachislot/UNPACK_OBB.BAT -------------------------------------------------------------------------------- /NEW Tools/Madoka Magica Pachislot/UNPACK_USM.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Madoka Magica Pachislot/UNPACK_USM.BAT -------------------------------------------------------------------------------- /NEW Tools/Mario's Early Years/Marios_Early_Years_RES_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Mario's Early Years/Marios_Early_Years_RES_script.bms -------------------------------------------------------------------------------- /NEW Tools/Marmalade SDK/Marmalade_SDK_S3E_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Marmalade SDK/Marmalade_SDK_S3E_script.bms -------------------------------------------------------------------------------- /NEW Tools/Martian Gothic Unification/Martian_Gothic_Unification_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Martian Gothic Unification/Martian_Gothic_Unification_script.bms -------------------------------------------------------------------------------- /NEW Tools/Martian Gothic Unification/UNPACK.BAT: -------------------------------------------------------------------------------- 1 | quickbms.exe Martian_Gothic_Unification_script.bms UNI3.DAT out1 2 | pause -------------------------------------------------------------------------------- /NEW Tools/Mat Hoffman's Pro BMX/PKR file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Mat Hoffman's Pro BMX/PKR file format.txt -------------------------------------------------------------------------------- /NEW Tools/MediEvil Ressurrection Tools/MediEvil_Ressurection_LTR_Tool_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/MediEvil Ressurrection Tools/MediEvil_Ressurection_LTR_Tool_6.py -------------------------------------------------------------------------------- /NEW Tools/MediEvil Ressurrection Tools/Medievil_PSP_gamedata_bin_Tool_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/MediEvil Ressurrection Tools/Medievil_PSP_gamedata_bin_Tool_1.py -------------------------------------------------------------------------------- /NEW Tools/Miami Vice The Game/tex_Miami_Vice_The_Game_PSP_tga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Miami Vice The Game/tex_Miami_Vice_The_Game_PSP_tga.py -------------------------------------------------------------------------------- /NEW Tools/Micro Commandos/Micro_Commandos.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Micro Commandos/Micro_Commandos.CT -------------------------------------------------------------------------------- /NEW Tools/Mini_Fighters_Tool/Mini_Fighters_Tool_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Mini_Fighters_Tool/Mini_Fighters_Tool_1.py -------------------------------------------------------------------------------- /NEW Tools/Minority Report (Xbox)/Minority_Report_XSH_XSD_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Minority Report (Xbox)/Minority_Report_XSH_XSD_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Minority Report (Xbox)/XSH file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Minority Report (Xbox)/XSH file format.txt -------------------------------------------------------------------------------- /NEW Tools/Monsters vs Aliens/Monsters_vs_Aliens_DAT_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Monsters vs Aliens/Monsters_vs_Aliens_DAT_script.bms -------------------------------------------------------------------------------- /NEW Tools/Monsters, Inc. Scream Team Training/Monsters_Inc_Scream_Team_training_WAD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Monsters, Inc. Scream Team Training/Monsters_Inc_Scream_Team_training_WAD_script.bms -------------------------------------------------------------------------------- /NEW Tools/Mr Bean/Mr Bean PC BRA file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Mr Bean/Mr Bean PC BRA file format.txt -------------------------------------------------------------------------------- /NEW Tools/Ms. Splosion Man/Ms_Splosion_Man_PPR_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Ms. Splosion Man/Ms_Splosion_Man_PPR_script.bms -------------------------------------------------------------------------------- /NEW Tools/Muppets Treasure Island/MPL_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Muppets Treasure Island/MPL_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Muppets Treasure Island/MUP_DATA_file_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Muppets Treasure Island/MUP_DATA_file_list.txt -------------------------------------------------------------------------------- /NEW Tools/Muppets Treasure Island/Muppets_Treasure_Island_MPL_Tool_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Muppets Treasure Island/Muppets_Treasure_Island_MPL_Tool_1.py -------------------------------------------------------------------------------- /NEW Tools/Muppets Treasure Island/mup_data_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Muppets Treasure Island/mup_data_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/My Riding Stables 2/My_Riding_Stables_2_DAT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/My Riding Stables 2/My_Riding_Stables_2_DAT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/NERD Engine/NERD_engine_NPK_VPK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/NERD Engine/NERD_engine_NPK_VPK_script.bms -------------------------------------------------------------------------------- /NEW Tools/NHL 2K3/NHL_2K3_CMN_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/NHL 2K3/NHL_2K3_CMN_script.bms -------------------------------------------------------------------------------- /NEW Tools/NHL Championship 2000/NHL DAT TOOL/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /NEW Tools/NHL Championship 2000/NHL DAT TOOL/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/NHL Championship 2000/NHL DAT TOOL/README.MD -------------------------------------------------------------------------------- /NEW Tools/NHL Championship 2000/NHL DAT TOOL/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/NHL Championship 2000/NHL DAT TOOL/main.py -------------------------------------------------------------------------------- /NEW Tools/NHL Championship 2000/NHL DAT TOOL/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.6.6 -------------------------------------------------------------------------------- /NEW Tools/Namco All-Stars/Namco All-Stars PAK Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Namco All-Stars/Namco All-Stars PAK Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/Namco All-Stars/Namco All-Stars PAK Tool/namco_all_stars_pak_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Namco All-Stars/Namco All-Stars PAK Tool/namco_all_stars_pak_tool.py -------------------------------------------------------------------------------- /NEW Tools/Namco All-Stars/Namco All-Stars PAK Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.4.0 -------------------------------------------------------------------------------- /NEW Tools/Narbacular Drop/Narbacular_Drop_ORE_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Narbacular Drop/Narbacular_Drop_ORE_script.bms -------------------------------------------------------------------------------- /NEW Tools/Ninja Shadow of Darkness/Ninja_Shadow_of_Darkness_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Ninja Shadow of Darkness/Ninja_Shadow_of_Darkness_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Nowhere (Java game)/Nowhere_Java_Image_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Nowhere (Java game)/Nowhere_Java_Image_script.bms -------------------------------------------------------------------------------- /NEW Tools/Nowhere (Java game)/Nowhere_Java_Text_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Nowhere (Java game)/Nowhere_Java_Text_script.bms -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/.gitignore -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/Obscure_2_hvp_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/Obscure_2_hvp_extractor.py -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/README.md -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/constants.py: -------------------------------------------------------------------------------- 1 | 2 | STR_ENCODING = "windows-1250" 3 | -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/create_custom_hash_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/create_custom_hash_list.py -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/create_hook_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/create_hook_list.py -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/custom_filenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/custom_filenames.py -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_dumps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_ff2_hash_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_ff2_hash_list.txt -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_ff2_not_sure_hash_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_ff2_not_sure_hash_list.txt -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_ff_hash_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_ff_hash_list.txt -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_hash_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_custom_hash_list.txt -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_hook_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/hash_lists/obscure_2_hook_list.txt -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/initial_stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/initial_stats.txt -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/objects.py -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 HVP Tools/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.3.1 2 | lzokay==1.1.2 -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 Hook/Obs_HOOK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 Hook/Obs_HOOK.cpp -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 Hook/Obs_HOOK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 Hook/Obs_HOOK.dll -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 Hook/Obs_Hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 Hook/Obs_Hook.png -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/ObsCure 2 Hook/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/ObsCure 2 Hook/readme.txt -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/hashcat files/obs_input.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/hashcat files/obs_input.hash -------------------------------------------------------------------------------- /NEW Tools/ObsCure 2/hashcat files/run_hashcat_for_obscure_2.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure 2/hashcat files/run_hashcat_for_obscure_2.BAT -------------------------------------------------------------------------------- /NEW Tools/ObsCure/Obscure_HVP_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ObsCure/Obscure_HVP_script.bms -------------------------------------------------------------------------------- /NEW Tools/Outlaw Golf/Outlaw_Golf_PAK_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Outlaw Golf/Outlaw_Golf_PAK_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Outlaw Golf/PAK file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Outlaw Golf/PAK file format.txt -------------------------------------------------------------------------------- /NEW Tools/Outlaw Golf/outlaw_golf_PAK_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Outlaw Golf/outlaw_golf_PAK_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/OverBoard_Shipwreckers_v1.0.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/OverBoard_Shipwreckers_v1.0.CT -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Overboard Save file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Overboard Save file format.txt -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDA file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDA file format.txt -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDI file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDI file format.txt -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDR file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDR file format.txt -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDX file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/Psygnosis RDX file format.txt -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/RDT bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/RDT bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/overboard_save_file_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Overboard a.k.a. Shipwreckers & G-Police/overboard_save_file_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/PGA Tour 97/ASC file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/PGA Tour 97/ASC file format.txt -------------------------------------------------------------------------------- /NEW Tools/PGA Tour 97/PGA_Tour_97_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/PGA Tour 97/PGA_Tour_97_Tool.py -------------------------------------------------------------------------------- /NEW Tools/PGA Tour 97/VAN file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/PGA Tour 97/VAN file format.txt -------------------------------------------------------------------------------- /NEW Tools/Pacific Rim The Video Game/Pacific_Rim_DAT_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Pacific Rim The Video Game/Pacific_Rim_DAT_script.bms -------------------------------------------------------------------------------- /NEW Tools/Parasite Eve 2/Parasite_Eve_2_CDF_HED_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Parasite Eve 2/Parasite_Eve_2_CDF_HED_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Penguin Kelvin/Penguin_Kelvin_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Penguin Kelvin/Penguin_Kelvin_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Port Royale 4/Port_Royale_4_RES_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Port Royale 4/Port_Royale_4_RES_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Postal/Postal_SAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Postal/Postal_SAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Prey/Prey_2006_BPAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Prey/Prey_2006_BPAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Quake 2/Lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Quake 2/Lista.py -------------------------------------------------------------------------------- /NEW Tools/Quake 2/Quake_2_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Quake 2/Quake_2_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Quake 2/REpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Quake 2/REpak.py -------------------------------------------------------------------------------- /NEW Tools/Quake 2/unpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Quake 2/unpak.py -------------------------------------------------------------------------------- /NEW Tools/RAR/RAR Password Scanner/passwords_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RAR/RAR Password Scanner/passwords_list.txt -------------------------------------------------------------------------------- /NEW Tools/RAR/RAR Password Scanner/rar_password_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RAR/RAR Password Scanner/rar_password_scanner.py -------------------------------------------------------------------------------- /NEW Tools/RAR/RAR Password Scanner/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RAR/RAR Password Scanner/readme.md -------------------------------------------------------------------------------- /NEW Tools/RAR/RAR Password Scanner/requirements.txt: -------------------------------------------------------------------------------- 1 | rarfile==4.2 -------------------------------------------------------------------------------- /NEW Tools/RAR/RAR Password Scanner/test.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RAR/RAR Password Scanner/test.rar -------------------------------------------------------------------------------- /NEW Tools/RE Engine/RE Engine TEX Finder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RE Engine/RE Engine TEX Finder/main.py -------------------------------------------------------------------------------- /NEW Tools/RE Engine/RE_Engine_TEX_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RE Engine/RE_Engine_TEX_script.py -------------------------------------------------------------------------------- /NEW Tools/REGULAR_CHAR_REPLACER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/REGULAR_CHAR_REPLACER.py -------------------------------------------------------------------------------- /NEW Tools/RTL Ski Jumping/RTL_Ski_Jumping_2002_DIR_DAT_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RTL Ski Jumping/RTL_Ski_Jumping_2002_DIR_DAT_script.bms -------------------------------------------------------------------------------- /NEW Tools/RUN_FOR_ALL.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/RUN_FOR_ALL.BAT -------------------------------------------------------------------------------- /NEW Tools/Raiders Sphere/Raiders_Sphere_PAC_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Raiders Sphere/Raiders_Sphere_PAC_Tool.py -------------------------------------------------------------------------------- /NEW Tools/ReTiyoruga/ReTiyoruga_DAT_Tool/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ReTiyoruga/ReTiyoruga_DAT_Tool/README.MD -------------------------------------------------------------------------------- /NEW Tools/ReTiyoruga/ReTiyoruga_DAT_Tool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ReTiyoruga/ReTiyoruga_DAT_Tool/main.py -------------------------------------------------------------------------------- /NEW Tools/ReTiyoruga/ReTiyoruga_DAT_Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.29.0 -------------------------------------------------------------------------------- /NEW Tools/Ready 2 Rumble Boxing/Ready_2_rumble_BIN_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Ready 2 Rumble Boxing/Ready_2_rumble_BIN_script.bms -------------------------------------------------------------------------------- /NEW Tools/Red Comrades Save The Galaxy/Red_Comrades_Save_The_Galaxy_SFX_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Red Comrades Save The Galaxy/Red_Comrades_Save_The_Galaxy_SFX_script.bms -------------------------------------------------------------------------------- /NEW Tools/Resident Evil 7/RE7_Kitchen_PAK_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Resident Evil 7/RE7_Kitchen_PAK_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Resident Evil 7/RE7_PAK_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Resident Evil 7/RE7_PAK_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 ECO Tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 ECO Tool/.gitignore -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 ECO Tool/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 ECO Tool/logger.py -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 ECO Tool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 ECO Tool/main.py -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 ECO Tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 ECO Tool/requirements.txt -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 LEV Tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 LEV Tool/.gitignore -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 LEV Tool/Retro64_LEV_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 LEV Tool/Retro64_LEV_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 LEV Tool/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 LEV Tool/logger.py -------------------------------------------------------------------------------- /NEW Tools/Retro64/Retro64 LEV Tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/Retro64 LEV Tool/requirements.txt -------------------------------------------------------------------------------- /NEW Tools/Retro64/WarHeads_SE_NDX_WAD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Retro64/WarHeads_SE_NDX_WAD_script.bms -------------------------------------------------------------------------------- /NEW Tools/Robin Hood The Legend of Sherwood/Robin_Hood_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Robin Hood The Legend of Sherwood/Robin_Hood_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Robin Hood The Legend of Sherwood/Robin_Hood_RES_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Robin Hood The Legend of Sherwood/Robin_Hood_RES_script.bms -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room Of Prey VFS Tool/.gitignore -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room Of Prey VFS Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/Room_Of_Prey_VFS_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room Of Prey VFS Tool/Room_Of_Prey_VFS_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_1_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_1_filelist.txt -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_2_filelist.txt -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_3_filelist.txt -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_4_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room Of Prey VFS Tool/hash_lists/room_of_prey_4_filelist.txt -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room Of Prey VFS Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.49.3 -------------------------------------------------------------------------------- /NEW Tools/Room Of Prey/Room_of_Prey_VFS_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Room Of Prey/Room_of_Prey_VFS_script.bms -------------------------------------------------------------------------------- /NEW Tools/SQLITE3/Dump_SQLite3_database_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/SQLITE3/Dump_SQLite3_database_script.bms -------------------------------------------------------------------------------- /NEW Tools/Sacred/Sacred_Gold_v2-28-ASE_Steam_by_BD.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sacred/Sacred_Gold_v2-28-ASE_Steam_by_BD.CT -------------------------------------------------------------------------------- /NEW Tools/Sacred/Sacred_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sacred/Sacred_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/.gitignore -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/data/LICENSE -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/data/icon_bd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/data/icon_bd.ico -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/data/readme.txt -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/logger.py -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/main.py -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/make_exe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/make_exe.bat -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/requirements.txt -------------------------------------------------------------------------------- /NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Satellite Reign/Satellite_Reign_Text_Tool/setup.py -------------------------------------------------------------------------------- /NEW Tools/Scooby-Doo Whos Watching Who/Scooby_Doo_MST_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Scooby-Doo Whos Watching Who/Scooby_Doo_MST_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Scooby_Doo_MST_Tool_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Scooby_Doo_MST_Tool_1.py -------------------------------------------------------------------------------- /NEW Tools/Scrapland/Scrapland_cheat_table_V1.0.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Scrapland/Scrapland_cheat_table_V1.0.CT -------------------------------------------------------------------------------- /NEW Tools/Scrapland/Scrapland_cheat_table_V1.1.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Scrapland/Scrapland_cheat_table_V1.1.CT -------------------------------------------------------------------------------- /NEW Tools/Scrapland/Scrapland_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Scrapland/Scrapland_readme.txt -------------------------------------------------------------------------------- /NEW Tools/Shiro Games/Shiro_Games_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Shiro Games/Shiro_Games_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/ShtyrliTz Discovery of America/ShtyrliTz_Discovery_of_America_RES_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/ShtyrliTz Discovery of America/ShtyrliTz_Discovery_of_America_RES_script.bms -------------------------------------------------------------------------------- /NEW Tools/Signature Finder/signature_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Signature Finder/signature_finder.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Orphan/BIN file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Orphan/BIN file format.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Orphan/LAN file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Orphan/LAN file format.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Orphan/Silent_Hill_Orphan_BIN_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Orphan/Silent_Hill_Orphan_BIN_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Orphan/Silent_Hill_Orphan_TEXT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Orphan/Silent_Hill_Orphan_TEXT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/ARC file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/ARC file format.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/FONT file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/FONT file format.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/How_to_edit_font.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/How_to_edit_font.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/How_to_replace_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/How_to_replace_text.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/SUB file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/SUB file format.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_ARC_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_ARC_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_Char_Replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_Char_Replacer.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_Font_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_Font_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_OmegaT_Fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_OmegaT_Fixer.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_Text_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_Text_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_ZLIB_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/Silent_Hill_SM_ZLIB_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/TXD file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/TXD file format.txt -------------------------------------------------------------------------------- /NEW Tools/Silent Hill Shattered Memories/silent_hill.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Silent Hill Shattered Memories/silent_hill.bms -------------------------------------------------------------------------------- /NEW Tools/SimCity 3000/SimCity_3000_Unlimited_IXF_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/SimCity 3000/SimCity_3000_Unlimited_IXF_script.bms -------------------------------------------------------------------------------- /NEW Tools/Simpsons_CHAR_REPLACER_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Simpsons_CHAR_REPLACER_2.py -------------------------------------------------------------------------------- /NEW Tools/Sin Gold/Sin_Gold_SIN_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sin Gold/Sin_Gold_SIN_script.bms -------------------------------------------------------------------------------- /NEW Tools/Sonic The Hedgehog 2006/Sonic_2006_ARC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic The Hedgehog 2006/Sonic_2006_ARC_script.bms -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/888 file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/888 file format.txt -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/999 file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/999 file format.txt -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/N_PACK file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/N_PACK file format.txt -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/N_SUBPACK file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/N_SUBPACK file format.txt -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/PACK file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/PACK file format.txt -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/SUBPACK file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/SUBPACK file format.txt -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/Sonic_Unleashed_PACK_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/Sonic_Unleashed_PACK_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/dataIGPSprites file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/dataIGPSprites file format.txt -------------------------------------------------------------------------------- /NEW Tools/Sonic Unleashed/list_of_supported_Gameloft_games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Sonic Unleashed/list_of_supported_Gameloft_games.txt -------------------------------------------------------------------------------- /NEW Tools/Soulbringer/Soulbringer_b16_bin_Noesis_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Soulbringer/Soulbringer_b16_bin_Noesis_script.py -------------------------------------------------------------------------------- /NEW Tools/Spec Ops II Omega Squad/Spec_Ops_II_Omega_Squad_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Spec Ops II Omega Squad/Spec_Ops_II_Omega_Squad_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/SpellForce 2/SpellForce_2_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/SpellForce 2/SpellForce_2_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/SpellForce/SpellForce_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/SpellForce/SpellForce_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Spider-man Enter Electro_Tool_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Spider-man Enter Electro_Tool_1.py -------------------------------------------------------------------------------- /NEW Tools/Spiderman The Movie PKG Tool/PKG FILE FORMAT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Spiderman The Movie PKG Tool/PKG FILE FORMAT.txt -------------------------------------------------------------------------------- /NEW Tools/Spiderman The Movie PKG Tool/Spiderman the movie PKG tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Spiderman The Movie PKG Tool/Spiderman the movie PKG tool.py -------------------------------------------------------------------------------- /NEW Tools/Spy Bot Chronicles/PAK file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Spy Bot Chronicles/PAK file format.txt -------------------------------------------------------------------------------- /NEW Tools/Spy Bot Chronicles/Spy_bot_Chronicles_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Spy Bot Chronicles/Spy_bot_Chronicles_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Spy Bot Chronicles/spybot.pak_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Spy Bot Chronicles/spybot.pak_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Star Stable Online/Hook_Star_Stable_Online.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Star Stable Online/Hook_Star_Stable_Online.cpp -------------------------------------------------------------------------------- /NEW Tools/Star Stable Online/Star_Stable_Online_PTE_TGA_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Star Stable Online/Star_Stable_Online_PTE_TGA_script.bms -------------------------------------------------------------------------------- /NEW Tools/Star Stable Online/TGA file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Star Stable Online/TGA file format.txt -------------------------------------------------------------------------------- /NEW Tools/Star Stable Online/tga_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Star Stable Online/tga_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Star Wars Jedi Knight Jedi Academy/Star_Wars_Jedi_Knight_Jedi_Academy_BNK_TBL_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Star Wars Jedi Knight Jedi Academy/Star_Wars_Jedi_Knight_Jedi_Academy_BNK_TBL_script.bms -------------------------------------------------------------------------------- /NEW Tools/Storm Engine/storm_engine_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Storm Engine/storm_engine_script.py -------------------------------------------------------------------------------- /NEW Tools/Super Mario Sunshine/Super_Mario_Sunshine_HAR_HIX_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Super Mario Sunshine/Super_Mario_Sunshine_HAR_HIX_script.bms -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/BIN file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/BIN file format.txt -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/Hook_Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/Hook_Template.cpp -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/bat_script_template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/bat_script_template.bat -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/bd_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/bd_lib.py -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/comp_script_template.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/comp_script_template.bms -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/quickbms_template_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/quickbms_template_script.bms -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/template_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/template_argparse.py -------------------------------------------------------------------------------- /NEW Tools/TEMPLATES/template_tool_OLD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TEMPLATES/template_tool_OLD.py -------------------------------------------------------------------------------- /NEW Tools/TMNT 2003/Cheats/TMNT_2003_passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TMNT 2003/Cheats/TMNT_2003_passwords.txt -------------------------------------------------------------------------------- /NEW Tools/TMNT 2003/Cheats/[IKS] TMNT_2003.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TMNT 2003/Cheats/[IKS] TMNT_2003.CT -------------------------------------------------------------------------------- /NEW Tools/TMNT 2003/Cheats/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TMNT 2003/Cheats/readme.txt -------------------------------------------------------------------------------- /NEW Tools/TMNT 2003/Cheats/tmnt_2003_cheats_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TMNT 2003/Cheats/tmnt_2003_cheats_view.png -------------------------------------------------------------------------------- /NEW Tools/TMNT 2003/TMNT_2003_TXD_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TMNT 2003/TMNT_2003_TXD_Tool.py -------------------------------------------------------------------------------- /NEW Tools/TMNT 2003/TMNT_2003_short_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/TMNT 2003/TMNT_2003_short_info.txt -------------------------------------------------------------------------------- /NEW Tools/Tail Concerto/Tail Concerto Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tail Concerto/Tail Concerto Tools/README.md -------------------------------------------------------------------------------- /NEW Tools/Tail Concerto/Tail Concerto Tools/Tail_Concerto_Translation_Tool_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tail Concerto/Tail Concerto Tools/Tail_Concerto_Translation_Tool_main.py -------------------------------------------------------------------------------- /NEW Tools/Tail Concerto/Tail Concerto Tools/mod_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tail Concerto/Tail Concerto Tools/mod_memory.py -------------------------------------------------------------------------------- /NEW Tools/Tail Concerto/Tail Concerto Tools/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.6.0 -------------------------------------------------------------------------------- /NEW Tools/Tail Concerto/Tail Concerto Tools/translation_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tail Concerto/Tail Concerto Tools/translation_memory.py -------------------------------------------------------------------------------- /NEW Tools/Tekken 5 Java/Tekken 5 Java Save Tool/otek_1.rms_save_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tekken 5 Java/Tekken 5 Java Save Tool/otek_1.rms_save_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Tekken 5 Java/Tekken 5 Java Save Tool/settek_1.rms_save_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tekken 5 Java/Tekken 5 Java Save Tool/settek_1.rms_save_file_format.txt -------------------------------------------------------------------------------- /NEW Tools/Tekken 5 Java/Tekken 5 Java Text Tool/TRAD_xxxx.loc_file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tekken 5 Java/Tekken 5 Java Text Tool/TRAD_xxxx.loc_file format.txt -------------------------------------------------------------------------------- /NEW Tools/Tekken 5 Java/Tekken 5 Java Text Tool/Tekken_5_Java_Text_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tekken 5 Java/Tekken 5 Java Text Tool/Tekken_5_Java_Text_Tool.py -------------------------------------------------------------------------------- /NEW Tools/The Amazing Spider-Man/PKZ file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Amazing Spider-Man/PKZ file format.txt -------------------------------------------------------------------------------- /NEW Tools/The Amazing Spider-Man/pkz_dlcmain_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Amazing Spider-Man/pkz_dlcmain_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/The End Is Nigh/The_End_Is_Nigh_GPAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The End Is Nigh/The_End_Is_Nigh_GPAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Genius of Sappheiros Weekend/The_Genius_of_Sappheiros_Weekend_PAK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Genius of Sappheiros Weekend/The_Genius_of_Sappheiros_Weekend_PAK_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Genius of Sappheiros Weekend/UNPACK.BAT: -------------------------------------------------------------------------------- 1 | quickbms.exe -o The_Genius_of_Sappheiros_Weekend_PAK_script.bms Game.pak out1 2 | pause -------------------------------------------------------------------------------- /NEW Tools/The Godfather/TheGodfather_text_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Godfather/TheGodfather_text_Tool.py -------------------------------------------------------------------------------- /NEW Tools/The Incredible Hulk 2008/The_Incredible_Hulk_2008_ARC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Incredible Hulk 2008/The_Incredible_Hulk_2008_ARC_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Incredible Hulk 2008/The_Incredible_Hulk_2008_X360_ARC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Incredible Hulk 2008/The_Incredible_Hulk_2008_X360_ARC_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Longest Journey/The_Longest_Journey_XARC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Longest Journey/The_Longest_Journey_XARC_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Nations/The_Nations_CA_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Nations/The_Nations_CA_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Nations/UNPACK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Nations/UNPACK.BAT -------------------------------------------------------------------------------- /NEW Tools/The Prince and the Coward/The_Prince_and_the_Coward_PTC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Prince and the Coward/The_Prince_and_the_Coward_PTC_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Prince and the Coward/UNPACK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Prince and the Coward/UNPACK.BAT -------------------------------------------------------------------------------- /NEW Tools/The Sims/The_Sims_FAR_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Sims/The_Sims_FAR_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Stanley Parable/The_Stanley_Parable_DAT_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Stanley Parable/The_Stanley_Parable_DAT_script.bms -------------------------------------------------------------------------------- /NEW Tools/The Touryst/localize.loc file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Touryst/localize.loc file format.txt -------------------------------------------------------------------------------- /NEW Tools/The Touryst/localize.loc_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Touryst/localize.loc_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/The Touryst/localize.loc_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The Touryst/localize.loc_tool.py -------------------------------------------------------------------------------- /NEW Tools/The sims 2/The Sims 2 TXFL Extractor/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The sims 2/The Sims 2 TXFL Extractor/README.MD -------------------------------------------------------------------------------- /NEW Tools/The sims 2/The Sims 2 TXFL Extractor/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox 2 | pillow -------------------------------------------------------------------------------- /NEW Tools/The sims 2/The Sims 2 TXFL Extractor/txfl_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The sims 2/The Sims 2 TXFL Extractor/txfl_extractor.py -------------------------------------------------------------------------------- /NEW Tools/The sims 2/The_Sims_2_ARC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/The sims 2/The_Sims_2_ARC_script.bms -------------------------------------------------------------------------------- /NEW Tools/Thousand arms (PS1)/MAIN.STM_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Thousand arms (PS1)/MAIN.STM_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Thousand arms (PS1)/STM file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Thousand arms (PS1)/STM file format.txt -------------------------------------------------------------------------------- /NEW Tools/Thousand arms (PS1)/Thousand_arms_STM_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Thousand arms (PS1)/Thousand_arms_STM_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Tiger Woods PGA Tour/Tiger_Woods_GCB_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tiger Woods PGA Tour/Tiger_Woods_GCB_script.bms -------------------------------------------------------------------------------- /NEW Tools/Tiny Thor/Tiny_Thor_TPK_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tiny Thor/Tiny_Thor_TPK_script.bms -------------------------------------------------------------------------------- /NEW Tools/Tony Hawk’s Underground (PS2)/HED file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tony Hawk’s Underground (PS2)/HED file format.txt -------------------------------------------------------------------------------- /NEW Tools/Tony Hawk’s Underground (PS2)/Tony_Hawks_Underground_HED_WAD_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tony Hawk’s Underground (PS2)/Tony_Hawks_Underground_HED_WAD_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Touch Detective/Touch_Detective_AQC_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Touch Detective/Touch_Detective_AQC_script.bms -------------------------------------------------------------------------------- /NEW Tools/Touch Detective/Touch_Detective_OBB_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Touch Detective/Touch_Detective_OBB_script.bms -------------------------------------------------------------------------------- /NEW Tools/Transformers/ITF_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Transformers/ITF_finder.py -------------------------------------------------------------------------------- /NEW Tools/Transformers/fmt_TF2004_ITF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Transformers/fmt_TF2004_ITF.py -------------------------------------------------------------------------------- /NEW Tools/Treasure Cove/BNDL file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Treasure Cove/BNDL file format.txt -------------------------------------------------------------------------------- /NEW Tools/Treasure Cove/DAT file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Treasure Cove/DAT file format.txt -------------------------------------------------------------------------------- /NEW Tools/Treasure Cove/TLD file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Treasure Cove/TLD file format.txt -------------------------------------------------------------------------------- /NEW Tools/Treasure Cove/Treasure_Cove_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Treasure Cove/Treasure_Cove_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Treasure Cove/sound_bookmark.hbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Treasure Cove/sound_bookmark.hbk -------------------------------------------------------------------------------- /NEW Tools/Tribez/KTX file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tribez/KTX file format.txt -------------------------------------------------------------------------------- /NEW Tools/Turok Evolution/Turok_Evolution_Gamecube_TRE_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Turok Evolution/Turok_Evolution_Gamecube_TRE_script.bms -------------------------------------------------------------------------------- /NEW Tools/Tzar/Tzar RLE Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tzar/Tzar RLE Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/Tzar/Tzar RLE Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox==0.57.3 2 | pillow 3 | -------------------------------------------------------------------------------- /NEW Tools/Tzar/Tzar RLE Tool/tzar_rle_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Tzar/Tzar RLE Tool/tzar_rle_tool.py -------------------------------------------------------------------------------- /NEW Tools/UJAM Beatmaker/UJAM_Beatmaker_BLOB_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UJAM Beatmaker/UJAM_Beatmaker_BLOB_Tool.py -------------------------------------------------------------------------------- /NEW Tools/UNITY_TOOLS/Multiple_UnityFS_files_in_one_archive_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNITY_TOOLS/Multiple_UnityFS_files_in_one_archive_script.bms -------------------------------------------------------------------------------- /NEW Tools/UNITY_TOOLS/Multiple_XM_files_in_one_RESOURCE_Unity_archive.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNITY_TOOLS/Multiple_XM_files_in_one_RESOURCE_Unity_archive.bms -------------------------------------------------------------------------------- /NEW Tools/UNITY_TOOLS/Unity_DAT_font_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNITY_TOOLS/Unity_DAT_font_script.bms -------------------------------------------------------------------------------- /NEW Tools/UNITY_TOOLS/Unity_Text_Mesh_Tool_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNITY_TOOLS/Unity_Text_Mesh_Tool_1.py -------------------------------------------------------------------------------- /NEW Tools/UNITY_TOOLS/Unity_UnityFS_double_header_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNITY_TOOLS/Unity_UnityFS_double_header_script.bms -------------------------------------------------------------------------------- /NEW Tools/UNITY_TOOLS/unity3d_unityFS_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNITY_TOOLS/unity3d_unityFS_script.bms -------------------------------------------------------------------------------- /NEW Tools/UNREAL_ENGINE_TOOLS/Extract_OGG_files_from_UEXP_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNREAL_ENGINE_TOOLS/Extract_OGG_files_from_UEXP_script.bms -------------------------------------------------------------------------------- /NEW Tools/UNREAL_ENGINE_TOOLS/swfmovie_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/UNREAL_ENGINE_TOOLS/swfmovie_script.bms -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos Riot Response/Urban_Chaos_Riot_Response_SAF_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos Riot Response/Urban_Chaos_Riot_Response_SAF_script.bms -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/ALL file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/ALL file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/LGT file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/LGT file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/PAL file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/PAL file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/POO file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/POO file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/PRM file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/PRM file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/SEX file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/SEX file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/STY file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/STY file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/TMA file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/TMA file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/TXC file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/TXC file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/UCM file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/UCM file format.txt -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/Urban_Chaos_TXC_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/Urban_Chaos_TXC_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Urban Chaos/Urban_Chaos_UCM_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Urban Chaos/Urban_Chaos_UCM_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Value Reader/example_big_endian.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Value Reader/example_big_endian.bin -------------------------------------------------------------------------------- /NEW Tools/Value Reader/example_little_endian.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Value Reader/example_little_endian.bin -------------------------------------------------------------------------------- /NEW Tools/Value Reader/value_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Value Reader/value_reader.cpp -------------------------------------------------------------------------------- /NEW Tools/Value Reader/value_reader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Value Reader/value_reader.exe -------------------------------------------------------------------------------- /NEW Tools/Valve Games/Valve_WAD3_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Valve Games/Valve_WAD3_script.bms -------------------------------------------------------------------------------- /NEW Tools/Waking Mars/Waking_Mars_Steam_v1.0.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Waking Mars/Waking_Mars_Steam_v1.0.CT -------------------------------------------------------------------------------- /NEW Tools/Warlords_Battlecry/ARM file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Warlords_Battlecry/ARM file format.txt -------------------------------------------------------------------------------- /NEW Tools/Warlords_Battlecry/Warlords_Battlecry_ARM_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Warlords_Battlecry/Warlords_Battlecry_ARM_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Warlords_Battlecry/key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Warlords_Battlecry/key.bin -------------------------------------------------------------------------------- /NEW Tools/White Night/TEXT file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/White Night/TEXT file format.txt -------------------------------------------------------------------------------- /NEW Tools/White Night/White_Night_TEXT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/White Night/White_Night_TEXT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/World of Goo 2/World_of_Goo_2_IMAGE_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/World of Goo 2/World_of_Goo_2_IMAGE_script.bms -------------------------------------------------------------------------------- /NEW Tools/Yogurting/Yogurting_IRH_IRD_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Yogurting/Yogurting_IRH_IRD_script.bms -------------------------------------------------------------------------------- /NEW Tools/Youtubers Life 2/Text Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Youtubers Life 2/Text Tool/README.md -------------------------------------------------------------------------------- /NEW Tools/Youtubers Life 2/Text Tool/Youtubers_Life_2_Text_Tool.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Youtubers Life 2/Text Tool/Youtubers_Life_2_Text_Tool.zip -------------------------------------------------------------------------------- /NEW Tools/Youtubers Life 2/Text Tool/Youtubers_Life_2_Text_Tool_SOURCE/EncDec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Youtubers Life 2/Text Tool/Youtubers_Life_2_Text_Tool_SOURCE/EncDec.cs -------------------------------------------------------------------------------- /NEW Tools/Youtubers Life 2/Text Tool/Youtubers_Life_2_Text_Tool_SOURCE/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Youtubers Life 2/Text Tool/Youtubers_Life_2_Text_Tool_SOURCE/Program.cs -------------------------------------------------------------------------------- /NEW Tools/Yulgang 2/THD file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Yulgang 2/THD file format.txt -------------------------------------------------------------------------------- /NEW Tools/Yulgang 2/Yulgang2_THD_TDT_Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Yulgang 2/Yulgang2_THD_TDT_Tool.py -------------------------------------------------------------------------------- /NEW Tools/Zanzarah The Hidden Portal/IKS Zanzarah Char Replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Zanzarah The Hidden Portal/IKS Zanzarah Char Replacer.py -------------------------------------------------------------------------------- /NEW Tools/Zanzarah The Hidden Portal/IKS_PAK_unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Zanzarah The Hidden Portal/IKS_PAK_unpacker.py -------------------------------------------------------------------------------- /NEW Tools/Zanzarah The Hidden Portal/IKS_fbs_REpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Zanzarah The Hidden Portal/IKS_fbs_REpacker.py -------------------------------------------------------------------------------- /NEW Tools/Zanzarah The Hidden Portal/IKS_fbs_unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/Zanzarah The Hidden Portal/IKS_fbs_unpacker.py -------------------------------------------------------------------------------- /NEW Tools/gzip_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/gzip_script.bms -------------------------------------------------------------------------------- /NEW Tools/refpack_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/refpack_script.bms -------------------------------------------------------------------------------- /NEW Tools/xor_script.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/NEW Tools/xor_script.bms -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/README.md -------------------------------------------------------------------------------- /ReverseBox_Demo/DTEX Parser/.gitignore: -------------------------------------------------------------------------------- 1 | log.txt -------------------------------------------------------------------------------- /ReverseBox_Demo/DTEX Parser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/DTEX Parser/main.py -------------------------------------------------------------------------------- /ReverseBox_Demo/DTEX Parser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/DTEX Parser/readme.md -------------------------------------------------------------------------------- /ReverseBox_Demo/DTEX Parser/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox 2 | rawutil 3 | pillow -------------------------------------------------------------------------------- /ReverseBox_Demo/GXT Parser/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/GXT Parser/README.MD -------------------------------------------------------------------------------- /ReverseBox_Demo/GXT Parser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/GXT Parser/main.py -------------------------------------------------------------------------------- /ReverseBox_Demo/GXT Parser/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox 2 | pillow 3 | rawutil -------------------------------------------------------------------------------- /ReverseBox_Demo/RAW Parser/.gitignore: -------------------------------------------------------------------------------- 1 | log.txt -------------------------------------------------------------------------------- /ReverseBox_Demo/RAW Parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/RAW Parser/README.md -------------------------------------------------------------------------------- /ReverseBox_Demo/RAW Parser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/RAW Parser/main.py -------------------------------------------------------------------------------- /ReverseBox_Demo/RAW Parser/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox 2 | rawutil 3 | pillow -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 1/files/001cee1b.ctxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 1/files/001cee1b.ctxr -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 1/files/001cee1b.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 1/files/001cee1b.dds -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 1/files/001cee1b_2.ctxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 1/files/001cee1b_2.ctxr -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 1/raw_image_edit_example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 1/raw_image_edit_example1.py -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 1/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox 2 | Pillow -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile.bin -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile.pal -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile2.bin -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_anotherfile2.pal -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_image.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/files/merlin_image.dds -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/raw_image_edit_example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/raw_image_edit_example2.py -------------------------------------------------------------------------------- /ReverseBox_Demo/Raw Image Edit - Example 2 (indexed image)/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox 2 | Pillow 3 | numpy -------------------------------------------------------------------------------- /ReverseBox_Demo/TPL Parser/.gitignore: -------------------------------------------------------------------------------- 1 | log.txt 2 | -------------------------------------------------------------------------------- /ReverseBox_Demo/TPL Parser/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/TPL Parser/README.MD -------------------------------------------------------------------------------- /ReverseBox_Demo/TPL Parser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/ReverseBox_Demo/TPL Parser/main.py -------------------------------------------------------------------------------- /ReverseBox_Demo/TPL Parser/requirements.txt: -------------------------------------------------------------------------------- 1 | ReverseBox 2 | pillow 3 | rawutil -------------------------------------------------------------------------------- /auto_commit.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlomiejduda/Tools/HEAD/auto_commit.BAT --------------------------------------------------------------------------------