two-torial-webpatcher/ddra.html
2019-03-24 12:41:57 +10:00

133 lines
6.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DDR A 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 DllPatcherContainer([
new DllPatcher("gamemdx", [
{
name: "Force enable fast/slow",
patches: [{offset: 0x8CA60, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
},
{
name: "Force background judgement",
patches: [{offset: 0x8CA50, off: [0x8B, 0x41, 0x40], on: [0x31, 0xC0, 0x40]}]
},
{
name: "Unlock all songs",
tooltip: "Unlocks all e-amusement songs, event mode songs, ACES FOR ACES and ENDYMION",
patches: [
//e-amusement
{offset: 0x8ED83, off: [0x32, 0xC0], on: [0xB0, 0x01]},
//event mode
{offset: 0x8463B, off: [0x75], on: [0xEB]},
//ACES FOR ACES, ENDYMION, ???
{offset: 0x846D1, off: [0x32, 0xC0], on: [0xB0, 0x01]},
]
},
{
name: "Tutorial Skip",
patches: [{offset: 0x45704, off: [0x74], on: [0xEB]}]
},
{
name: "Timer Freeze",
patches: [{offset: 0x24667, off: [0x74], on: [0xEB]}]
},
{
name: "Unlock options",
tooltip: "Unlocks e-amusement exclusive options such as ARROW COLOR",
patches: [{offset: 0x7A6A2, off: [0x75], on: [0xEB]}]
},
{
name: "Force Extra Stage/Extra Encore Stage (fixed)",
patches: [
{offset: 0x5AC77, off: [0x0F, 0x85], on: [0x90, 0xE9]},
{offset: 0x5ADD2, off: [0x0F, 0x85], on: [0x90, 0xE9]},
]
},
{
name: "Enable DDR SELECTION",
tooltip: "Even works in offline/local mode!",
patches: [{offset: 0x75774, off: [0xE8, 0xC7, 0x71, 0x01], on: [0xB8, 0x01, 0x00, 0x00]}]
},
], "2018-10-22"),
new DllPatcher("gamemdx", [
{
name: "Force enable fast/slow",
patches: [{offset: 0x84EC0, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
},
{
name: "Force background judgement",
patches: [{offset: 0x84EB0, off: [0x8B, 0x41, 0x40], on: [0x31, 0xC0, 0x40]}]
},
{
name: "Force darkest background",
patches: [
{offset: 0x84E84, off: [0xCC, 0xCC, 0xCC, 0xCC, 0xCC], on: [0x31, 0xC0, 0xB0, 0x03, 0xC3]},
{offset: 0x1AE838, off: [0x40, 0xDF, 0x0D, 0x10], on: [0x84, 0x5A, 0x08, 0x10]}
]
},
{
name: "Unlock all songs (old)",
tooltip: "Do not use this anymore. It's only here to toggle off.",
patches: [{offset: 0x1AE58C, off: [0x6C], on: [0x66]}]
},
{
name: "Unlock all songs",
tooltip: "Unlocks all e-amusement songs, event mode songs, ACES FOR ACES and ENDYMION",
patches: [
//e-amusement
{offset: 0x86CD8, off: [0x32, 0xC0], on: [0xB0, 0x01]},
//event mode
{offset: 0x7DEFE, off: [0x75], on: [0xEB]},
//ACES FOR ACES, ENDYMION
{offset: 0x7DF3E, off: [0x32, 0xC0], on: [0xB0, 0x01]},
]
},
{
name: "Tutorial Skip",
patches: [{offset: 0x41844, off: [0x74], on: [0xEB]}]
},
{
name: "Timer Freeze",
patches: [{offset: 0x23127, off: [0x74], on: [0xEB]}]
},
{
name: "Unlock options",
tooltip: "Unlocks e-amusement exclusive options such as ARROW COLOR",
patches: [{offset: 0x73E52, off: [0x75], on: [0xEB]}]
},
{
name: "Force Extra Stage/Extra Encore Stage (fixed)",
patches: [
{offset: 0x5483B, off: [0x0F, 0x85], on: [0x90, 0xE9]},
{offset: 0x549C0, off: [0x0F, 0x85], on: [0x90, 0xE9]},
]
},
{
name: "Disable Credit Consumption",
tooltip: "Similar to FREE PLAY, but allows premium credit options. Requires 1 credit.",
patches: [
{offset: 0x8B8A, off: [0x74, 0x0B], on: [0xEB, 0x09]},
{offset: 0x8BEC, off: [0x74, 0x0B], on: [0xEB, 0x09]},
{offset: 0x8C4C, off: [0x74, 0x0B], on: [0xEB, 0x09]},
{offset: 0x8BC9, off: [0x74, 0x2E], on: [0xEB, 0x2C]},
{offset: 0x8C29, off: [0x74, 0x2E], on: [0xEB, 0x2C]},
]
},
], "2018-04-23"),
]);
});
</script>
</head>
<body>
<h1>DDR A DLL Modder</h1>
</body>
</html>