two-torial-webpatcher/gfdmxg3.html
2022-05-28 13:48:36 +10:00

26 lines
754 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GFDM XG3 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: 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>