mirror of
https://github.com/two-torial/webpatcher.git
synced 2025-01-19 16:18:40 +01:00
SDVX V: Add more options (#104)
* SDVX V: Add songs safe and PFree * Add note about possible crash * SDVX V: Add No safe banner and ARS * Add proper source to SDVX V * SDVX V: Add event mode, excessive HP * SDVX V: Misc tooltip change * SDVX V: Change PFree note/tooltip
This commit is contained in:
parent
1ba23ac07a
commit
dfe1f64149
41
sdvx5.html
41
sdvx5.html
@ -11,19 +11,52 @@
|
||||
<script type='text/javascript'>
|
||||
window.addEventListener('load', function () {
|
||||
new PatchContainer([
|
||||
// taken from /1cc/, added to bemanipatcher by JeDaYoshi
|
||||
// taken from IrotoI at /1cc/, added to bemanipatcher by JeDaYoshi
|
||||
new Patcher('soundvoltex.dll', "2019-10-31 (CN ver.)", [
|
||||
{
|
||||
name: 'Unlock all songs',
|
||||
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]}
|
||||
{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]}]
|
||||
}
|
||||
])
|
||||
]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user