BemaniPatcher/waccas.html
Zsolt Zitting faa440a200
Some checks failed
Check HTML/JS is valid / build (push) Has been cancelled
Backport WACCA Reverse automatic game reboot patch for older versions
2026-03-26 08:22:04 +10:00

42 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>WACCA S 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 PatchContainer([
new Patcher('Mercury.exe', "1.50.06", [
{
name: 'Force Engine locale (ignore router country language)',
patches: [
{offset : 0x5537D7, off: [0x74, 0x07], on : [0x90, 0x90]},
]
},
{
// Always return 0 from the func checking the daily reboot hour (defaults to rebooting at 5 AM JST)
name: 'Disable automatic game reboot',
patches: [
{offset: 0x367D7F, off: [0x48, 0xc1, 0xe8, 0x3f], on: [0x30, 0xc0, 0x90, 0x90]}
]
},
{
name: 'Allow using CHN region (don\'t change to HKG)',
patches: [
{offset : 0x32CA147, off: [0x75], on : [0xEB]},
]
}
]),
]);
});
</script>
</head>
<body>
<h1>WACCA S Modder</h1>
</body>
</html>