Add RB Volzza 2 and Reflesia patchers (#182)

* Add RB Volzza 2 and Reflesia patchers

* Fix indents

* Fix index.html
This commit is contained in:
Cammy 2021-03-09 23:00:36 -05:00 committed by GitHub
parent c3954faa8c
commit 9447e0f8b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 100 additions and 0 deletions

BIN
img/reflesia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
img/volzza2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -254,6 +254,18 @@
<div>REFLEC BEAT groovin'!! Upper</div>
</div>
</a>
<a href="reflecbeat-volzza2.html" class="gameicon">
<div>
<img src="img/volzza2.png">
<div>REFLEC BEAT Volzza 2</div>
</div>
</a>
<a href="reflecbeat-reflesia.html" class="gameicon">
<div>
<img src="img/reflesia.png">
<div>REFLEC BEAT The Reflesia of Eternity</div>
</div>
</a>
<a href="sdvx3-s2.html" class="gameicon">
<div>
<img src="img/sdvx.png">

32
reflecbeat-reflesia.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Reflec Beat The Reflesia of Eternity 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("reflecbeat.dll", "2018-12-11", [
{
name: "E: drive fix",
tooltip: "Fix crash caused by no E: drive",
patches: [{
offset: 0x28B0FC,
off: [0x65, 0x3A, 0x2F],
on: [0x64, 0x65, 0x76]
}]
}
]),
]);
});
</script>
</head>
<body>
<h1>Reflec Beat The Reflesia of Eternity DLL Modder</h1>
</body>
</html>

56
reflecbeat-volzza2.html Normal file
View File

@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Reflec Beat VOLZZA 2 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("reflecbeat.dll", "2016-10-04", [
{
name: "E: drive fix",
tooltip: "Fix crash caused by no E: drive",
patches: [{
offset: 0x292D34,
off: [0x65, 0x3A, 0x2F],
on: [0x64, 0x65, 0x76]
}]
},
{
name: "Unlock all songs",
patches: [{
offset: 0x85E83,
off: [0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC],
on: [0xC7, 0x40, 0x0C, 0x02, 0x00, 0x00, 0x00, 0xE9, 0x2C, 0x01, 0x00, 0x00]
},
{
offset: 0x85F74,
off: [0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC],
on: [0xC7, 0x40, 0x08, 0x0F, 0x00, 0x00, 0x00, 0xE9, 0x03, 0xFF, 0xFF, 0xFF]
},
{
offset: 0x85FAC,
off: [0x89, 0x50, 0x08, 0x89, 0x50, 0x0C, 0x88, 0x50, 0x14, 0x88, 0x50, 0x15, 0x89, 0x50, 0x10],
on: [0x88, 0x50, 0x14, 0x88, 0x50, 0x15, 0x89, 0x18, 0x89, 0x70, 0x04, 0xEB, 0xBB, 0x90, 0x90]
},
{
offset: 0xAB862,
off: [0x74],
on: [0xEB]
}
]
},
]),
]);
});
</script>
</head>
<body>
<h1>Reflec Beat VOLZZA 2 DLL Modder</h1>
</body>
</html>