mirror of
https://github.com/two-torial/webpatcher.git
synced 2025-01-31 20:15:23 +01:00
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
This commit is contained in:
parent
4d2eb2062b
commit
f0c76dd9c7
112
gitadorahighvoltage.html
Normal file
112
gitadorahighvoltage.html
Normal file
@ -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>
|
BIN
img/highvoltage.png
Normal file
BIN
img/highvoltage.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.6 KiB |
@ -250,6 +250,10 @@
|
|||||||
<img src="img/nextage.png">
|
<img src="img/nextage.png">
|
||||||
<div>GITADORA NEX+AGE</div>
|
<div>GITADORA NEX+AGE</div>
|
||||||
</a>
|
</a>
|
||||||
|
<a href="gitadorahighvoltage.html" class="gameicon">
|
||||||
|
<img src="img/highvoltage.png">
|
||||||
|
<div>GITADORA HIGH-VOLTAGE</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a href="futuretone.html" class="gameicon">
|
<a href="futuretone.html" class="gameicon">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user