two-torial-webpatcher/popn25peace.html

63 lines
2.7 KiB
HTML
Raw Normal View History

2019-08-03 10:16:30 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>pop'n music peace 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 () {
2019-11-17 11:58:28 +01:00
new PatchContainer([
new Patcher("popn22.dll", "2019-04-23", [
2019-08-03 10:16:30 +02:00
{
name: "E: Drive Fix",
2019-08-03 10:16:30 +02:00
tooltip: "Fix crash caused by no E: drive",
patches: [{ offset: 0x273C38, off: [0x65, 0x3A, 0x2F], on: [0x64, 0x65, 0x76] }],
2019-08-03 10:16:30 +02:00
},
{
name: "HDMI Audio Fix",
patches: [{ offset: 0x1307EC, off: [0x85, 0xC0, 0x75, 0x96], on: [0x90, 0x90, 0x90, 0x90] }],
2019-08-03 10:16:30 +02:00
},
{
name: "Prevent Windows volume change on boot",
tooltip: "If your volume gets forced to max, turn this on",
patches: [{ offset: 0x1333F0, off: [0x83], on: [0xC3] }],
2019-08-03 10:16:30 +02:00
},
{
name: "Boot to Event Mode",
patches: [{ offset: 0x105280, off: [0x8B, 0x00, 0xC3, 0xCC], on: [0x31, 0xC0, 0x40, 0xC3] }],
},
{
name: "Remove Timer",
patches: [{ offset: 0xDF09C, off: [0x0F, 0x85], on: [0x90, 0xE9] }],
},
{
name: "Skip Menu and Long Note Tutorials",
patches: [
{ offset: 0x28BCB, off: [0x74], on: [0xEB] },
{ offset: 0x28BA7, off: [0x75], on: [0xEB] },
{ offset: 0x875C1, off: [0x75], on: [0xEB] },
],
2019-08-03 10:16:30 +02:00
},
{
name: "Unlock All Songs",
patches: [
{ offset: 0x10974D, off: [0x74], on: [0xEB] },
{ offset: 0x109766, off: [0x75, 0x46], on: [0x90, 0x90] },
{ offset: 0x109772, off: [0x74, 0x3A], on: [0x90, 0x90] },
{ offset: 0x10977E, off: [0x84, 0xC0], on: [0xB0, 0x01] },
],
},
2019-11-17 11:58:28 +01:00
]),
2019-08-03 10:16:30 +02:00
]);
});
</script>
</head>
<body>
<h1>pop'n music peace DLL Modder</h1>
</body>
</html>