mirror of
https://github.com/two-torial/webpatcher.git
synced 2025-02-20 20:21:39 +01:00
Add Pendual
This commit is contained in:
parent
9592352e96
commit
9ac17eec4c
@ -12,6 +12,10 @@
|
||||
<img src="img/bisco.png">
|
||||
<div>Beatstream 2</div>
|
||||
</div></a>
|
||||
<a href="pendual.html" class="gameicon"><div>
|
||||
<img src="img/pendual.png">
|
||||
<div>Beatmania IIDX 22 Pendual</div>
|
||||
</div></a>
|
||||
<a href="copula.html" class="gameicon"><div>
|
||||
<img src="img/copula.png">
|
||||
<div>Beatmania IIDX 23 Copula</div>
|
||||
|
55
pendual.html
Normal file
55
pendual.html
Normal file
@ -0,0 +1,55 @@
|
||||
<!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>
|
Loading…
x
Reference in New Issue
Block a user