two-torial-webpatcher/beatstream1.html
2022-05-28 13:48:36 +10:00

34 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BeatStream 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("beatstream.dll", "2015-12-01", [
{
name: "E: drive fix",
tooltip: "Fix crash caused by no E: drive",
patches: [{offset: 0xB6A994, off: [0x65, 0x3A, 0x2F], on: [0x64, 0x65, 0x76]}]
},
{
name: "Unlock all songs",
patches: [{
offset: 0x1740B6,
off: [0x48, 0x83, 0xFD, 0x10, 0x72, 0x09, 0x48, 0x8D, 0x79, 0x08],
on: [0xBB, 0x00, 0x00, 0x00, 0x00, 0xE9, 0xAE, 0x01, 0x00, 0x00]
}]
},
]),
]);
});
</script>
</head>
<body>
<h1>BeatStream DLL Modder</h1>
</body>
</html>