mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 19:07:37 +01:00
25 lines
964 B
HTML
25 lines
964 B
HTML
<!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 Patcher("museca.dll", "", [
|
|
{
|
|
//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>
|