mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-05-06 04:45:58 -05:00
42 lines
1.4 KiB
HTML
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> |