2019-10-01 13:51:44 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2019-10-02 08:13:10 +02:00
|
|
|
<title>GITADORA EXCHAIN DLL Modder</title>
|
2019-10-01 13:51:44 +02:00
|
|
|
<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 () {
|
2020-02-01 00:25:35 +01:00
|
|
|
new Patcher("game.dll", "", [
|
|
|
|
{
|
|
|
|
name: "Timer Freeze",
|
|
|
|
patches: [{offset: 0xBC27, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
|
|
|
}
|
|
|
|
]);
|
2019-11-17 11:58:28 +01:00
|
|
|
new Patcher("libshare-pj.dll", "", [
|
2019-10-01 13:51:44 +02:00
|
|
|
{
|
|
|
|
name: 'Fix "IP CHANGE ERROR"',
|
|
|
|
patches: [{offset: 0x23305, off: [0x74], on: [0xEB]}]
|
|
|
|
}
|
2019-11-17 11:58:28 +01:00
|
|
|
])
|
2019-10-01 13:51:44 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-10-02 08:13:10 +02:00
|
|
|
<h1>GITADORA EXCHAIN DLL Modder</h1>
|
2019-10-01 13:51:44 +02:00
|
|
|
</body>
|
|
|
|
</html>
|