mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
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:
+53
@@ -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>
|
||||
Reference in New Issue
Block a user