-
Notifications
You must be signed in to change notification settings - Fork 136
/
kancolle.html
74 lines (74 loc) · 2.83 KB
/
kancolle.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kancolle Arcade 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("fc.exe", "4.00.00", [
{
name: "Bypass Location Server timer",
patches: [
{offset: 0xA48F38, off: [0xFF,0xC8], on: [0x31,0xC0]},
],
},
{
name: "Bypass all start-up errors",
patches: [
{offset: 0xB8B045, off: [0x75], on: [0xEB]},
],
},
{
name: "Disable ALL.net",
patches: [
{offset: 0x289261, off: [0x01], on: [0x00]},
],
},
{
name: "Disable Card system",
patches: [
{offset: 0x289421, off: [0x01], on: [0x00]},
],
},
{
name: "Disable Partition LED",
patches: [
{offset: 0x289441, off: [0x01], on: [0x00]},
],
},
{
name: "Disable Deck reader",
patches: [
{offset: 0x289371, off: [0x01], on: [0x00]},
],
},
{
name: "Disable Gear POP LED",
patches: [
{offset: 0x2893C1, off: [0x01], on: [0x00]},
],
},
{
name: "Disable Printer",
patches: [
{offset: 0x289451, off: [0x01], on: [0x00]},
],
},
{
name: "Disable Touch panel",
patches: [
{offset: 0x289531, off: [0x01], on: [0x00]},
],
},
])
]);
});
</script>
</head>
<body>
<h1>Kancolle Arcade Modder</h1>
</body>
</html>