mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 10:57:36 +01:00
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>pop'n music Tune Street 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("popn19.dll", "2011-06-14", [
|
|
{
|
|
name : "Partial Songs Unlock",
|
|
tooltip: "Unlock a song dedicated to e-amusement that cannot be unlocked by phase MAX.",
|
|
patches: [
|
|
{ offset: 0x6E5E2,
|
|
off: [0xA9, 0x00, 0x00, 0x00, 0x08, 0x74, 0x23, 0x8B, 0xC7, 0xE8, 0xC0, 0xF9, 0x03, 0x00, 0x84, 0xC0],
|
|
on: [0xB0, 0x01, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90] },
|
|
]},
|
|
]),
|
|
]);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>pop'n music Tune Street DLL Modder</h1>
|
|
</body>
|
|
</html>
|