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:
@@ -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>
|
||||
Reference in New Issue
Block a user