Skip to content

Commit

Permalink
Add GITADORA HIGH-VOLTAGE Support (#309)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
JamesLewisLiu authored Jan 15, 2023
1 parent 4d2eb20 commit f0c76dd
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 0 deletions.
112 changes: 112 additions & 0 deletions gitadorahighvoltage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<!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>
Binary file added img/highvoltage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ <h1>Pick a game!</h1>
<img src="img/nextage.png">
<div>GITADORA NEX+AGE</div>
</a>
<a href="gitadorahighvoltage.html" class="gameicon">
<img src="img/highvoltage.png">
<div>GITADORA HIGH-VOLTAGE</div>
</a>
</div>

<a href="futuretone.html" class="gameicon">
Expand Down

0 comments on commit f0c76dd

Please sign in to comment.