mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
Add jubeat festo (#130)
* add museca2 patches * fix stupid tabs * Add jubeat festo patches * Fix icon
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
@@ -152,6 +152,12 @@
|
||||
<div>jubeat clan</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="jubeatfesto.html" class="gameicon">
|
||||
<div>
|
||||
<img src="img/festo.png">
|
||||
<div>jubeat festo</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="museca1.html" class="gameicon">
|
||||
<div>
|
||||
<img src="img/museca1.png">
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat festo 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() {
|
||||
new PatchContainer([
|
||||
new Patcher("jubeat", "2019-09-03", [
|
||||
{
|
||||
name: "Disable Tutorial",
|
||||
patches: [{offset: 0xC0047, off: [0x0F, 0x85, 0xD6, 0x01, 0x00, 0x00], on: [0xE9, 0xD7, 0x01, 0x00, 0x00, 0x90]}]
|
||||
},
|
||||
{
|
||||
name: "SELECT MUSIC Timer Lock",
|
||||
patches: [{offset: 0xA72E7, off: [0x75], on: [0xEB]}]
|
||||
},
|
||||
{
|
||||
name : "Skip CATEGORY SELECT",
|
||||
patches: [{offset: 0xA7663, off: [0x04], on: [0x07]}]
|
||||
},
|
||||
]),
|
||||
new Patcher("jubeat", "2019-04-22", [
|
||||
{
|
||||
name: "Disable Tutorial",
|
||||
patches: [{offset: 0xBFC97, off: [0x0F, 0x85, 0xD6, 0x01, 0x00, 0x00], on: [0xE9, 0xD7, 0x01, 0x00, 0x00, 0x90]}]
|
||||
},
|
||||
{
|
||||
name: "SELECT MUSIC Timer Lock",
|
||||
patches: [{offset: 0xA6EB7, off: [0x75], on: [0xEB]}]
|
||||
},
|
||||
{
|
||||
name : "Skip CATEGORY SELECT",
|
||||
patches: [{offset: 0xA7233, off: [0x04], on: [0x07]}]
|
||||
},
|
||||
]),
|
||||
new Patcher("jubeat.dll", "2018-11-27", [
|
||||
// Ported by Cammy
|
||||
{
|
||||
name : "Disable Tutorial",
|
||||
patches: [{offset: 0xBE5B7, off: [0x0F, 0x85, 0xD6, 0x01, 0x00, 0x00], on: [0xE9, 0xD7, 0x01, 0x00, 0x00, 0x90]}]
|
||||
},
|
||||
// Ported by Cammy
|
||||
{
|
||||
name : "SELECT MUSIC Timer Lock",
|
||||
patches: [{offset: 0xA5672, off: [0x75], on: [0xEB]}]
|
||||
},
|
||||
{
|
||||
name : "Skip CATEGORY SELECT",
|
||||
patches: [{offset: 0xA59F5, off: [0x04], on: [0x07]}]
|
||||
},
|
||||
]),
|
||||
new Patcher("music_db.dll", "music_db.dll", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x2363, off: [0x74, 0x14], on : [0x90, 0x90]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat festo DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user