mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
780658f17b
- 14+ fix - Reverse BINGO fixes Images for S, Lily and Lily R are placeholders, I couldn't find the actual images I wanted to use.
35 lines
1.0 KiB
HTML
35 lines
1.0 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]},
|
|
]
|
|
},
|
|
{
|
|
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> |