two-torial-webpatcher/bombergirl.html
2022-05-28 13:48:36 +10:00

82 lines
3.6 KiB
HTML

<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>BomberGirl PC (eacloud) DLL Modder</title>
<link rel='stylesheet' href='css/style.css'>
<script type='text/javascript' src='js/dllpatcher.js'></script>
<script type='text/javascript'>
window.addEventListener('load', function () {
new PatchContainer([
new Patcher('GameAssembly.dll', "2021-01-05", [
{
// By HenTaku
name: 'Fix Stuck When Saving',
patches: [
{offset: 0xEB60E8, off: [0x0F, 0x84, 0x20, 0x03, 0x00, 0x00], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90]},
{offset: 0xEB60FC, off: [0x0F, 0x84, 0x06, 0x03, 0x00, 0x00], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90]},
{offset: 0xEB6105, off: [0x0F, 0x84, 0xF7, 0x02, 0x00, 0x00, 0x8B, 0x49, 0x10, 0x89, 0x48, 0x1C, 0x49, 0x8B, 0x5D, 0x28, 0x48, 0x89, 0x5C, 0x24, 0x38, 0x48, 0x85, 0xDB, 0x0F, 0x84, 0x1C, 0x02, 0x00, 0x00], on: [0xE9, 0x1D, 0x02, 0x00, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90]}
]
},
{
// By HenTaku
name: 'Freeze Timer',
patches: [{offset: 0x11CE07C, off: [0xF3, 0x0F, 0x11, 0x73, 0x2C], on: [0x90, 0x90, 0x90, 0x90, 0x90]}]
},
{
// By HenTaku
name: 'Disable Tutorial Dialog Popup',
patches: [{offset: 0x1960118, off: [0x70, 0x62], on: [0x60, 0x61]}]
},
{
name: 'Unlock Accessories',
tooltip: 'First pages of head accessories are empty somehow.',
patches: [{offset: 0xC7D100, off: [0x40, 0x57, 0x48, 0x83, 0xEC, 0x40], on: [0xB8, 0x01, 0x00, 0x00, 0x00, 0xC3]}]
},
{
name: 'Unlock Chat Voices',
patches: [{offset: 0xEA0B60, off: [0x48, 0x89, 0x5C, 0x24, 0x08, 0x48], on: [0xB8, 0x01, 0x00, 0x00, 0x00, 0xC3]}]
},
{
name: 'Unlock Characters',
tooltip: 'You still need patched resources.assets to unlock the last 5 characters',
patches: [
{offset: 0x4ABFA0, off: [0x0F, 0xB6, 0x41, 0x15, 0xC3, 0xCC], on: [0xB8, 0x01, 0x00, 0x00, 0x00, 0xC3]},
{offset: 0xFB6E2E, off: [0x74, 0x04, 0x0F, 0xB6, 0x41, 0x14], on: [0xB8, 0x01, 0x00, 0x00, 0x00, 0x90]},
{offset: 0xFB6EFB, off: [0x80, 0x78, 0x14, 0x00, 0x74, 0x0B], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90]}
]
},
{
name: 'Unlock Skills',
patches: [
{offset: 0x5B1AE0, off: [0x0F, 0xB6, 0x41, 0x14, 0xC3, 0xCC], on: [0xB8, 0x01, 0x00, 0x00, 0x00, 0xC3]},
{offset: 0xFBC360, off: [0x40, 0x57, 0x48, 0x83, 0xEC, 0x40], on: [0xB8, 0x01, 0x00, 0x00, 0x00, 0xC3]}
]
},
{
// By HenTaku
name: 'Skip Gacha',
tooltip: 'Only work when the unlock patches above are applied',
patches: [
{offset: 0x124B026, off: [0x0F, 0x85, 0x89, 0x00, 0x00, 0x00], on: [0xE9, 0x8A, 0x00, 0x00, 0x00, 0x90]},
{offset: 0x124B0C4, off: [0x75], on: [0xEB]}
]
},
{
// By HenTaku
name: 'Unlock Missions',
patches: [
{offset: 0xFB6F70, off: [0x48, 0x83, 0xEC, 0x28], on: [0xB0, 0x01, 0xC3, 0x90]},
{offset: 0xFBBD00, off: [0x40, 0x53, 0x48, 0x83, 0xEC, 0x40], on: [0xB8, 0x02, 0x00, 0x00, 0x00, 0x90]}
]
}
])
]);
});
</script>
</head>
<body>
<h1>BomberGirl DLL Modder</h1>
</body>
</html>