two-torial-webpatcher/chuniamazon.html

38 lines
1.5 KiB
HTML
Raw Normal View History

2019-11-17 12:01:04 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CHUNITHM AMAZON 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("chuniApp.exe", "", [
{
// mon
name: "Allow 127.0.0.1/localhost as the network server",
patches: [
2019-11-17 13:03:33 +01:00
{offset: 0x8BC180, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
{offset: 0x164D0E0, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
2019-11-17 12:01:04 +01:00
]
},
2019-11-17 13:03:33 +01:00
{
// mon
name: "Disable shop close lockout",
tooltip: "Around midnight JST the game won't let you play any more.",
patches: [
{offset: 0x8E3DD3, off: [0x74], on: [0xEB]},
],
},
2019-11-17 12:01:04 +01:00
]);
});
</script>
</head>
<body>
<h1>CHUNITHM AMAZON Modder</h1>
</body>
</html>