BemaniPatcher/beatstream1.html
HiLordReilo 44ac23628f
Some checks failed
Check HTML/JS is valid / build (push) Has been cancelled
[BST] Forced windowed mode + shorter monitor for BST1
2026-05-05 07:45:14 +10:00

70 lines
2.8 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]
}]
},
{
name: "Shorter Monitor Check",
patches: [
{
offset: 0x1D760E,
off: [0x1E],
on: [0x03]
}
]
},
{
name: "Force windowed mode", //Created by HiLord
tooltip: "Makes the game launch in windowed mode *with both screens* as separate windows",
patches: [
{
offset: 0x1DB194,
off: [0x74],
on: [0xEB]
},
{
offset: 0x1DB626,
off: [0x74],
on: [0x75]
},
{
offset: 0x1DB6E5,
off: [0x75],
on: [0xEB]
},
{
offset: 0x1DD092,
off: [0x94],
on: [0x95]
}
]
},
]),
]);
});
</script>
</head>
<body>
<h1>BeatStream DLL Modder</h1>
</body>
</html>