forked from mon/BemaniPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitadorahighvoltage.html
112 lines (111 loc) · 4.8 KB
/
gitadorahighvoltage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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>