two-torial-webpatcher/beatstream1.html
Michael 181e050b5c Add BST 1 edits, fix BST 2 icon (#35)
* Fix Beatstream icon

* Add BeatStream 1 hex edits, fix BST2 DLL name, format BST1/2 pages

* Specify version for BST 1/2

* Change DLL names back to just "beatstream"
2018-12-07 18:49:39 +10:00

37 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BeatStream 1 DLL 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 DllPatcherContainer([
new DllPatcher("beatstream", [
{
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, 0x8B, 0x79, 0x08],
on: [0xBB, 0x00, 0x00, 0x00, 0x00, 0xE9, 0xAE, 0x01, 0x00, 0x00]
}]
},
], "2015-12-01"),
]);
});
</script>
</head>
<body>
<h1>BeatStream 1 DLL Modder</h1>
</body>
</html>