2018-12-07 05:55:46 +01:00
|
|
|
<!DOCTYPE html>
|
2018-12-15 07:11:17 +01:00
|
|
|
<html lang="en">
|
2018-12-07 05:55:46 +01:00
|
|
|
<head>
|
2018-12-15 07:11:17 +01:00
|
|
|
<meta charset="utf-8">
|
2018-12-07 05:55:46 +01:00
|
|
|
<title>DDR A DLL Modder</title>
|
2018-12-15 07:11:17 +01:00
|
|
|
<link rel="stylesheet" href="css/style.css">
|
2018-12-07 05:55:46 +01:00
|
|
|
<!-- don't hate -->
|
2018-12-15 07:11:17 +01:00
|
|
|
<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([
|
2019-03-23 01:58:39 +01:00
|
|
|
new DllPatcher("gamemdx", [
|
2019-07-25 06:09:42 +02:00
|
|
|
{
|
|
|
|
name: "Force enable fast/slow",
|
2019-07-25 08:36:34 +02:00
|
|
|
patches: [{offset: 0x97C60, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
|
2019-07-25 06:09:42 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Force background judgement",
|
2019-07-25 08:36:34 +02:00
|
|
|
patches: [{offset: 0x97C50, off: [0x8B, 0x41], on: [0x31, 0xC0]}]
|
2019-07-25 06:09:42 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Force darkest background",
|
2019-07-25 08:36:34 +02:00
|
|
|
patches: [{offset: 0x98A0E, off: [0x75, 0x03, 0x33, 0xC0], on: [0x33, 0xC0, 0xB0, 0x03]}]
|
2019-07-25 06:09:42 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Song Unlock (Incomplete)",
|
|
|
|
tooltip: "Unlocks all event mode songs, ACES FOR ACES and ENDYMION, A20, but still requires a musicdb edit to remove all restrictions.",
|
|
|
|
patches: [
|
|
|
|
//Event Mode unlocks A4A here
|
|
|
|
{offset: 0x846D1, off: [0x45, 0xF4], on: [0x90, 0xE9]},
|
2019-07-25 08:36:34 +02:00
|
|
|
//A20+ Songs
|
|
|
|
{offset: 0x8D007, off: [0x32, 0xC0], on: [0xB0, 0x01]},
|
2019-07-25 06:09:42 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Tutorial Skip",
|
2019-07-25 08:36:34 +02:00
|
|
|
patches: [{offset: 0x49D33, off: [0x75], on: [0xEB]}]
|
2019-07-25 06:09:42 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Timer Freeze",
|
2019-07-25 08:36:34 +02:00
|
|
|
patches: [{offset: 0x275D7, off: [0x74], on: [0xEB]}]
|
2019-07-25 06:09:42 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Unlock options",
|
|
|
|
tooltip: "Unlocks e-amusement exclusive options such as ARROW COLOR",
|
|
|
|
patches: [{offset: 0x82733, off: [0x75], on: [0xEB]}]
|
|
|
|
},
|
2019-07-25 08:36:34 +02:00
|
|
|
{
|
|
|
|
// by nibs & dogelition_man
|
2019-07-25 06:09:42 +02:00
|
|
|
name: "Force Cabinet Type 6",
|
2019-07-25 08:36:34 +02:00
|
|
|
tooltip: "This will cause the game to load a different theme, some assets (such as menu background) may not work with this forced code.",
|
2019-07-25 06:09:42 +02:00
|
|
|
patches: [{offset: 0xDE18, off: [0xFF, 0x24], on: [0xEB, 0x71]}]
|
|
|
|
},
|
2019-07-25 08:36:34 +02:00
|
|
|
{
|
|
|
|
// by nibs
|
|
|
|
name: "Force ENDYMION menu background",
|
|
|
|
tooltip: "This will force the game to use the red cloud background instead of the default one.",
|
|
|
|
patches: [{offset: 0x1F98D, off: [0xEC], on: [0xF0]}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// by nibs & dogelition_man
|
|
|
|
name: "Skip A20 menu background loading",
|
|
|
|
tooltip: "This skips the check for the golden menu background completely, and instead will load the default",
|
|
|
|
patches: [{offset: 0x1F944, off: [0x75], on: [0xEB]}]
|
|
|
|
},
|
2019-07-25 06:09:42 +02:00
|
|
|
], "2019-04-22"),
|
|
|
|
new DllPatcher("gamemdx", [
|
2019-03-24 03:41:57 +01:00
|
|
|
{
|
|
|
|
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]}]
|
|
|
|
},
|
2019-03-25 03:14:59 +01:00
|
|
|
{
|
|
|
|
name: "Force darkest background",
|
|
|
|
patches: [{offset: 0x8D53B, off: [0x75, 0x03, 0x33, 0xC0], on: [0x33, 0xC0, 0xB0, 0x03]}]
|
|
|
|
},
|
2019-03-23 01:58:39 +01:00
|
|
|
{
|
|
|
|
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, ???
|
2019-03-24 03:41:57 +01:00
|
|
|
{offset: 0x846D1, off: [0x32, 0xC0], on: [0xB0, 0x01]},
|
2019-03-23 01:58:39 +01:00
|
|
|
]
|
|
|
|
},
|
2019-03-24 03:41:57 +01:00
|
|
|
{
|
|
|
|
name: "Tutorial Skip",
|
|
|
|
patches: [{offset: 0x45704, off: [0x74], on: [0xEB]}]
|
|
|
|
},
|
2019-03-23 01:58:39 +01:00
|
|
|
{
|
|
|
|
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]},
|
|
|
|
]
|
|
|
|
},
|
2019-03-24 03:41:57 +01:00
|
|
|
{
|
|
|
|
name: "Enable DDR SELECTION",
|
|
|
|
tooltip: "Even works in offline/local mode!",
|
|
|
|
patches: [{offset: 0x75774, off: [0xE8, 0xC7, 0x71, 0x01], on: [0xB8, 0x01, 0x00, 0x00]}]
|
|
|
|
},
|
2019-03-23 01:58:39 +01:00
|
|
|
], "2018-10-22"),
|
2018-12-15 07:11:17 +01:00
|
|
|
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]}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2019-01-01 23:24:00 +01:00
|
|
|
name: "Unlock all songs (old)",
|
|
|
|
tooltip: "Do not use this anymore. It's only here to toggle off.",
|
2018-12-15 07:11:17 +01:00
|
|
|
patches: [{offset: 0x1AE58C, off: [0x6C], on: [0x66]}]
|
|
|
|
},
|
2019-01-01 23:24:00 +01:00
|
|
|
{
|
|
|
|
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]},
|
|
|
|
]
|
|
|
|
},
|
2018-12-15 07:11:17 +01:00
|
|
|
{
|
|
|
|
name: "Tutorial Skip",
|
|
|
|
patches: [{offset: 0x41844, off: [0x74], on: [0xEB]}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Timer Freeze",
|
|
|
|
patches: [{offset: 0x23127, off: [0x74], on: [0xEB]}]
|
|
|
|
},
|
2018-12-16 04:48:59 +01:00
|
|
|
{
|
|
|
|
name: "Unlock options",
|
2018-12-16 04:58:36 +01:00
|
|
|
tooltip: "Unlocks e-amusement exclusive options such as ARROW COLOR",
|
2018-12-16 04:48:59 +01:00
|
|
|
patches: [{offset: 0x73E52, off: [0x75], on: [0xEB]}]
|
|
|
|
},
|
|
|
|
{
|
2018-12-29 02:51:35 +01:00
|
|
|
name: "Force Extra Stage/Extra Encore Stage (fixed)",
|
2018-12-16 04:48:59 +01:00
|
|
|
patches: [
|
2018-12-29 02:51:35 +01:00
|
|
|
{offset: 0x5483B, off: [0x0F, 0x85], on: [0x90, 0xE9]},
|
|
|
|
{offset: 0x549C0, off: [0x0F, 0x85], on: [0x90, 0xE9]},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Disable Credit Consumption",
|
2019-01-01 23:24:00 +01:00
|
|
|
tooltip: "Similar to FREE PLAY, but allows premium credit options. Requires 1 credit.",
|
2018-12-29 02:51:35 +01:00
|
|
|
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-12-16 04:48:59 +01:00
|
|
|
]
|
|
|
|
},
|
2018-12-15 07:11:17 +01:00
|
|
|
], "2018-04-23"),
|
|
|
|
]);
|
|
|
|
});
|
2018-12-07 05:55:46 +01:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-12-15 07:11:17 +01:00
|
|
|
<h1>DDR A DLL Modder</h1>
|
2018-12-07 05:55:46 +01:00
|
|
|
</body>
|
2019-03-25 03:14:59 +01:00
|
|
|
</html>
|