-
Notifications
You must be signed in to change notification settings - Fork 134
/
chuniair.html
102 lines (99 loc) · 4.52 KB
/
chuniair.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CHUNITHM AIR 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([
//AIR
new Patcher("chuniApp.exe", "1.10.00", [
{
// mon AIR
name: "Allow 127.0.0.1 as the network server",
patches: [
{offset: 0x7EBFA0, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
{offset: 0x14C1C5C, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
]
},
{
// mon AIR
name: "Disable shop close lockout",
tooltip: "Disables ~12-8am lockout. Does not disable maint lockout from 6:30-7am JST",
patches: [
{offset: 0x813BB3, off: [0x74], on: [0xEB]},
],
},
{
// somewhatlurker AIR
name: "Force shared audio mode, system audio samplerate must be 48000",
tooltip: "Improves compatibility but may increase latency",
patches: [
{offset: 0xC02FFA, off: [0x01], on: [0x00]},
],
},
{
// somewhatlurker AIR
name: "Force 2 channel audio output",
patches: [
{offset: 0xC030D1, off: [0x75, 0x3F], on: [0x90, 0x90]},
],
},
{
// lybxlpsv AIR
name: "Disable Song Select Timer",
tooltip: "May only work when playing with card.",
patches: [
{offset: 0x639AF2, off: [0x74], on: [0xEB]},
],
},
{
// esterTion AIR
name: "Set All Timers to 999",
patches: [
{offset: 0x531130, off: [0x8B, 0x44, 0x24, 0x04, 0x69, 0xC0, 0xE8, 0x03, 0x00, 0x00], on: [0xB8, 0x58, 0x3E, 0x0F, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90]},
],
},
{
// lin714093880 & esterTion AIR
name: "Better patch for head-to-head play",
tooltip: "Fix infinite sync while trying to connect to head to head play.",
patches: [
{offset: 0x410293, off: [0x01], on: [0x00]},
]
},
{
name: "Patch for Windows 7",
danger: "May not be able to connect to the server",
patches: [
{offset: 0x17fd7c4, off: [0x45, 0x78], on: [0x5F, 0x41]},
{offset: 0x17fd7cd, off: [0x43, 0x61, 0x6E, 0x63, 0x65, 0x6C, 0x51, 0x75, 0x65, 0x72, 0x79], on: [0x51, 0x75, 0x65, 0x72, 0x79, 0x5F, 0x41, 0x00, 0x00, 0x00, 0x00]},
],
}
]),
]);
});
</script>
<script type="text/javascript">
window.addEventListener("load", function () {
new PatchContainer([
//AIR&AIRPLUS
new Patcher("aimeReaderHost.exe", "1.10.00", [
{
name: "Change domain obfuscation to be compatible with segatools",
tooltip: "(Scene Release Only) Patches 'aime.anbzvarg.wc' to 'nvzr.anbzvarg.wc' for Aime server check to work correctly.",
patches: [
{offset: 0xA83C4, off: [0x61, 0x69, 0x6D, 0x65, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63], on: [0x6E, 0x76, 0x7A, 0x72, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63]},
]
}
]),
]);
});
</script>
</head>
<body>
<h1>CHUNITHM AIR Modder</h1>
</body>
</html>