BemaniPatcher/gitadorahighvoltage.html
James Liu f0c76dd9c7
Add GITADORA HIGH-VOLTAGE Support (#309)
* Add GITADORA HIGH-VOLTAGE Support

Add GITADORA HIGH-VOLTAGE Support

* Add GITADORA HIGH-VOLTAGE Support

Add GITADORA HIGH-VOLTAGE Support

* Add GITADORA HIGH-VOLTAGE Support

Add GITADORA HIGH-VOLTAGE Support
2023-01-15 15:48:28 +10:00

113 lines
4.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GITADORA HIGH-VOLTAGE DLL Modder</title>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript">
window.addEventListener("load", function () {
new PatchContainer([
new Patcher("game.dll", "2021-04-21", [
{
name: "Timer Freeze",
patches: [{ offset: 0xF461F, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Cursor Hold",
patches: [{ offset: 0xB8E46, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Stage Freeze",
tooltip: "Breaks score submission to server",
patches: [{ offset: 0x115BD1, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Skip Tutorial",
patches: [{ offset: 0xE615A, off: [0x0F, 0x87], on: [0x90, 0xE9] }],
},
{
name: "Unlock all songs",
patches: [
{ offset: 0x1CE4E2, off: [0x61, 0x00], on: [0x4D, 0x01] },
{ offset: 0x1CE4FA, off: [0x63, 0x00], on: [0x4D, 0x01] },
{ offset: 0x11FFDE, off: [0x75, 0x08], on: [0xEB, 0x11] },
]
},
{
name: "Enable Long Music",
patches: [{ offset: 0x1200F4, off: [0x74], on: [0xEB] }],
},
]),
new Patcher("game.dll", "2022-09-26", [
{
name: "Timer Freeze",
patches: [{ offset: 0xF51EF, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Cursor Hold",
patches: [{ offset: 0xB9AB6, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Stage Freeze",
tooltip: "Breaks score submission to server",
patches: [{ offset: 0x1165E1, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Skip Tutorial",
patches: [{ offset: 0xE6D2A, off: [0x0F, 0x87], on: [0x90, 0xE9] }],
},
{
name: "Unlock all songs",
patches: [
{ offset: 0x1CF4F2, off: [0x61, 0x00], on: [0x4D, 0x01] },
{ offset: 0x1CF50A, off: [0x63, 0x00], on: [0x4D, 0x01] },
{ offset: 0x1208AE, off: [0x75, 0x08], on: [0xEB, 0x11] },
]
},
{
name: "Enable Long Music",
patches: [{ offset: 0x1209C4, off: [0x74], on: [0xEB] }],
},
]),
new Patcher("game.dll", "2022-10-24", [
{
name: "Timer Freeze",
patches: [{ offset: 0xF543F, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Cursor Hold",
patches: [{ offset: 0xB9CE6, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Stage Freeze",
tooltip: "Breaks score submission to server",
patches: [{ offset: 0x117471, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Skip Tutorial",
patches: [{ offset: 0xE6F7A, off: [0x0F, 0x87], on: [0x90, 0xE9] }],
},
{
name: "Unlock all songs",
patches: [
{ offset: 0x1D0512, off: [0x61, 0x00], on: [0x4D, 0x01] },
{ offset: 0x1D052A, off: [0x63, 0x00], on: [0x4D, 0x01] },
{ offset: 0x1217DE, off: [0x75, 0x08], on: [0xEB, 0x11] },
]
},
{
name: "Enable Long Music",
patches: [{ offset: 0x1218F4, off: [0x74], on: [0xEB] }],
},
]),
]);
});
</script>
</head>
<body>
<h1>GITADORA HIGH-VOLTAGE DLL Modder</h1>
</body>
</html>