Skip to content

Commit

Permalink
add reflec beat ac
Browse files Browse the repository at this point in the history
  • Loading branch information
HAYU authored and mon committed Jul 17, 2022
1 parent 03b11c8 commit 8498917
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
Binary file added img/reflecbeat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,10 @@ <h1>Pick a game!</h1>
</label>
<input type="checkbox" id="check_reflec" class="sectionToggle"/>
<div class="subsection">
<a href="reflecbeat.html" class="gameicon">
<img src="img/reflecbeat.png">
<div>REFLEC BEAT</div>
</a>
<a href="reflecbeat-limelight.html" class="gameicon">
<img src="img/limelight.png">
<div>REFLEC BEAT limelight</div>
Expand Down
32 changes: 32 additions & 0 deletions reflecbeat.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>REFLEC BEAT DLL Modder</title>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript">
window.addEventListener("load", function() {
new PatchContainer([
new Patcher("reflecbeat.dll", "2011-08-22", [
{
name : "Unlock all songs",
patches: [{offset: 0x5FD0B, off: [0x74], on: [0xEB]}]
},
{
name : "Unlock all difficulties",
patches: [{offset: 0x5785F, off: [0x74, 0x05], on: [0x90, 0x90]}]
},
{
name: "Timer freeze",
patches : [{offset : 0xF310, off: [0x74, 0x03], on : [0x90, 0x90]}]
}
])
]);
});
</script>
</head>
<body>
<h1>REFLEC BEAT DLL Modder</h1>
</body>
</html>

0 comments on commit 8498917

Please sign in to comment.