mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-12-02 19:17:25 +01:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
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">
|
|||
|
<!-- 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>
|