mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-15 11:23:27 +01:00
a27e291bcc
* Fix DDR A page formatting, add timer freeze and tutorial skip hex edits * Remove broken patch, fix offset for darkest background * Fix tiny mistake on BST1 page
37 lines
1.5 KiB
HTML
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, 0x8D, 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>
|