two-torial-webpatcher/popn21sunnypark.html
2022-05-28 13:48:36 +10:00

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>