add 'Sunny Park', update 'jubeat saucer fulfill' (#257)

* add sunny park img

* add sunny park

* add sunny park

* add coin unlock
This commit is contained in:
ikaros14
2022-04-04 11:10:30 +09:00
committed by GitHub
parent 86b10cfd80
commit f028f55871
4 changed files with 104 additions and 2 deletions
+30
View File
@@ -0,0 +1,30 @@
<!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">
<!-- don't hate -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script type="text/javascript" src="js/FileSaver.min.js"></script>
<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>