├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── BL3SaveEditor.sln ├── BL3SaveEditor ├── App.config ├── App.xaml ├── App.xaml.cs ├── AutoUpdater.xml ├── BL3SaveEditor.csproj ├── Borderlands 3 002 512 x 512 ICO.ico ├── Controls │ ├── IntegerMessageBox.xaml │ ├── IntegerMessageBox.xaml.cs │ ├── ItemBalanceChanger.xaml │ └── ItemBalanceChanger.xaml.cs ├── Debug │ ├── DebugConsole.xaml │ ├── DebugConsole.xaml.cs │ └── RedirectWriter.cs ├── FodyWeavers.xml ├── Helpers │ └── Helpers.cs ├── Icons │ ├── fugue │ │ ├── clipboard-text.png │ │ ├── cross-script.png │ │ ├── disk--plus.png │ │ ├── disk--purple.png │ │ ├── disk-black.png │ │ ├── document-binary.png │ │ ├── document-copy.png │ │ ├── documents-stack.png │ │ ├── documents-text.png │ │ ├── folder-open-document.png │ │ └── wrench-screwdriver.png │ ├── game │ │ ├── AllModIcons_I10.png │ │ ├── AllModIcons_I12.png │ │ ├── AllModIcons_I2C.png │ │ ├── AllModIcons_I2E.png │ │ ├── AllModIcons_I30.png │ │ ├── BITMAP_ICO_Expansion_4k.png │ │ ├── ECHOComm_IE.png │ │ ├── MinimapIcon_GalaxyMap.png │ │ ├── MinimapIcon_LostFoundFull.png │ │ ├── MinimapIcon_MiniBoss.png │ │ ├── MinimapIcon_Pinging_Loot.png │ │ ├── MinimapIcon_QuickChange.png │ │ ├── MinimapIcon_Respawn.png │ │ ├── MinimapIcon_SDUVendor.png │ │ ├── MissionIcon_TurnIn.png │ │ ├── promptIconDiamondKey.png │ │ ├── promptIconEridium.png │ │ └── promptIconGoldenKey.png │ └── icons │ │ ├── Borderlands 3 001 512 x 512 ICO.ico │ │ ├── Borderlands 3 001 512 x 512 PNG.png │ │ ├── Borderlands 3 002 512 x 512 ICO.ico │ │ ├── Borderlands 3 002 512 x 512 PNG.png │ │ ├── Borderlands 3 003 512 x 512 ICO.ico │ │ ├── Borderlands 3 003 512 x 512 PNG.png │ │ ├── Borderlands 3 004 512 x 512 ICO.ico │ │ ├── Borderlands 3 004 512 x 512 PNG.png │ │ └── README.md ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Starters │ └── Zane.sav └── Styles │ └── WPFToolkit_Adonis.xaml ├── BL3Tools ├── BL3Tools.cs ├── BL3Tools.csproj ├── Decryption │ ├── CRC32.cs │ ├── ProfileBogoCrypt.cs │ └── SaveBogoCrypt.cs ├── FixProtobufs.ps1 ├── GVAS │ └── GVASSave.cs ├── GameData │ ├── DataPathTranslations.cs │ ├── Experience.cs │ ├── Items │ │ ├── Borderlands3Serial.cs │ │ ├── InventoryKeyDB.cs │ │ ├── InventoryNameDatabase.cs │ │ ├── InventorySerialDatabase.cs │ │ └── Mappings │ │ │ ├── README.md │ │ │ ├── balance_to_inv_data.json │ │ │ ├── balance_to_inv_key.json │ │ │ ├── part_name_mapping.json │ │ │ ├── prefix_name_mapping.json │ │ │ ├── valid_generics.json │ │ │ └── valid_part_database.json │ ├── Mappings │ │ └── fast_travel_to_name.json │ └── SDU.cs ├── Helpers │ └── Helpers.cs ├── Platform.cs ├── Properties │ └── AssemblyInfo.cs ├── Protobufs │ ├── OakProfile.proto │ ├── OakSave.proto │ └── OakShared.proto ├── Save.cs ├── Scripts │ ├── BalanceToInventoryData.py │ ├── BalanceToInventoryKey.py │ ├── FastTravelDumper.py │ ├── PartToName.py │ ├── README.md │ └── ValidPartMapper.py ├── TMSUnpack │ ├── TMSArchive.cs │ └── TMSUnpacker.cs └── packages.config ├── CustomizationGenerator ├── CustomizationGenerator.py └── CustomizationGenerator.pyproj ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/.gitmodules -------------------------------------------------------------------------------- /BL3SaveEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor.sln -------------------------------------------------------------------------------- /BL3SaveEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/App.config -------------------------------------------------------------------------------- /BL3SaveEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/App.xaml -------------------------------------------------------------------------------- /BL3SaveEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/App.xaml.cs -------------------------------------------------------------------------------- /BL3SaveEditor/AutoUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/AutoUpdater.xml -------------------------------------------------------------------------------- /BL3SaveEditor/BL3SaveEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/BL3SaveEditor.csproj -------------------------------------------------------------------------------- /BL3SaveEditor/Borderlands 3 002 512 x 512 ICO.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Borderlands 3 002 512 x 512 ICO.ico -------------------------------------------------------------------------------- /BL3SaveEditor/Controls/IntegerMessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Controls/IntegerMessageBox.xaml -------------------------------------------------------------------------------- /BL3SaveEditor/Controls/IntegerMessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Controls/IntegerMessageBox.xaml.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Controls/ItemBalanceChanger.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Controls/ItemBalanceChanger.xaml -------------------------------------------------------------------------------- /BL3SaveEditor/Controls/ItemBalanceChanger.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Controls/ItemBalanceChanger.xaml.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Debug/DebugConsole.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Debug/DebugConsole.xaml -------------------------------------------------------------------------------- /BL3SaveEditor/Debug/DebugConsole.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Debug/DebugConsole.xaml.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Debug/RedirectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Debug/RedirectWriter.cs -------------------------------------------------------------------------------- /BL3SaveEditor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/FodyWeavers.xml -------------------------------------------------------------------------------- /BL3SaveEditor/Helpers/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Helpers/Helpers.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/clipboard-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/clipboard-text.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/cross-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/cross-script.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/disk--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/disk--plus.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/disk--purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/disk--purple.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/disk-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/disk-black.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/document-binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/document-binary.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/document-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/document-copy.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/documents-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/documents-stack.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/documents-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/documents-text.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/folder-open-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/folder-open-document.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/fugue/wrench-screwdriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/fugue/wrench-screwdriver.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/AllModIcons_I10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/AllModIcons_I10.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/AllModIcons_I12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/AllModIcons_I12.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/AllModIcons_I2C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/AllModIcons_I2C.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/AllModIcons_I2E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/AllModIcons_I2E.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/AllModIcons_I30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/AllModIcons_I30.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/BITMAP_ICO_Expansion_4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/BITMAP_ICO_Expansion_4k.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/ECHOComm_IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/ECHOComm_IE.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MinimapIcon_GalaxyMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MinimapIcon_GalaxyMap.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MinimapIcon_LostFoundFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MinimapIcon_LostFoundFull.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MinimapIcon_MiniBoss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MinimapIcon_MiniBoss.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MinimapIcon_Pinging_Loot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MinimapIcon_Pinging_Loot.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MinimapIcon_QuickChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MinimapIcon_QuickChange.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MinimapIcon_Respawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MinimapIcon_Respawn.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MinimapIcon_SDUVendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MinimapIcon_SDUVendor.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/MissionIcon_TurnIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/MissionIcon_TurnIn.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/promptIconDiamondKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/promptIconDiamondKey.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/promptIconEridium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/promptIconEridium.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/game/promptIconGoldenKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/game/promptIconGoldenKey.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 001 512 x 512 ICO.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 001 512 x 512 ICO.ico -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 001 512 x 512 PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 001 512 x 512 PNG.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 002 512 x 512 ICO.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 002 512 x 512 ICO.ico -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 002 512 x 512 PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 002 512 x 512 PNG.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 003 512 x 512 ICO.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 003 512 x 512 ICO.ico -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 003 512 x 512 PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 003 512 x 512 PNG.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 004 512 x 512 ICO.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 004 512 x 512 ICO.ico -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/Borderlands 3 004 512 x 512 PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/Borderlands 3 004 512 x 512 PNG.png -------------------------------------------------------------------------------- /BL3SaveEditor/Icons/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Icons/icons/README.md -------------------------------------------------------------------------------- /BL3SaveEditor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/MainWindow.xaml -------------------------------------------------------------------------------- /BL3SaveEditor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /BL3SaveEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BL3SaveEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /BL3SaveEditor/Starters/Zane.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Starters/Zane.sav -------------------------------------------------------------------------------- /BL3SaveEditor/Styles/WPFToolkit_Adonis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3SaveEditor/Styles/WPFToolkit_Adonis.xaml -------------------------------------------------------------------------------- /BL3Tools/BL3Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/BL3Tools.cs -------------------------------------------------------------------------------- /BL3Tools/BL3Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/BL3Tools.csproj -------------------------------------------------------------------------------- /BL3Tools/Decryption/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Decryption/CRC32.cs -------------------------------------------------------------------------------- /BL3Tools/Decryption/ProfileBogoCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Decryption/ProfileBogoCrypt.cs -------------------------------------------------------------------------------- /BL3Tools/Decryption/SaveBogoCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Decryption/SaveBogoCrypt.cs -------------------------------------------------------------------------------- /BL3Tools/FixProtobufs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/FixProtobufs.ps1 -------------------------------------------------------------------------------- /BL3Tools/GVAS/GVASSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GVAS/GVASSave.cs -------------------------------------------------------------------------------- /BL3Tools/GameData/DataPathTranslations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/DataPathTranslations.cs -------------------------------------------------------------------------------- /BL3Tools/GameData/Experience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Experience.cs -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Borderlands3Serial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Borderlands3Serial.cs -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/InventoryKeyDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/InventoryKeyDB.cs -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/InventoryNameDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/InventoryNameDatabase.cs -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/InventorySerialDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/InventorySerialDatabase.cs -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Mappings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Mappings/README.md -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Mappings/balance_to_inv_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Mappings/balance_to_inv_data.json -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Mappings/balance_to_inv_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Mappings/balance_to_inv_key.json -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Mappings/part_name_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Mappings/part_name_mapping.json -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Mappings/prefix_name_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Mappings/prefix_name_mapping.json -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Mappings/valid_generics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Mappings/valid_generics.json -------------------------------------------------------------------------------- /BL3Tools/GameData/Items/Mappings/valid_part_database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Items/Mappings/valid_part_database.json -------------------------------------------------------------------------------- /BL3Tools/GameData/Mappings/fast_travel_to_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/Mappings/fast_travel_to_name.json -------------------------------------------------------------------------------- /BL3Tools/GameData/SDU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/GameData/SDU.cs -------------------------------------------------------------------------------- /BL3Tools/Helpers/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Helpers/Helpers.cs -------------------------------------------------------------------------------- /BL3Tools/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Platform.cs -------------------------------------------------------------------------------- /BL3Tools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BL3Tools/Protobufs/OakProfile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Protobufs/OakProfile.proto -------------------------------------------------------------------------------- /BL3Tools/Protobufs/OakSave.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Protobufs/OakSave.proto -------------------------------------------------------------------------------- /BL3Tools/Protobufs/OakShared.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Protobufs/OakShared.proto -------------------------------------------------------------------------------- /BL3Tools/Save.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Save.cs -------------------------------------------------------------------------------- /BL3Tools/Scripts/BalanceToInventoryData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Scripts/BalanceToInventoryData.py -------------------------------------------------------------------------------- /BL3Tools/Scripts/BalanceToInventoryKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Scripts/BalanceToInventoryKey.py -------------------------------------------------------------------------------- /BL3Tools/Scripts/FastTravelDumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Scripts/FastTravelDumper.py -------------------------------------------------------------------------------- /BL3Tools/Scripts/PartToName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Scripts/PartToName.py -------------------------------------------------------------------------------- /BL3Tools/Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Scripts/README.md -------------------------------------------------------------------------------- /BL3Tools/Scripts/ValidPartMapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/Scripts/ValidPartMapper.py -------------------------------------------------------------------------------- /BL3Tools/TMSUnpack/TMSArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/TMSUnpack/TMSArchive.cs -------------------------------------------------------------------------------- /BL3Tools/TMSUnpack/TMSUnpacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/TMSUnpack/TMSUnpacker.cs -------------------------------------------------------------------------------- /BL3Tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/BL3Tools/packages.config -------------------------------------------------------------------------------- /CustomizationGenerator/CustomizationGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/CustomizationGenerator/CustomizationGenerator.py -------------------------------------------------------------------------------- /CustomizationGenerator/CustomizationGenerator.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/CustomizationGenerator/CustomizationGenerator.pyproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromDarkHell/BL3SaveEditor/HEAD/README.md --------------------------------------------------------------------------------