Add various WACCA patches, and backports to older versions.

- 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.
This commit is contained in:
Zsolt Zitting
2026-03-23 16:13:57 -07:00
committed by Will
parent 5a53aa4d7c
commit 780658f17b
11 changed files with 260 additions and 55 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

+26 -6
View File
@@ -363,11 +363,11 @@
<img src="img/jubeat/11festo.png"> <img src="img/jubeat/11festo.png">
<div>jubeat festo</div> <div>jubeat festo</div>
</a> </a>
<a href="jubeatave.html" class="gameicon"> <a href="jubeatave.html" class="gameicon">
<img src="img/jubeat/12ave.png"> <img src="img/jubeat/12ave.png">
<div>jubeat Ave.</div> <div>jubeat Ave.</div>
</a> </a>
<a href="jubeatbeyondtheave.html" class="gameicon"> <a href="jubeatbeyondtheave.html" class="gameicon">
<img src="img/jubeat/13beyondtheave.png"> <img src="img/jubeat/13beyondtheave.png">
<div>jubeat Beyond the Ave.</div> <div>jubeat Beyond the Ave.</div>
</a> </a>
@@ -527,10 +527,30 @@
<img src="img/taikonotatsujin.png"> <img src="img/taikonotatsujin.png">
<div>Taiko no Tatsujin</div> <div>Taiko no Tatsujin</div>
</a> </a>
<a href="waccareverse.html" class="gameicon">
<img src="img/wacca4reverse.png"> <label for="check_wacca" class="gameicon">
<div>WACCA REVERSE</div> <img src="img/aaa_wacca.png">
</a> <div>WACCA</div>
</label>
<input type="checkbox" id="check_wacca" class="sectionToggle"/>
<div class="subsection">
<a href="waccas.html" class="gameicon">
<img src="img/wacca/s.png">
<div>WACCA S</div>
</a>
<a href="waccalily.html" class="gameicon">
<img src="img/wacca/lily.png">
<div>WACCA Lily</div>
</a>
<a href="waccalilyr.html" class="gameicon">
<img src="img/wacca/lilyr.png">
<div>WACCA Lily R</div>
</a>
<a href="waccareverse.html" class="gameicon">
<img src="img/wacca/reverse.png">
<div>WACCA Reverse</div>
</a>
</div>
</div> </div>
<div class="tagline">Patches are community created. <a href="https://github.com/mon/BemaniPatcher/">Submit your own via Pull Request!</a></div> <div class="tagline">Patches are community created. <a href="https://github.com/mon/BemaniPatcher/">Submit your own via Pull Request!</a></div>
<div class="tagline"><em>Converted to a web-tool by <a href="https://github.com/mon/">mon</a></em></div> <div class="tagline"><em>Converted to a web-tool by <a href="https://github.com/mon/">mon</a></em></div>
+55
View File
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>WACCA Lily 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-Win64-Shipping.exe', "2.04.00", [
{
name: 'Fully disable closing time lockout',
tooltip: "Disables the 「このマシンは本日の稼働を終了しました。改めてご来店ください。」 message at closing time. You should probably disable the closing time in the test menu instead.",
patches: [
{
offset : 0x4AAEE0,
off: [0xE8, 0x6B, 0x90, 0xE6, 0xFF, 0x45, 0x33, 0xC0, 0x33, 0xD2, 0x48, 0x8B, 0xCB, 0xE8, 0xDE, 0x34, 0xEF, 0xFF, 0x84, 0xC0, 0x75, 0x12, 0xBA, 0x06],
on : [0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0xBA, 0x00]
},
{offset : 0x4AAF14, off: [0xBA, 0x02], on : [0xBA, 0x00]},
{offset : 0x4AAF60, off: [0x48, 0x8D, 0x55, 0x20, 0x48], on : [0xE9, 0x79, 0xFF, 0xFF, 0xFF]},
]
},
{
name: 'Force Engine locale (ignore router country language)',
patches: [
{offset : 0x50DBE4, off: [0x74, 0x07], on : [0x90, 0x90]},
]
},
{
name: 'Allow using CHN region (don\'t change to HKG)',
patches: [
{offset : 0x1ECB377, off: [0x75], on : [0xEB]},
]
},
{
name: 'Fix 14+ sorting',
tooltip: 'Fix crash when song difficulty is 14.6-14.9',
patches: [
{offset : 0x23F79E0, off: [0xFF, 0xFF, 0xFF, 0xFF], on: [0x1F, 0x00, 0x00, 0x00]},
]
}
]),
]);
});
</script>
</head>
<body>
<h1>WACCA Lily Modder</h1>
</body>
</html>
+55
View File
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>WACCA Lily R 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-Win64-Shipping.exe', "2.53.00", [
{
name: 'Fully disable closing time lockout',
tooltip: "Disables the 「このマシンは本日の稼働を終了しました。改めてご来店ください。」 message at closing time. You should probably disable the closing time in the test menu instead.",
patches: [
{
offset : 0x4C8BA0,
off: [0xE8, 0xEB, 0x2D, 0xE5, 0xFF, 0x45, 0x33, 0xC0, 0x33, 0xD2, 0x48, 0x8B, 0xCB, 0xE8, 0x3E, 0x24, 0xEE, 0xFF, 0x84, 0xC0, 0x75, 0x12, 0xBA, 0x06],
on : [0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0xBA, 0x00]
},
{offset : 0x4C8BD4, off: [0xBA, 0x02], on : [0xBA, 0x00]},
{offset : 0x4C8C20, off: [0x48, 0x8D, 0x55, 0x20, 0x48], on : [0xE9, 0x79, 0xFF, 0xFF, 0xFF]},
]
},
{
name: 'Force Engine locale (ignore router country language)',
patches: [
{offset : 0x529A64, off: [0x74, 0x07], on : [0x90, 0x90]},
]
},
{
name: 'Allow using CHN region (don\'t change to HKG)',
patches: [
{offset : 0x1EF5E77, off: [0x75], on : [0xEB]},
]
},
{
name: 'Fix 14+ sorting',
tooltip: 'Fix crash when song difficulty is 14.6-14.9',
patches: [
{offset : 0x243F9B0, off: [0xFF, 0xFF, 0xFF, 0xFF], on: [0x20, 0x00, 0x00, 0x00]},
]
}
]),
]);
});
</script>
</head>
<body>
<h1>WACCA Lily R Modder</h1>
</body>
</html>
+89 -49
View File
@@ -3,66 +3,106 @@
<head> <head>
<meta charset='utf-8'> <meta charset='utf-8'>
<title>WACCA REVERSE Modder</title> <title>WACCA Reverse Modder</title>
<link rel="stylesheet" href="css/style.css" /> <link rel="stylesheet" href="css/style.css" />
<script type="text/javascript" src="js/dllpatcher.js"></script> <script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript"> <script type="text/javascript">
window.addEventListener("load", function() { window.addEventListener("load", function() {
new PatchContainer([ new PatchContainer([
new Patcher('Mercury-Win64-Shipping.exe', "3.07.01", [{ new Patcher('Mercury-Win64-Shipping.exe', "3.07.01", [
name: 'Fully disable lockout', {
tooltip: "closing time patch for「このマシンは本日の稼働を終了しました。改めてご来店ください。」 ", name: 'Fully disable closing time lockout',
patches: [{ tooltip: "Disables the 「このマシンは本日の稼働を終了しました。改めてご来店ください。」 message at closing time. You should probably disable the closing time in the test menu instead.",
offset: 0x4EF970, patches: [
off: [0xE8, 0x2B, 0x5A, 0xE4, 0xFF, 0x45, 0x33, 0xC0, 0x41, 0x8D, 0x50, 0x04, 0x48, 0x8B, 0xCB, 0xE8, 0x0C, 0xAC, 0xED, 0xFF, 0x84, 0xC0, 0x75, 0x12, 0xBA, 0x06], {
on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0xBA, 0x00] offset: 0x4EF970,
}, { off: [0xE8, 0x2B, 0x5A, 0xE4, 0xFF, 0x45, 0x33, 0xC0, 0x41, 0x8D, 0x50, 0x04, 0x48, 0x8B, 0xCB, 0xE8, 0x0C, 0xAC, 0xED, 0xFF, 0x84, 0xC0, 0x75, 0x12, 0xBA, 0x06],
offset: 0x4EF9A6, on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0xBA, 0x00]
off: [0xBA, 0x02], },
on: [0xBA, 0x00] {offset: 0x4EF9A6, off: [0xBA, 0x02], on: [0xBA, 0x00]},
}, { {offset: 0x4EF9F2, off: [0x48, 0x8D, 0x55, 0x20, 0x48], on: [0xE9, 0x79, 0xFF, 0xFF, 0xFF]},
offset: 0x4EF9F2, ]
off: [0x48, 0x8D, 0x55, 0x20, 0x48], },
on: [0xE9, 0x79, 0xFF, 0xFF, 0xFF] {
}, ] name: 'Force Engine locale (ignore router country language)',
}, { patches: [
name: 'Force Engine locale (ignore router country language)', {offset : 0x558154, off: [0x74, 0x07], on : [0x90, 0x90]},
patches: [{ ]
offset: 0x558154, },
off: [0x74, 0x07], {
on: [0x90, 0x90] name: 'Allow using CHN region (don\'t change to HKG)',
}, ] patches: [
}, { {offset : 0x1F2B0B7, off: [0x75], on : [0xEB]},
name: 'Allow using CHN region (don\'t change to HKG)', ]
patches: [{ },
offset: 0x1F2B0B7, {
off: [0x75], name: 'Force enable Hidden Luin title screen',
on: [0xEB] patches: [
}, ] {offset : 0x4F0FFA, off: [0x74], on : [0xEB]},
}, { ]
name: 'Force enable Hidden Luin title screen', },
patches: [{ {
offset: 0x4F0FFA, name: 'Fix 14+ sorting',
off: [0x74], tooltip: 'Fix crash when song difficulty is 14.6-14.9',
on: [0xEB] patches: [
}, ] {offset : 0x248C8F8, off: [0xFF, 0xFF, 0xFF, 0xFF], on: [0x20, 0x00, 0x00, 0x00]},
}, ]), ]
new Patcher('Mercury-Win64-Shipping.exe', "3.10.00", [{ },
name: 'Fully disable lockout', {
tooltip: "closing time patch for「このマシンは本日の稼働を終了しました。改めてご来店ください。」 ", name: 'Fix bingo crashes at page 255',
patches: [{ patches: [
offset: 0x4E0897, // Fix stupid uint8_t usage in the func signature
off: [0xFF, 0xE1, 0x48, 0x8D, 0x55, 0x20, 0x48, 0x8B, 0xCF, 0xE8, 0x3B, 0x87, 0xE4, 0xFF, 0x45, 0x33, 0xC0, 0x41, 0x8D, 0x50], {offset: 0x331524, off: [0x0f, 0xb6, 0xda], on: [0x89, 0xd3, 0x90]},
on: [0xBA, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8B, 0xCB, 0xE8, 0x0C, 0xCB, 0xFF, 0xFF, 0xE9, 0xE7, 0x01, 0x00, 0x00, 0x90, 0x90] {offset: 0x331545, off: [0x80, 0xfb, 0x01], on: [0x83, 0xfb, 0x01]},
}, ] {offset: 0x331633, off: [0x80, 0xfb, 0x02], on: [0x83, 0xfb, 0x02]},
}, ]), {offset: 0x331854, off: [0x0f, 0xb6, 0xc3], on: [0x89, 0xd8, 0x90]},
{offset: 0x3329a8, off: [0x0f, 0xb6, 0xea], on: [0x89, 0xd5, 0x90]},
{offset: 0x332a42, off: [0x44, 0x0f, 0xb6, 0xc5], on: [0x41, 0x89, 0xe8, 0x90]},
{offset: 0x332ac8, off: [0x0f, 0xb6, 0xea], on: [0x89, 0xd5, 0x90]},
{offset: 0x332b3a, off: [0x40, 0x84, 0xed], on: [0x85, 0xed, 0x90]},
{offset: 0x332b74, off: [0x40, 0x0f, 0xb6, 0xcd], on: [0x89, 0xe9, 0x90, 0x90]},
{offset: 0x3a1050, off: [0x0f, 0xb6, 0x91, 0x60, 0x03, 0x00, 0x00], on: [0x8b, 0x91, 0x60, 0x03, 0x00, 0x00, 0x90]},
{offset: 0x3a23ce, off: [0x0f, 0xb6, 0x97, 0x60, 0x03, 0x00, 0x00], on: [0x8b, 0x97, 0x60, 0x03, 0x00, 0x00, 0x90]},
{offset: 0x3a24ac, off: [0x0f, 0xb6, 0x97, 0x60, 0x03, 0x00, 0x00], on: [0x8b, 0x97, 0x60, 0x03, 0x00, 0x00, 0x90]},
{offset: 0x3a2584, off: [0x41, 0x0f, 0xb6, 0x17], on: [0x41, 0x8b, 0x17, 0x90]},
]
},
{
name: 'Fix bingo mirror play condition',
patches: [
// Don't use shared conditional jump with another condition if enabled, switch to a jge
{offset: 0x549025, off: [0xe9, 0xd8, 0xfb, 0xff, 0xff], on: [0xe9, 0xea, 0x00, 0x00, 0x00]},
{offset: 0x549114, off: [0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc], on: [0x0f, 0x8d, 0xed, 0xfa, 0xff, 0xff, 0xe9, 0xe5, 0xfa, 0xff, 0xff]}
]
}
]),
new Patcher('Mercury-Win64-Shipping.exe', "3.10.00", [
{
name: 'Fully disable closing time lockout',
tooltip: "Disables the 「このマシンは本日の稼働を終了しました。改めてご来店ください。」 message at closing time. You should probably disable the closing time in the test menu instead.",
patches: [
{
offset: 0x4E0897,
off: [0xFF, 0xE1, 0x48, 0x8D, 0x55, 0x20, 0x48, 0x8B, 0xCF, 0xE8, 0x3B, 0x87, 0xE4, 0xFF, 0x45, 0x33, 0xC0, 0x41, 0x8D, 0x50],
on: [0xBA, 0x00, 0x00, 0x00, 0x00, 0x48, 0x8B, 0xCB, 0xE8, 0x0C, 0xCB, 0xFF, 0xFF, 0xE9, 0xE7, 0x01, 0x00, 0x00, 0x90, 0x90]
},
]
},
{
name: 'Fix 14+ sorting',
tooltip: 'Fix crash when song difficulty is 14.6-14.9',
patches: [
{offset : 0x2480938, off: [0xFF, 0xFF, 0xFF, 0xFF], on: [0x1D, 0x00, 0x00, 0x00]},
]
},
]),
]); ]);
}); });
</script> </script>
</head> </head>
<body> <body>
<h1>WACCA REVERSE Modder</h1> <h1>WACCA Reverse Modder</h1>
</body> </body>
</html> </html>
+35
View File
@@ -0,0 +1,35 @@
<!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>