forked from mon/BemaniPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jubeatripples.html
76 lines (76 loc) · 3.35 KB
/
jubeatripples.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jubeat ripples 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("jubeat.exe", "2009-12-24 (China Ver.1)", [
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0x6C2A1, off: [0x75], on: [0xEB]}]
},
{
name: "Skip Tutorial",
patches: [{offset: 0x3700F, off: [0x75], on: [0xEB]}]
},
{
name: "Unlock All Songs",
patches: [{offset: 0xA2BDD, off: [0x0F, 0x9D, 0xC0], on: [0x90, 0x90, 0x90]}]
}
]),
new Patcher("jubeat.exe", "2010-02-26", [
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0x78851, off: [0x75], on: [0xEB]}]
},
{
name: "Skip Tutorial",
patches: [{offset: 0x41DDF, off: [0x75], on: [0xEB]}]
},
{
name: "Unlock All Songs",
patches: [{offset: 0xADBD0,
off: [0x8B, 0x55, 0xC8, 0x89, 0x51, 0x34, 0x0F, 0xBF, 0x45, 0xB8, 0x33, 0xC9, 0x85, 0xC0, 0x0F, 0x9D, 0xC1],
on: [0xBA, 0x00, 0x00, 0x00, 0x00, 0x89, 0x51, 0x34, 0x0F, 0xBF, 0x45, 0xB8, 0x33, 0xC9, 0x85, 0xC0, 0x90]}]
}
]),
new Patcher("jubeat.exe", "2011-04-16 (China Ver.2)", [
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0x6C29D, off: [0x75], on: [0xEB]}]
},
{
name: "Skip Tutorial",
patches: [{offset: 0x35A8F, off: [0x75], on: [0xEB]}]
},
{
name: "Unlock All Songs",
patches: [{offset: 0xA48CD, off: [0x0F, 0x9D, 0xC0], on: [0x90, 0x90, 0x90]}]
}
]),
new Patcher("jubeat.exe", "2012-07-06 (China Ver.3)", [
{
name: "SELECT MUSIC Timer Lock",
patches: [{offset: 0xAA981, off: [0x75], on: [0xEB]}]
},
{
name: "Skip Tutorial",
patches: [{offset: 0x74F82, off: [0x75], on: [0xEB]}]
},
{
name: "Unlock All Songs",
patches: [{offset: 0xDA75C, off: [0x0F, 0x9D, 0xC0], on: [0x90, 0x90, 0x90]}]
}
])
])
});
</script>
</head>
<body>
<h1>jubeat ripples Modder</h1>
</body>
</html>