Add support for certain GFDM games

This PR adds support for the following games.

GFDM V4 RockXRock,
GFDM V8
GFDM XG2
GFDM XG3
This commit is contained in:
trmazi 2021-12-23 13:57:46 -05:00 committed by Will
parent 887499af6c
commit b531cae77e
9 changed files with 179 additions and 0 deletions

36
gfdmv4.html Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GFDM V4 RockxRock 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 Patcher("game.dll", "", [
{
name: "Force unlock SECRET folder",
patches: [
{offset: 0xA468A, off: [0x74, 0x12, 0x68, 0xD4], on: [0x90, 0x90, 0x68, 0xD4]}
]
}
]);
new Patcher("libshare-pj.dll", "", [
{
name: "Remove the game's 10.0.*.* IP check, allowing any IP address.",
tooltip: "Without this, games will not get past server error 2-5000-0000",
patches: [
{offset: 0x16B9D, off: [0x01, 0x5B], on: [0x00, 0x5B]}
]
}
]);
});
</script>
</head>
<body>
<h1>GFDM V4 RockxRock DLL Modder</h1>
</body>
</html>

53
gfdmv8.html Normal file
View File

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GFDM V8 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 Patcher("game.dll", "", [
{
name: "Force unlock SECRET folder",
patches: [
{offset: 0xB98B7, off: [0x74, 0x04, 0xC6, 0x46], on: [0x90, 0x90, 0xC6, 0x46]}
]
}
]);
new Patcher("boot.dll", "", [
{
name: "Set GF to 2CH audio rather than 4CH",
tooltip: "Fixes audio volume issues, as you cannot hear any sound effects on a 2CH card by default.",
patches: [
{offset: 0x0E31, off: [0x00, 0x00], on: [0x01, 0x00]},
{offset: 0x0E39, off: [0x01], on: [0x03]},
{offset: 0x0E41, off: [0x02], on: [0x03]},
]
}
]);
new Patcher("libshare-pj.dll", "", [
{
name: "Remove the game's 10.0.*.* IP check, allowing any IP address.",
tooltip: "Without this, games will not get past server error 2-5000-0000",
patches: [
{offset: 0x160F9, off: [0x01, 0x5B], on: [0x00, 0x5B]}
]
}
]);
new Patcher("libsystem.dll", "", [
{
name: "White screen freeze fix",
patches: [{offset: 0x21FC, off: [0x53, 0x53, 0xA3, 0xCC], on: [0x33, 0xC0, 0xA3, 0xCC]}]
}
]);
});
</script>
</head>
<body>
<h1>GFDM V8 DLL Modder</h1>
</body>
</html>

37
gfdmxg2.html Normal file
View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GFDM XG2 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 Patcher("game.dll", "", [
{
name: "Force unlock SECRET folder",
patches: [
{offset: 0x1B67B2, off: [0x5B, 0x00], on: [0x4D, 0x01]},
{offset: 0x1B67C2, off: [0x5D, 0x00], on: [0x4D, 0x01]},
]
}
]);
new Patcher("libshare-pj.dll", "", [
{
name: "Remove the game's 10.0.*.* IP check, allowing any IP address.",
tooltip: "Without this, games will not get past server error 2-5000-0000",
patches: [
{offset: 0x15B69, off: [0x01], on: [0x00]}
]
}
]);
});
</script>
</head>
<body>
<h1>GFDM XG2 DLL Modder</h1>
</body>
</html>

28
gfdmxg3.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GFDM XG3 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 Patcher("game.dll", "", [
{
name: "Force unlock SECRET folder",
patches: [
{offset: 0x1652D2, off: [0x5B, 0x00], on: [0x4D, 0x01]},
{offset: 0x1652E2, off: [0x5D, 0x00], on: [0x4D, 0x01]},
]
}
]);
});
</script>
</head>
<body>
<h1>GFDM XG3 DLL Modder</h1>
</body>
</html>

BIN
img/gfdmv4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

BIN
img/gfdmv8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
img/gfdmxg2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
img/gfdmxg3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -158,6 +158,12 @@
<div>Groove Coaster 4EX Infinity Highway</div>
</div>
</a>
<a href="gfdmv4.html" class="gameicon">
<div>
<img src="img/gfdmv4.png">
<div>GuitarFreaks & DrumMania V4 RockxRock</div>
</div>
</a>
<a href="gfdmv5.html" class="gameicon">
<div>
<img src="img/gfdmv5.png">
@ -176,6 +182,25 @@
<div>GuitarFreaks & DrumMania V7</div>
</div>
</a>
<a href="gfdmv8.html" class="gameicon">
<div>
<img src="img/gfdmv8.png">
<div>GuitarFreaks & DrumMania V8</div>
</div>
</a>
<a href="gfdmxg2.html" class="gameicon">
<div>
<img src="img/gfdmxg2.png">
<div>GuitarFreaks & DrumMania XG2</div>
</div>
</a>
</a>
<a href="gfdmxg3.html" class="gameicon">
<div>
<img src="img/gfdmxg3.png">
<div>GuitarFreaks & DrumMania XG3</div>
</div>
</a>
<a href="gitadoraod.html" class="gameicon">
<div>
<img src="img/od.png">