add limelight

This commit is contained in:
HAYU 2022-07-01 22:52:35 +09:00 committed by Will
parent 32f56a4afc
commit bbc95a0075
3 changed files with 39 additions and 1 deletions

BIN
img/limelight.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -399,6 +399,12 @@
<div>pop'n music 25 peace</div>
</div>
</a>
<a href="reflecbeat-limelight.html" class="gameicon">
<div>
<img src="img/limelight.png">
<div>REFLEC BEAT limelight</div>
</div>
</a>
<a href="reflecbeat-colette.html" class="gameicon">
<div>
<img src="img/colette.png">
@ -414,7 +420,7 @@
<a href="reflecbeat-volzza2.html" class="gameicon">
<div>
<img src="img/volzza2.png">
<div>REFLEC BEAT Volzza 2</div>
<div>REFLEC BEAT VOLZZA 2</div>
</div>
</a>
<a href="reflecbeat-reflesia.html" class="gameicon">

32
reflecbeat-limelight.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>REFLEC BEAT limelight 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", "2012-08-29", [
{
name : "Unlock all songs",
patches: [{offset: 0x7CA0E, off: [0x74], on: [0xEB]}]
},
{
name : "Unlock all difficulties",
patches: [{offset: 0x7C8B0, off: [0x74], on: [0xEB]}]
},
{
name: "Timer freeze",
patches : [{offset : 0x10F02F, off: [0x95], on : [0x90]}]
}
])
])
});
</script>
</head>
<body>
<h1>REFLEC BEAT limelight DLL Modder</h1>
</body>
</html>