two-torial-webpatcher/pendual.html
2017-12-05 12:28:12 +10:00

56 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IIDX Pendual DLL Modder</title>
<link rel="stylesheet" href="css/style.css">
<!-- don't hate -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45859786-5', 'auto');
ga('send', 'pageview');
</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 DllPatcher("bm2dx", [
{
name : "Timer Freeze",
shortname : "freeze",
patches : [{offset : 0x9c55e, off: [0x74], on : [0xEB]}]
},
{
name : "Premium Free",
shortname : "pfree",
patches : [{offset : 0x5d31b, off: [0x75], on : [0xEB]}]
},
{
name : "Premium Free Timer Freeze",
shortname : "pfreeze",
patches : [{offset : 0x563ad, off: [0x48], on : [0x90]}]
},
{
name : "Unlock All Songs",
shortname : "unlock",
patches : [{offset : 0x58b3e, off: [0x74, 0x0a], on : [0x90, 0x90]}]
},
{
name : "CS-Style Song Start Delay",
shortname : "delay",
tooltip : "Holding Start will pause the song at the beginning until you release it",
patches : [{offset : 0x77cf6, off: [0x7C], on : [0xEB]}]
},
]);
});
</script>
</head>
<body>
<h1>IIDX Pendual DLL Modder</h1>
</body>
</html>