two-torial-webpatcher/chuniamazon.html
2019-11-24 12:46:07 +10:00

60 lines
2.5 KiB
HTML

<!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: [
{offset: 0x8BC180, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
{offset: 0x164D0E0, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
]
},
{
// mon
name: "Disable shop close lockout",
tooltip: "Disables ~12-8am lockout. Does not disable maint lockout from 6:30-7am JST",
patches: [
{offset: 0x8E3DD3, off: [0x74], on: [0xEB]},
],
},
{
// mon
name: "Disable update check (faster boot)",
patches: [
{offset: 0x8AE690, off: [0xA1, 0x54, 0x88], on: [0x31, 0xC0, 0xC3]},
],
},
{
// somewhatlurker
name: "Force shared audio mode, system audio samplerate must be 48000",
tooltip: "Improves compatibility but may increase latency",
patches: [
{offset: 0xC77D1A, off: [0x01], on: [0x00]},
],
},
{
// somewhatlurker
name: "Force 2 channel audio output",
patches: [
{offset: 0xC77DF1, off: [0x75, 0x3F], on: [0x90, 0x90]},
],
},
]);
});
</script>
</head>
<body>
<h1>CHUNITHM AMAZON Modder</h1>
</body>
</html>