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
+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>