mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 10:57:36 +01: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:
parent
acc15f0bf7
commit
c9f78bf0b7
54
gfdmv5.html
Normal file
54
gfdmv5.html
Normal file
@ -0,0 +1,54 @@
|
||||
<!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: 0xC259A, off: [0x74, 0x12, 0x68, 0xC0], on: [0x90, 0x90, 0x68, 0xC0]}
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("boot", [
|
||||
{
|
||||
name: "GF's volume fix",
|
||||
patches: [
|
||||
{offset: 0x1BC1, off: [0x00, 0x00, 0x00, 0x00], on: [0x01, 0x00, 0x00, 0x00]},
|
||||
{offset: 0x1BC9, off: [0x01], on: [0x03]},
|
||||
{offset: 0x1BD1, off: [0x02], on: [0x03]},
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("libshare-pj", [
|
||||
{
|
||||
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
||||
tooltip: "It's highly recommended using this just to turn off the e-AMUSEMENT easily,since it's not compatiable with e-amuemu(Cannot register cards but still can get into the game)",
|
||||
patches: [
|
||||
{offset: 0x17ECA, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("libsytem", [
|
||||
{
|
||||
name: "White screen freeze fix",
|
||||
patches: [{offset: 0x306C, off: [0x53, 0x53], on: [0x33, 0xC0]}]
|
||||
}
|
||||
], true)
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>GuitarFreaks & DrumMania V5 Rock to Infinity DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
47
gfdmv6.html
Normal file
47
gfdmv6.html
Normal file
@ -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>
|
53
gfdmv7.html
Normal file
53
gfdmv7.html
Normal file
@ -0,0 +1,53 @@
|
||||
<!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: 0xBA187, off: [0x74, 0x04, 0xC6, 0x46], on: [0x90, 0x90, 0xC6, 0x46]}
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("boot", [
|
||||
{
|
||||
name: "GF's volume fix",
|
||||
patches: [
|
||||
{offset: 0x1A31, off: [0x00, 0x00], on: [0x01, 0x00]},
|
||||
{offset: 0x1A39, off: [0x01], on: [0x03]},
|
||||
{offset: 0x1A41, off: [0x02], on: [0x03]},
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("libshare-pj", [
|
||||
{
|
||||
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
||||
patches: [
|
||||
{offset: 0x16B99, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("libsytem", [
|
||||
{
|
||||
name: "White screen freeze fix",
|
||||
patches: [{offset: 0x2DFC, off: [0x53, 0x53, 0xA3, 0xCC], on: [0x33, 0xC0, 0xA3, 0xCC]}]
|
||||
}
|
||||
], true)
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>GuitarFreaks & DrumMania V7 DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
BIN
img/gfdmv5.png
Normal file
BIN
img/gfdmv5.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
BIN
img/gfdmv6.png
Normal file
BIN
img/gfdmv6.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
BIN
img/gfdmv7.png
Normal file
BIN
img/gfdmv7.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
12
index.html
12
index.html
@ -48,6 +48,18 @@
|
||||
<img src="img/ddra.png">
|
||||
<div>Dance Dance Revolution A</div>
|
||||
</div></a>
|
||||
<a href="gfdmv5.html" class="gameicon"><div>
|
||||
<img src="img/gfdmv5.png">
|
||||
<div>GuitarFreaks & DrumMania V5 Rock to Infinity</div>
|
||||
</div></a>
|
||||
<a href="gfdmv6.html" class="gameicon"><div>
|
||||
<img src="img/gfdmv6.png">
|
||||
<div>GuitarFreaks & DrumMania V6 BLAZING!!!!</div>
|
||||
</div></a>
|
||||
<a href="gfdmv7.html" class="gameicon"><div>
|
||||
<img src="img/gfdmv7.png">
|
||||
<div>GuitarFreaks & DrumMania V7</div>
|
||||
</div></a>
|
||||
<a href="gitadoramatixx.html" class="gameicon"><div>
|
||||
<img src="img/matixx.png">
|
||||
<div>GITADORA Matixx</div>
|
||||
|
Loading…
Reference in New Issue
Block a user