Add SDVX V (#103)

* Add SDVX V

* Fix indenting, thanks Notepad++

* Note about this DLL being for CN

Co-authored-by: Will <will@mon.im>
This commit is contained in:
JeDaYoshi
2020-01-14 01:18:52 -04:00
committed by Will
parent 41ef8fabff
commit 1ba23ac07a
3 changed files with 42 additions and 0 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

+6
View File
@@ -200,6 +200,12 @@
<div>SDVX IV HEAVENLY HAVEN</div>
</div>
</a>
<a href="sdvx5.html" class="gameicon">
<div>
<img src="img/sdvx5.png">
<div>SDVX V VIVID WAVE</div>
</div>
</a>
</div>
<pre class="tagline">Most 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>
+36
View File
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>SDVX V DLL Modder</title>
<link rel='stylesheet' href='css/style.css'>
<!-- don't hate -->
<script src='https://code.jquery.com/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([
// taken from /1cc/, added to bemanipatcher by JeDaYoshi
new Patcher('soundvoltex.dll', "2019-10-31 (CN ver.)", [
{
name: 'Unlock all songs',
patches: [
{offset : 0x5204F5, off: [0x8B, 0x4C, 0x24, 0x34, 0xE8, 0xF2, 0x09, 0x00, 0x00], on: [0xB8, 0x03, 0x00, 0x00, 0x00, 0x90, 0x90, 0x90, 0x90]},
{offset : 0x5AAC02, off: [0xE8, 0x99, 0x8E, 0x08, 0x00], on: [0xB8, 0x0D, 0x00, 0x00, 0x00]}
]
},
{
name: 'Freeze timer in all modes',
tooltip: 'Useful to play with Omega Dimension Ex-Track',
patches: [{offset: 0x458124, off: [0x8B, 0x83, 0xA0, 0x00, 0x00, 0x00, 0x85, 0xC0, 0x74, 0x08], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90]}]
}
])
]);
});
</script>
</head>
<body>
<h1>SDVX V DLL Modder</h1>
</body>
</html>