mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 10:57:36 +01:00
51 lines
1.9 KiB
HTML
51 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>GFDM V5 Rock to Infinity DLL Modder</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<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: 0xC259A, off: [0x74, 0x12, 0x68, 0xC0], on: [0x90, 0x90, 0x68, 0xC0]}
|
|
]
|
|
}
|
|
]);
|
|
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: 0x1BC1, off: [0x00, 0x00, 0x00, 0x00], on: [0x01, 0x00, 0x00, 0x00]},
|
|
{offset: 0x1BC9, off: [0x01], on: [0x03]},
|
|
{offset: 0x1BD1, 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: 0x17ECA, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
|
]
|
|
}
|
|
]);
|
|
new Patcher("libsystem.dll", "", [
|
|
{
|
|
name: "White screen freeze fix",
|
|
patches: [{offset: 0x306C, off: [0x53, 0x53], on: [0x33, 0xC0]}]
|
|
}
|
|
]);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>GFDM V5 Rock to Infinity DLL Modder</h1>
|
|
</body>
|
|
</html>
|