mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-27 17:00:54 +01:00
Add support for BomberGirl PC open beta
This commit is contained in:
parent
91f7c92e69
commit
27d0210705
74
bombergirl.html
Normal file
74
bombergirl.html
Normal file
@ -0,0 +1,74 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>BomberGirl DLL Modder</title>
|
||||
<link rel='stylesheet' href='css/style.css'>
|
||||
<!-- don't hate -->
|
||||
<script src='https://code.jquery.com/jquery-3.3.1.slim.min.js'></script>
|
||||
<script type='text/javascript' src='js/FileSaver.min.js'></script>
|
||||
<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',
|
||||
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',
|
||||
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 all the unlock patches 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]}
|
||||
]
|
||||
}
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>BomberGirl DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
BIN
img/bombergirl.png
Normal file
BIN
img/bombergirl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 58 KiB |
@ -20,6 +20,12 @@
|
||||
<div>BeatStream<br>アニムトライヴ</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="bombergirl.html" class="gameicon">
|
||||
<div>
|
||||
<img src="img/bombergirl.png">
|
||||
<div>BomberGirl</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="chuniplus.html" class="gameicon">
|
||||
<div>
|
||||
<img src="img/chuniplus.jpg">
|
||||
|
Loading…
Reference in New Issue
Block a user