mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
Jubeat prop support, multi-DLL support, remove globals, dynamic UI creation, fix SDVX score
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat prop 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 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("jubeat", [
|
||||
{
|
||||
name : "Disable tutorial",
|
||||
shortname : "notut",
|
||||
patches : [{offset : 0x81F79, off: [0x0F, 0x85, 0xC7], on : [0xE9, 0xC6, 0x01]}]
|
||||
},
|
||||
]);
|
||||
new DllPatcher("music_db", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
shortname : "unlock",
|
||||
patches : [{offset : 0x266D, off: [0x02], on : [0x1f]}]
|
||||
},
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat prop DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user