forked from mon/BemaniPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popn21sunnypark.html
27 lines (27 loc) · 968 Bytes
/
popn21sunnypark.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>pop'n music Sunny Park 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("popn21.dll", "2014-06-19", [
{
name : "Coin Unlock",
patches: [
{ offset: 0x147EF9, off: [0x00], on: [0x01] },
{ offset: 0x147F16, off: [0x00], on: [0x01] },
],
},
]),
]);
});
</script>
</head>
<body>
<h1>pop'n music Sunny Park DLL Modder</h1>
</body>
</html>