A few more DDR A hex edits and fixing some of my derpiness (#37)

* Fix DDR A page formatting, add timer freeze and tutorial skip hex edits

* Remove broken patch, fix offset for darkest background

* Fix tiny mistake on BST1 page
This commit is contained in:
Michael 2018-12-15 01:11:17 -05:00 committed by Will
parent 09eed5d2e9
commit a27e291bcc
2 changed files with 42 additions and 38 deletions

View File

@ -21,7 +21,7 @@
name: "Unlock all songs", name: "Unlock all songs",
patches: [{ patches: [{
offset: 0x1740B6, offset: 0x1740B6,
off: [0x48, 0x83, 0xFD, 0x10, 0x72, 0x09, 0x48, 0x8B, 0x79, 0x08], off: [0x48, 0x83, 0xFD, 0x10, 0x72, 0x09, 0x48, 0x8D, 0x79, 0x08],
on: [0xBB, 0x00, 0x00, 0x00, 0x00, 0xE9, 0xAE, 0x01, 0x00, 0x00] on: [0xBB, 0x00, 0x00, 0x00, 0x00, 0xE9, 0xAE, 0x01, 0x00, 0x00]
}] }]
}, },

View File

@ -1,39 +1,43 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang='en'> <html lang="en">
<head> <head>
<meta charset='utf-8'> <meta charset="utf-8">
<title>DDR A DLL Modder</title> <title>DDR A DLL Modder</title>
<link rel='stylesheet' href='css/style.css'> <link rel="stylesheet" href="css/style.css">
<!-- don't hate --> <!-- don't hate -->
<script src='https://code.jquery.com/jquery-3.3.1.slim.min.js'></script> <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/FileSaver.min.js"></script>
<script type='text/javascript' src='js/dllpatcher.js'></script> <script type="text/javascript" src="js/dllpatcher.js"></script>
<script type='text/javascript'> <script type="text/javascript">
window.addEventListener('load', function () { window.addEventListener("load", function () {
new DllPatcherContainer([ new DllPatcherContainer([
new DllPatcher('gamemdx', [ new DllPatcher("gamemdx", [
{ {
name: 'Force enable fast/slow', name: "Force enable fast/slow",
patches: [{offset: 0x84EC0, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}] patches: [{offset: 0x84EC0, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
}, },
{ {
name: 'Force background judgement', name: "Force background judgement",
patches: [{offset: 0x84EB0, off: [0x8B, 0x41, 0x40], on: [0x31, 0xC0, 0x40]}] patches: [{offset: 0x84EB0, off: [0x8B, 0x41, 0x40], on: [0x31, 0xC0, 0x40]}]
}, },
{ {
name: 'Force darkest background', name: "Force darkest background",
patches: [ patches: [
{offset: 0x84E84, off: [0xCC, 0xCC, 0xCC, 0xCC, 0xCC], on: [0x31, 0xC0, 0xB0, 0x03, 0xC3]}, {offset: 0x84E84, off: [0xCC, 0xCC, 0xCC, 0xCC, 0xCC], on: [0x31, 0xC0, 0xB0, 0x03, 0xC3]},
{offset: 0x1AE383, off: [0x40, 0xDF, 0x0D, 0x10], on: [0x84, 0x5A, 0x08, 0x10]} {offset: 0x1AE838, off: [0x40, 0xDF, 0x0D, 0x10], on: [0x84, 0x5A, 0x08, 0x10]}
] ]
}, },
{ {
name: 'Unlock region', name: "Unlock all songs",
patches: [{offset: 0x1AE578, off: [0x77], on: [0x78]}] patches: [{offset: 0x1AE58C, off: [0x6C], on: [0x66]}]
}, },
{ {
name: 'Unlock all songs', name: "Tutorial Skip",
patches: [{offset: 0x1AE58C, off: [0x6C], on: [0x66]}] patches: [{offset: 0x41844, off: [0x74], on: [0xEB]}]
},
{
name: "Timer Freeze",
patches: [{offset: 0x23127, off: [0x74], on: [0xEB]}]
}, },
], "2018-04-23"), ], "2018-04-23"),
]); ]);