mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
add 'Skip Online Matching' for saucer~qubell
This commit is contained in:
+42
-38
@@ -1,38 +1,42 @@
|
||||
<!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://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.dll", "jubeat.dll", [
|
||||
{
|
||||
name : "Disable tutorial",
|
||||
patches : [{offset : 0x81F79, off: [0x0F, 0x85, 0xC7], on : [0xE9, 0xC6, 0x01]}]
|
||||
},
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0x16E64D, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
]),
|
||||
|
||||
new Patcher("music_db.dll", "music_db.dll", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x266D, off: [0x02], on : [0x1f]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat prop DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
<!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://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.dll", "2016-03-27", [
|
||||
{
|
||||
name : "Disable tutorial",
|
||||
patches : [{offset : 0x81F79, off: [0x0F, 0x85, 0xC7], on : [0xE9, 0xC6, 0x01]}]
|
||||
},
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0x16E64D, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
{
|
||||
name: "Skip Online Matching",
|
||||
patches: [{offset: 0x158630, off: [0x7D], on: [0xEB]}]
|
||||
},
|
||||
]),
|
||||
|
||||
new Patcher("music_db.dll", "music_db.dll", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x266D, off: [0x02], on : [0x1f]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat prop DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
+53
-49
@@ -1,49 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat Qubell 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.dll", "2017-06-20", [
|
||||
{
|
||||
name : "Disable tutorial",
|
||||
patches : [{offset : 0xAAC32, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
||||
},
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0x80576, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
]),
|
||||
|
||||
new Patcher("jubeat.dll", "2017-04-15", [
|
||||
{
|
||||
name : "Disable tutorial",
|
||||
patches : [{offset : 0xAA462, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
||||
},
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0x802D0, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
]),
|
||||
|
||||
new Patcher("music_db.dll", "music_db.dll", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x17DF, off: [0x74, 0x09], on : [0x90, 0x90]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat Qubell DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat Qubell 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.dll", "2017-06-20", [
|
||||
{
|
||||
name : "Disable tutorial",
|
||||
patches : [{offset : 0xAAC32, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
||||
},
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0x80576, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
{
|
||||
name: "Skip Online Matching",
|
||||
patches: [{offset: 0x96977, off: [0x7D], on: [0xEB]}]
|
||||
},
|
||||
]),
|
||||
|
||||
new Patcher("jubeat.dll", "2017-04-15", [
|
||||
{
|
||||
name : "Disable tutorial",
|
||||
patches : [{offset : 0xAA462, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
||||
},
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0x802D0, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
]),
|
||||
|
||||
new Patcher("music_db.dll", "music_db.dll", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x17DF, off: [0x74, 0x09], on : [0x90, 0x90]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat Qubell DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
+37
-33
@@ -1,33 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat saucer 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.dll", "2014-01-28", [
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0xDF418, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
]),
|
||||
new Patcher("music_db.dll", "2014-01-28", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x1F3D, off: [0x02], on : [0x1f]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat saucer DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat saucer 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.dll", "2014-01-28", [
|
||||
{
|
||||
name : "SELECT MUSIC timer lock",
|
||||
patches : [{offset : 0xDF418, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
{
|
||||
name: "Skip Online Matching",
|
||||
patches: [{offset: 0xBD6A0, off: [0x7D], on: [0xEB]}]
|
||||
},
|
||||
]),
|
||||
new Patcher("music_db.dll", "2014-01-28", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x1F3D, off: [0x02], on : [0x1f]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat saucer DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
+103
-99
@@ -1,99 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat saucer fulfill 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.dll", "2014-11-18", [
|
||||
{
|
||||
name : "SELECT MUSIC Timer Lock",
|
||||
patches : [{offset : 0xF7B7F, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
{
|
||||
name : "Coin Unlock",
|
||||
tooltip : "Check the 'Coin Unlock' option in 'coin.dll'",
|
||||
patches : [{offset : 0x175D,
|
||||
off : [0xEB, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
|
||||
on : [0x74, 0x22, 0xFF, 0x15, 0xF8, 0x02, 0x18, 0x10, 0xFF,
|
||||
0x15, 0xF4, 0x02, 0x18, 0x10, 0x0F, 0xB6, 0xC0, 0x85, 0xC0,
|
||||
0x74, 0x0F, 0x6A, 0x1A, 0x68, 0xE1, 0x05, 0x00, 0x00, 0xE8,
|
||||
0x12, 0xAC, 0x00, 0x00, 0x83, 0xC4, 0x08]}]
|
||||
},
|
||||
]),
|
||||
new Patcher("coin.dll", "2014-11-18", [
|
||||
{
|
||||
name : "Coin Unlock",
|
||||
tooltip : "Check the 'Coin Unlock' option in 'jubeat.dll'",
|
||||
patches : [{offset : 0x1070,
|
||||
off : [0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
|
||||
on : [0x55, 0x8B, 0xEC, 0x83, 0xEC, 0x1C, 0xE8, 0x85, 0xFF, 0xFF,
|
||||
0xFF, 0x89, 0x45, 0xF0, 0xE8, 0x7D, 0x01, 0x00, 0x00, 0x0F, 0xB6,
|
||||
0xC0, 0x85, 0xC0, 0x74, 0x05, 0xE9, 0xCA, 0x00, 0x00, 0x00, 0x66,
|
||||
0xC7, 0x45, 0xF4, 0x00, 0x00, 0x66, 0xC7, 0x45, 0xF8, 0x00, 0x00,
|
||||
0x8D, 0x4D, 0xF8, 0x51, 0x8D, 0x55, 0xF4, 0x52, 0xFF, 0x15, 0x3C,
|
||||
0x81, 0x00, 0x10, 0x83, 0xC4, 0x08, 0x0F, 0xB7, 0x45, 0xF4, 0x0F,
|
||||
0xB7, 0x4D, 0xF8, 0x03, 0xC1, 0x83, 0xF8, 0x10, 0x7E, 0x07, 0x8B,
|
||||
0x55, 0xF0, 0xC6, 0x42, 0x01, 0x01, 0x0F, 0xB7, 0x45, 0xF4, 0xF7,
|
||||
0xD8, 0x1B, 0xC0, 0xF7, 0xD8, 0x0F, 0xB7, 0x4D, 0xF8, 0xF7, 0xD9,
|
||||
0x1B, 0xC9, 0xF7, 0xD9, 0x03, 0xC1, 0x89, 0x45, 0xFC, 0xC7, 0x45,
|
||||
0xEC, 0x00, 0x00, 0x00, 0x00, 0xEB, 0x09, 0x8B, 0x55, 0xEC, 0x83,
|
||||
0xC2, 0x01, 0x89, 0x55, 0xEC, 0x8B, 0x45, 0xEC, 0x3B, 0x45, 0xFC,
|
||||
0x7D, 0x1D, 0x68, 0x88, 0x92, 0x00, 0x10, 0x6A, 0x01, 0xFF, 0x15,
|
||||
0x5C, 0x81, 0x00, 0x10, 0x83, 0xC4, 0x08, 0x6A, 0x01, 0xFF, 0x15,
|
||||
0xF4, 0x80, 0x00, 0x10, 0x83, 0xC4, 0x04, 0xEB, 0xD2, 0xFF, 0x15,
|
||||
0x24, 0x81, 0x00, 0x10, 0x0F, 0xB6, 0xC8, 0x85, 0xC9, 0x75, 0x3A,
|
||||
0x6A, 0x03, 0x6A, 0x01, 0xFF, 0x15, 0x50, 0x81, 0x00, 0x10, 0x83,
|
||||
0xC4, 0x08, 0x89, 0x45, 0xE8, 0xBA, 0x01, 0x00, 0x00, 0x00, 0xD1,
|
||||
0xE2, 0x89, 0x55, 0xE4, 0x8B, 0x45, 0xE8, 0x23, 0x45, 0xE4, 0x0F,
|
||||
0x95, 0xC1, 0x0F, 0xB6, 0xD1, 0x85, 0xD2, 0x74, 0x10, 0x68, 0x98,
|
||||
0x92, 0x00, 0x10, 0x6A, 0x01, 0xFF, 0x15, 0x5C, 0x81, 0x00, 0x10,
|
||||
0x83, 0xC4, 0x08, 0x8B, 0xE5, 0x5D, 0xC3, 0xCC, 0xCC, 0xCC]}]
|
||||
},
|
||||
]),
|
||||
]);
|
||||
new PatchContainer([
|
||||
new Patcher("music_db.dll", "2014-11-18", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x1F6D, off: [0x02], on : [0x1f]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat saucer fulfill DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jubeat saucer fulfill 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.dll", "2014-11-18", [
|
||||
{
|
||||
name : "SELECT MUSIC Timer Lock",
|
||||
patches : [{offset : 0xF7B7F, off : [0x75], on : [0xEB]}]
|
||||
},
|
||||
{
|
||||
name: "Skip Online Matching",
|
||||
patches: [{offset: 0xCB9A0, off: [0x7D], on: [0xEB]}]
|
||||
},
|
||||
{
|
||||
name : "Coin Unlock",
|
||||
tooltip : "Check the 'Coin Unlock' option in 'coin.dll'",
|
||||
patches : [{offset : 0x175D,
|
||||
off : [0xEB, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
|
||||
on : [0x74, 0x22, 0xFF, 0x15, 0xF8, 0x02, 0x18, 0x10, 0xFF,
|
||||
0x15, 0xF4, 0x02, 0x18, 0x10, 0x0F, 0xB6, 0xC0, 0x85, 0xC0,
|
||||
0x74, 0x0F, 0x6A, 0x1A, 0x68, 0xE1, 0x05, 0x00, 0x00, 0xE8,
|
||||
0x12, 0xAC, 0x00, 0x00, 0x83, 0xC4, 0x08]}]
|
||||
},
|
||||
]),
|
||||
new Patcher("coin.dll", "2014-11-18", [
|
||||
{
|
||||
name : "Coin Unlock",
|
||||
tooltip : "Check the 'Coin Unlock' option in 'jubeat.dll'",
|
||||
patches : [{offset : 0x1070,
|
||||
off : [0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
|
||||
on : [0x55, 0x8B, 0xEC, 0x83, 0xEC, 0x1C, 0xE8, 0x85, 0xFF, 0xFF,
|
||||
0xFF, 0x89, 0x45, 0xF0, 0xE8, 0x7D, 0x01, 0x00, 0x00, 0x0F, 0xB6,
|
||||
0xC0, 0x85, 0xC0, 0x74, 0x05, 0xE9, 0xCA, 0x00, 0x00, 0x00, 0x66,
|
||||
0xC7, 0x45, 0xF4, 0x00, 0x00, 0x66, 0xC7, 0x45, 0xF8, 0x00, 0x00,
|
||||
0x8D, 0x4D, 0xF8, 0x51, 0x8D, 0x55, 0xF4, 0x52, 0xFF, 0x15, 0x3C,
|
||||
0x81, 0x00, 0x10, 0x83, 0xC4, 0x08, 0x0F, 0xB7, 0x45, 0xF4, 0x0F,
|
||||
0xB7, 0x4D, 0xF8, 0x03, 0xC1, 0x83, 0xF8, 0x10, 0x7E, 0x07, 0x8B,
|
||||
0x55, 0xF0, 0xC6, 0x42, 0x01, 0x01, 0x0F, 0xB7, 0x45, 0xF4, 0xF7,
|
||||
0xD8, 0x1B, 0xC0, 0xF7, 0xD8, 0x0F, 0xB7, 0x4D, 0xF8, 0xF7, 0xD9,
|
||||
0x1B, 0xC9, 0xF7, 0xD9, 0x03, 0xC1, 0x89, 0x45, 0xFC, 0xC7, 0x45,
|
||||
0xEC, 0x00, 0x00, 0x00, 0x00, 0xEB, 0x09, 0x8B, 0x55, 0xEC, 0x83,
|
||||
0xC2, 0x01, 0x89, 0x55, 0xEC, 0x8B, 0x45, 0xEC, 0x3B, 0x45, 0xFC,
|
||||
0x7D, 0x1D, 0x68, 0x88, 0x92, 0x00, 0x10, 0x6A, 0x01, 0xFF, 0x15,
|
||||
0x5C, 0x81, 0x00, 0x10, 0x83, 0xC4, 0x08, 0x6A, 0x01, 0xFF, 0x15,
|
||||
0xF4, 0x80, 0x00, 0x10, 0x83, 0xC4, 0x04, 0xEB, 0xD2, 0xFF, 0x15,
|
||||
0x24, 0x81, 0x00, 0x10, 0x0F, 0xB6, 0xC8, 0x85, 0xC9, 0x75, 0x3A,
|
||||
0x6A, 0x03, 0x6A, 0x01, 0xFF, 0x15, 0x50, 0x81, 0x00, 0x10, 0x83,
|
||||
0xC4, 0x08, 0x89, 0x45, 0xE8, 0xBA, 0x01, 0x00, 0x00, 0x00, 0xD1,
|
||||
0xE2, 0x89, 0x55, 0xE4, 0x8B, 0x45, 0xE8, 0x23, 0x45, 0xE4, 0x0F,
|
||||
0x95, 0xC1, 0x0F, 0xB6, 0xD1, 0x85, 0xD2, 0x74, 0x10, 0x68, 0x98,
|
||||
0x92, 0x00, 0x10, 0x6A, 0x01, 0xFF, 0x15, 0x5C, 0x81, 0x00, 0x10,
|
||||
0x83, 0xC4, 0x08, 0x8B, 0xE5, 0x5D, 0xC3, 0xCC, 0xCC, 0xCC]}]
|
||||
},
|
||||
]),
|
||||
]);
|
||||
new PatchContainer([
|
||||
new Patcher("music_db.dll", "2014-11-18", [
|
||||
{
|
||||
name : "Unlock all songs",
|
||||
patches : [{offset : 0x1F6D, off: [0x02], on : [0x1f]}]
|
||||
},
|
||||
])
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jubeat saucer fulfill DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user