-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add 'Skip Online Matching' for saucer~qubell * add jubeat ripples
- Loading branch information
ikaros14
authored
May 20, 2022
1 parent
f6f854f
commit ce9677f
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>jubeat ripples 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.exe", "2009-12-24 (China ver.)", [ | ||
{ | ||
name : "SELECT MUSIC Timer Lock", | ||
patches : [{offset : 0x6C2A1, off : [0x75], on : [0xEB]}] | ||
}, | ||
{ | ||
name : "Unlock All Songs", | ||
patches : [{offset : 0xA2BDD, off : [0x0F, 0x9D, 0xC0], on : [0x90, 0x90, 0x90]}] | ||
}, | ||
]), | ||
]) | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<h1>jubeat ripples Modder</h1> | ||
</body> | ||
</html> |