forked from mon/BemaniPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hellopopn.html
25 lines (25 loc) · 842 Bytes
/
hellopopn.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello! Pop'n Music 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 Patcher("popn.dll", "", [
{
name: "Remove the game's 10.0.*.* IP check, allowing any IP address.",
tooltip: "Without this, games will not get past server error 2-5000-0001",
patches: [
{offset: 0x0007520C, off: [0x3C, 0xC0], on: [0x3C, 0x3C]}
]
}
]);
});
</script>
</head>
<body>
<h1>Hello! Pop'n Music DLL Modder</h1>
</body>
</html>