-
Notifications
You must be signed in to change notification settings - Fork 136
/
museca1.html
26 lines (26 loc) · 1.01 KB
/
museca1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MÚSECA 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("museca.dll", "2016-07-13", [
{
//Discovered by Cammy - ported by Zelminar
name: "Song 1 Lock",
tooltip: "Song clears/scores only. Profile progress and custom settings do not save. Reboot game to re-query for scores.",
patches: [{offset: 0x27E0C7, off: [0xFF, 0x83, 0x8C, 0x09, 0x00, 0x00], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90]}]
},
])
]);
});
</script>
</head>
<body>
<h1>MÚSECA DLL Modder</h1>
</body>
</html>