mirror of
https://github.com/two-torial/webpatcher.git
synced 2025-01-31 20:15:23 +01:00
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
|
<!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>
|