mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
Add old GFDM V Series DLL fixes. (#63)
* Add old GFDM V Series DLL fixes,all of them tested. Signed-off-by: JamesLewisLiu <382679908@qq.com> * Signed-off-by: JamesLewisLiu <382679908@qq.com>
This commit is contained in:
+47
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>GuitarFreaks & DrumMania V5 Rock to Infinity 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 DllPatcherContainer([
|
||||
new DllPatcher("game", [
|
||||
{
|
||||
name: "Force unlock SECRET folder",
|
||||
patches: [
|
||||
{offset: 0xCC8EA, off: [0x74, 0x12, 0x68, 0x04], on: [0x90, 0x90, 0x68, 0x04]}
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("boot", [
|
||||
{
|
||||
name: "GF's volume fix",
|
||||
patches: [
|
||||
{offset: 0x1B61, off: [0x00, 0x00, 0x00, 0x00], on: [0x01, 0x00, 0x00, 0x00]},
|
||||
{offset: 0x1B69, off: [0x01], on: [0x03]},
|
||||
{offset: 0x1B71, off: [0x02], on: [0x03]},
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("libshare-pj", [
|
||||
{
|
||||
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
||||
patches: [
|
||||
{offset: 0x18F3A, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
||||
]
|
||||
}
|
||||
], true)
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>GuitarFreaks & DrumMania V6 BLAZING!!!! DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user