-
Notifications
You must be signed in to change notification settings - Fork 134
/
beatstream1.html
33 lines (33 loc) · 1.28 KB
/
beatstream1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BeatStream 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("beatstream.dll", "2015-12-01", [
{
name: "E: drive fix",
tooltip: "Fix crash caused by no E: drive",
patches: [{offset: 0xB6A994, off: [0x65, 0x3A, 0x2F], on: [0x64, 0x65, 0x76]}]
},
{
name: "Unlock all songs",
patches: [{
offset: 0x1740B6,
off: [0x48, 0x83, 0xFD, 0x10, 0x72, 0x09, 0x48, 0x8D, 0x79, 0x08],
on: [0xBB, 0x00, 0x00, 0x00, 0x00, 0xE9, 0xAE, 0x01, 0x00, 0x00]
}]
},
]),
]);
});
</script>
</head>
<body>
<h1>BeatStream DLL Modder</h1>
</body>
</html>