mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 10:57:36 +01:00
28 lines
968 B
HTML
28 lines
968 B
HTML
<!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>
|