Synchronica (#209)

* Add files via upload

* Add files via upload

* Update index.html

* Add files via upload
This commit is contained in:
ora-ora-ora-ora-ora-ora-ora-ora-ora-ora
2021-07-12 19:27:56 -04:00
committed by GitHub
parent bda8b03294
commit 2941e163d6
3 changed files with 59 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

+6
View File
@@ -308,6 +308,12 @@
<div>SDVX VI EXCEED GEAR</div>
</div>
</a>
<a href="synchronica.html" class="gameicon">
<div>
<img src="img/synchronica.png">
<div>SYNCHRONICA</div>
</div>
</a>
</div>
<pre class="tagline">Patches are community created. <a href="https://github.com/mon/BemaniPatcher/">Submit your own via Pull Request!</a></pre>
<pre class="tagline"><em>Converted to a web-tool by <a href="https://github.com/mon/">mon</a></em></pre>
+53
View File
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Synchronica Modder</title>
<link rel="stylesheet" href="css/style.css">
<!-- don't hate -->
<script type="text/javascript" src="js/jquery-3.3.1.slim.min.js"></script>
<script type="text/javascript" src="js/FileSaver.min.js"></script>
<script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript">
window.addEventListener("load", function () {
new PatchContainer([
new Patcher("sync_release.exe", "sync_release.exe", [
{
name: "Force SIDE R",
tooltip: "for multiplayer 2P and 4P slots, change in test menu",
patches: [
{offset: 0x001506C7, off: [0x00], on: [0x01]},
{offset: 0x00324A07, off: [0x00], on: [0x01]},
{offset: 0x00345087, off: [0x00], on: [0x01]},
{offset: 0x003467F8, off: [0x75], on: [0xEB]},
{offset: 0x0039F556, off: [0x01], on: [0x02]},
{offset: 0x0039F914, off: [0x03], on: [0x02]},
{offset: 0x003A1458, off: [0x00], on: [0x01]},
],
},
{
name: "F:\\ and G:\\ drive fix",
patches: [
{offset: 0x0096A730, off: [0x46,0x3A,0x5C], on: [0x2E,0x5C,0x00]},
{offset: 0x009CBB0C, off: [0x47,0x3A,0x5C], on: [0x2E,0x5C,0x00]},
],
},
]),
new Patcher("wajvio.dll", "wajvio.dll", [
{
name: "Set fail state on inter-cab I/O and spoof that there are 99 sync cabs connected",
tooltip: "required for Force SIDE R",
patches: [
{offset: 0x2B20, off: [0xa1], on: [0xb8]},
{offset: 0x2BC0, off: [0x6A, 0x00, 0xe8, 0x29, 0xfd, 0xff, 0xff], on: [0x31, 0xc0, 0x90, 0x90, 0x90, 0x90, 0x90]},
],
},
]),
]);
});
</script>
</head>
<body>
<h1>Synchronica Modder</h1>
</body>
</html>