70 lines
3.4 KiB
HTML
Raw Normal View History

<!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 IrotoI at /1cc/, added to bemanipatcher by JeDaYoshi
new Patcher('soundvoltex.dll', "2019-10-31 (CN ver.)", [
{
name: 'All songs/difficulties unlocked',
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: 'All songs "Safe"',
tooltip: 'Failing early won\'t drop you out of your session',
patches: [{offset: 0x630140, off: [0x32, 0xC0], on: [0xB0, 0x01]}]
},
{
name: 'No "Safe" banner on jackets',
tooltip: 'Remove visual clutter',
patches: [{offset: 0x72E560, off: [0x73], on: [0x00]}]
},
{
name: 'Boot into Event Mode',
patches: [{offset: 0x50FCF0, off: [0x33, 0xC0, 0xC7, 0x41, 0x08, 0x64, 0x05, 0x00, 0x00, 0x48, 0x89, 0x01, 0xC3, 0xCC, 0xCC, 0xCC, 0xCC], on: [0x31, 0xC0, 0x67, 0x8D, 0x40, 0x01, 0xC7, 0x41, 0x08, 0x64, 0x05, 0x00, 0x00, 0x48, 0x89, 0x01, 0xC3]}]
},
{
name: 'PFree (Unlimited plays)',
tooltip: 'If you crash, you will finish your session unless you use \'All songs "Safe"\'. Song clears/scores only, mission progress and custom settings do not save',
patches: [{offset: 0x536D5A, off: [0x48, 0x63, 0x81, 0xA8, 0x12, 0x00, 0x00, 0x48, 0x8B, 0xF2, 0x48, 0x8B, 0xF9, 0x83, 0xF8, 0x04, 0x0F, 0x8D, 0x01, 0x02, 0x00, 0x00], on: [0x48, 0xc7, 0xc0, 0x01, 0x00, 0x00, 0x00, 0x48, 0x89, 0x81, 0xa8, 0x12, 0x00, 0x00, 0x48, 0x89, 0xd6, 0x48, 0x89, 0xcf, 0x90, 0x90]}]
},
{
name: 'Allow ARS (Alternative Rate System) Option',
patches: [{offset: 0x62D14F, off: [0x74], on: [0xEB]}]
},
{
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]}]
},
{
name: 'Non-Effective Rate gauges start at 0%',
tooltip: 'This affects all "Hard" Gauge types',
patches: [{offset: 0x57AF0E, off: [0x10, 0x27], on: [0x01, 0x00]}]
},
{
name: 'Non-Effective Rate gauges do not recover',
tooltip: 'This affects all "Hard" Gauge types',
patches: [{offset: 0x57B9B3, off: [0x41, 0x01, 0x41, 0x68], on: [0x90, 0x90, 0x90, 0x90]}]
}
])
]);
});
</script>
</head>
<body>
<h1>SDVX V DLL Modder</h1>
</body>
</html>