forked from mon/BemaniPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popn25peace.html
150 lines (149 loc) · 7.02 KB
/
popn25peace.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>pop'n music peace 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("popn22.dll", "2019-04-23", [
{
name: "E: Drive Fix",
tooltip: "Fix crash caused by no E: drive",
patches: [{ offset: 0x273C38, off: [0x65, 0x3A, 0x2F], on: [0x64, 0x65, 0x76] }],
},
{
name: "HDMI Audio Fix",
patches: [{ offset: 0x1307EC, off: [0x85, 0xC0, 0x75, 0x96], on: [0x90, 0x90, 0x90, 0x90] }],
},
{
name: "Prevent Windows volume change on boot",
tooltip: "If your volume gets forced to max, turn this on",
patches: [{ offset: 0x1333F0, off: [0x83], on: [0xC3] }],
},
{
name: "Boot to Event Mode",
patches: [{ offset: 0x105280, off: [0x8B, 0x00, 0xC3, 0xCC], on: [0x31, 0xC0, 0x40, 0xC3] }],
},
{
name: "Remove Timer",
patches: [{ offset: 0xDF09C, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Skip Menu and Long Note Tutorials",
patches: [
{ offset: 0x28BCB, off: [0x74], on: [0xEB] },
{ offset: 0x28BA7, off: [0x75], on: [0xEB] },
{ offset: 0x875C1, off: [0x75], on: [0xEB] },
],
},
{
name: "Unlock All Songs",
patches: [
{ offset: 0x10974D, off: [0x74], on: [0xEB] },
{ offset: 0x109766, off: [0x75, 0x46], on: [0x90, 0x90] },
{ offset: 0x109772, off: [0x74, 0x3A], on: [0x90, 0x90] },
{ offset: 0x10977E, off: [0x84, 0xC0], on: [0xB0, 0x01] },
]
},
]),
new Patcher("popn22.dll", "2019-06-25", [
{
name: "E: Drive Fix",
tooltip: "Fix crash caused by no E: drive",
patches: [{ offset: 0x278DA0, off: [0x65, 0x3A, 0x2F], on: [0x64, 0x65, 0x76] }],
},
{
name: "HDMI Audio Fix",
patches: [{ offset: 0x13097C, off: [0x85, 0xC0, 0x75, 0x96], on: [0x90, 0x90, 0x90, 0x90] }],
},
{
name: "Prevent Windows volume change on boot",
tooltip: "If your volume gets forced to max, turn this on",
patches: [{ offset: 0x133580, off: [0x83], on: [0xC3] }],
},
{
name: "Boot to Event Mode",
patches: [{ offset: 0x105400, off: [0x8B, 0x00, 0xC3, 0xCC], on: [0x31, 0xC0, 0x40, 0xC3] }],
},
{
name: "Remove Timer",
patches: [{ offset: 0xDF1AC, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Skip Menu and Long Note Tutorials",
patches: [
{ offset: 0x28C0B, off: [0x74], on: [0xEB] },
{ offset: 0x28BE7, off: [0x75], on: [0xEB] },
{ offset: 0x876D1, off: [0x75], on: [0xEB] },
],
},
{
name: "Unlock All Songs",
patches: [
{ offset: 0x1098DD, off: [0x74], on: [0xEB] },
{ offset: 0x1098F6, off: [0x75, 0x46], on: [0x90, 0x90] },
{ offset: 0x109902, off: [0x74, 0x3A], on: [0x90, 0x90] },
{ offset: 0x10990E, off: [0x84, 0xC0], on: [0xB0, 0x01] },
]
},
]),
new Patcher("popn22.dll", "2020-09-28", [
{
name: "E: Drive Fix",
tooltip: "Fix crash caused by no E: drive",
patches: [{ offset: 0x286AA8, off: [0x65, 0x3A, 0x2F], on: [0x64, 0x65, 0x76] }],
},
{
name: "HDMI Audio Fix",
patches: [{ offset: 0x13442C, off: [0x85, 0xC0, 0x75, 0x96], on: [0x90, 0x90, 0x90, 0x90] }],
},
{
name: "Prevent Windows volume change on boot",
tooltip: "If your volume gets forced to max, turn this on",
patches: [{ offset: 0x137030, off: [0x83], on: [0xC3] }],
},
{
name: "Boot to Event Mode",
patches: [{ offset: 0x108DC0, off: [0x8B, 0x00, 0xC3, 0xCC], on: [0x31, 0xC0, 0x40, 0xC3] }],
},
{
name: "Remove Timer",
patches: [{ offset: 0xE294C, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Skip Menu and Long Note Tutorials",
patches: [
{ offset: 0x28E0B, off: [0x74], on: [0xEB] },
{ offset: 0x28DE7, off: [0x75], on: [0xEB] },
{ offset: 0x8AE71, off: [0x75], on: [0xEB] },
],
},
{
name: "Unlock Deco Parts",
patches: [{ offset: 0xF9E03, off: [0x75, 0x22], on: [0x90, 0x90] }],
},
{
name: "Unlock Characters",
patches: [{ offset: 0xF2C2E, off: [0x74], on: [0xEB] }],
},
{
name: "Unlock All Songs",
patches: [
{ offset: 0x10D2E2, off: [0x74], on: [0xEB] },
{ offset: 0x10D2FB, off: [0x74], on: [0xEB] },
{ offset: 0x10D318, off: [0x75], on: [0xEB] },
{ offset: 0x10D33B, off: [0x84, 0xC0], on: [0xB0, 0x01] },
]
},
]),
]);
});
</script>
</head>
<body>
<h1>pop'n music peace DLL Modder</h1>
</body>
</html>