Skip to content

Commit

Permalink
Add enhanced continue patches (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Drew authored and mon committed Jun 19, 2018
1 parent 4e5fcdf commit fbf138e
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions sdvx4.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,63 @@
}]
},
], "2018-01-16");

new DllPatcher('soundvoltex', [
{
// Credit to kacklappen23
name: 'All songs/difficulties unlocked',
patches: [{offset: 0x154C72, off: [0xE8, 0xA9, 0x44, 0x02], on: [0xB8, 0x0D, 0x00, 0x00]},
{
offset: 0x1B7A79,
off: [0x8B, 0x44, 0x24, 0x20, 0xE8, 0x3E, 0xEB, 0xFF, 0xFF],
on: [0xB8, 0x03, 0x00, 0x00, 0x00, 0x90, 0x90, 0x90, 0x90]
}]
},
{
name: 'All songs "Safe"',
tooltip: 'Failing early won\'t drop you out of your session',
patches: [{offset: 0x1748EB, off: [0x32, 0xC0], on: [0xB0, 0x01]}]
},
{
// Created by mon
name: 'No "Safe" banner on jackets',
tooltip: 'Remove visual clutter',
patches: [{offset: 0x2EE860, off: [0x73], on: [0x00]}]
},
{
name: 'Boot into Event Mode',
patches: [{offset: 0x1992B2, off: [0x00], on: [0x01]}]
},
{
// created by zini
// ported by kacklappen23
name: 'Disable EVENT MODE/FREE PLAY text',
patches: [{offset: 0xBEEF0, off: [0xE8, 0x2B], on: [0xEB, 0x03]}]
},
{
name: 'PFree (Unlimited plays)',
tooltip: 'Song clears/scores only, mission progress and custom settings do not save',
patches: [{offset: 0x1CEE4F, off: [0x00], on: [0x02]},
{
offset: 0x1CF016,
off: [0x8B, 0x83, 0x64, 0x10, 0x00, 0x00, 0x8D, 0x48, 0x01, 0x83, 0xF9, 0x04, 0x56, 0x57, 0x7F, 0x52],
on: [0xB8, 0x01, 0x00, 0x00, 0x00, 0x89, 0x83, 0x64, 0x10, 0x00, 0x00, 0x90, 0x56, 0x57, 0x90, 0x90]
}]
},
{
// thanks Element4521
name: 'Allow ARS (Alternative Rate System) Option',
tooltip: 'At gauge select, go to excessive and press BT-D to enable',
patches: [{offset: 0x174004, off: [0x74], on: [0xEB]}]
},
{
// Created by runner38
name: 'Freeze timer in all modes',
tooltip: 'Useful to play with Omega Dimension Ex-Track',
patches: [{offset: 0x7749B, off: [0x8B, 0x43, 0x60, 0x85, 0xC0, 0x74, 0x04], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90]}]
}
], "2018-01-16 with Enhanced Continue");

// all patches ported to IV by Zelminar unless specified otherwise
// all original patches created by DJH unless specified otherwise
new DllPatcher('soundvoltex', [
Expand Down

0 comments on commit fbf138e

Please sign in to comment.