-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
1 parent
4d2eb20
commit f0c76dd
Showing
3 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters