mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
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:
Binary file not shown.
|
After Width: | Height: | Size: 35 KiB |
@@ -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
@@ -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>
|
||||
Reference in New Issue
Block a user