forked from mon/BemaniPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjubeatfesto.html
129 lines (129 loc) · 5.95 KB
/
jubeatfesto.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jubeat festo DLL Modder</title>
<link rel="stylesheet" href="css/style.css">
<!-- don't hate -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script type="text/javascript" src="js/FileSaver.min.js"></script>
<script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript">
window.addEventListener("load", function() {
new PatchContainer([
new Patcher("jubeat.dll", "2020-07-27", [
{
name: "Disable Turorial",
patches: [{offset: 0xB766F, off: [0x0F, 0x85, 0x7F, 0x01, 0x00, 0x00], on: [0xE9, 0x80, 0x01, 0x00, 0x00, 0x90]}]
},
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0xA0B92, off: [0x75], on: [0xEB]}]
},
{
name: "Skip CATEGORY SELECT",
patches: [{offset: 0xA0F17, off: [0x04], on: [0x07]}]
},
]),
new Patcher("jubeat.dll", "2020-06-30", [
{
name: "SELECT MUSIC Timer Lock",
patches: [{ offset: 0xa06e2, off: [0x75], on: [0xeb] }],
},
{
name: "Skip CATEGORY SELECT",
patches: [{ offset: 0xa0a67, off: [0x04], on: [0x07] }],
},
]),
new Patcher("jubeat.dll", "2020-06-11", [
{
name: "Disable Tutorial",
patches: [{offset: 0xB70FF, off: [0x0F, 0x85, 0x7F, 0x01, 0x00, 0x00], on: [0xE9, 0x80, 0x01, 0x00, 0x00, 0x90]}]
},
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0xA0632, off: [0x75], on: [0xEB]}]
},
{
name: "Skip CATEGORY SELECT",
patches: [{offset: 0xA09B7, off: [0x04], on: [0x07]}]
},
]),
new Patcher("jubeat.dll", "2020-02-19", [
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0xA0272, off: [0x75], on: [0xEB]}]
},
{
name : "Skip CATEGORY SELECT",
patches: [{offset: 0xA05F7, off: [0x04], on: [0x07]}]
},
]),
new Patcher("jubeat.dll", "2019-09-03", [
{
name: "Disable Tutorial",
patches: [{offset: 0xC0047, off: [0x0F, 0x85, 0xD6, 0x01, 0x00, 0x00], on: [0xE9, 0xD7, 0x01, 0x00, 0x00, 0x90]}]
},
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0xA72E7, off: [0x75], on: [0xEB]}]
},
{
name : "Skip CATEGORY SELECT",
patches: [{offset: 0xA7663, off: [0x04], on: [0x07]}]
},
]),
new Patcher("jubeat.dll", "2019-06-25", [
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0xA7227, off: [0x75], on: [0xEB]}]
},
{
name: "Online Matching Skip",
patches: [{offset: 0xBBD0B, off: [0x0F, 0x8D, 0x72, 0x01], on: [0xE9, 0x73, 0x01, 0x00]}]
},
]),
new Patcher("jubeat.dll", "2019-04-22", [
{
name: "Disable Tutorial",
patches: [{offset: 0xBFC97, off: [0x0F, 0x85, 0xD6, 0x01, 0x00, 0x00], on: [0xE9, 0xD7, 0x01, 0x00, 0x00, 0x90]}]
},
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0xA6EB7, off: [0x75], on: [0xEB]}]
},
{
name : "Skip CATEGORY SELECT",
patches: [{offset: 0xA7233, off: [0x04], on: [0x07]}]
},
]),
new Patcher("jubeat.dll", "2018-11-27", [
// Ported by Cammy
{
name : "Disable Tutorial",
patches: [{offset: 0xBE5B7, off: [0x0F, 0x85, 0xD6, 0x01, 0x00, 0x00], on: [0xE9, 0xD7, 0x01, 0x00, 0x00, 0x90]}]
},
// Ported by Cammy
{
name : "SELECT MUSIC Timer Lock",
patches: [{offset: 0xA5672, off: [0x75], on: [0xEB]}]
},
{
name : "Skip CATEGORY SELECT",
patches: [{offset: 0xA59F5, off: [0x04], on: [0x07]}]
},
]),
new Patcher("music_db.dll", "music_db.dll", [
{
name : "Unlock all songs",
patches : [{offset : 0x2363, off: [0x74, 0x14], on : [0x90, 0x90]}]
},
])
]);
});
</script>
</head>
<body>
<h1>jubeat festo DLL Modder</h1>
</body>
</html>