mirror of
https://github.com/two-torial/webpatcher.git
synced 2025-01-19 08:17:25 +01:00
386abcfe14
* valkyrie mode and 120hz support * Update sdvx6.html * im not very good at this am i * hhhh idk if this is correct editing in notepad++ and web github change the way its aligned so i cant tell if this is correct or not ;u; * Fix indent Co-authored-by: Will <will@mon.im>
129 lines
4.8 KiB
HTML
129 lines
4.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>SDVX VI 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 PatchContainer([
|
|
new Patcher("soundvoltex.dll", "2021-04-28", [
|
|
{
|
|
name: "Disable power change", //patch by Xyen
|
|
tooltip: "Prevents power mode change on startup",
|
|
patches: [{ offset: 0x1ec553, off: [0x75], on: [0xeb] }],
|
|
},
|
|
{
|
|
name: "Disable monitor change", //patch by Xyen
|
|
tooltip: "Prevents monitor setting changes on startup",
|
|
patches: [{ offset: 0x1ec5eb, off: [0x75], on: [0xeb] }],
|
|
},
|
|
{
|
|
name: "Shared mode WASAPI",
|
|
tooltip:
|
|
"Only replaces the first audio device init attempt. Set output to 44100Hz 16bit if it doesn't work.",
|
|
patches: [{ offset: 0x42b089, off: [0x04], on: [0x00] }],
|
|
},
|
|
{
|
|
name: "Timer freeze", // ikaros14
|
|
patches: [{ offset: 0x71166, off: [0x84], on: [0x85] }],
|
|
},
|
|
{
|
|
name: "Allow non E004 cards",
|
|
tooltip: "Allows cards that do not have E004 card IDs (such as mifare cards) to work.",
|
|
patches: [
|
|
{ offset: 0xA4B, off: [0x75, 0x12], on: [0x90, 0x90] },
|
|
{ offset: 0xA53, off: [0x74], on: [0xEB] }
|
|
],
|
|
},
|
|
{
|
|
type: "union",
|
|
name: "Premium Time Length",
|
|
offset: 0x297996,
|
|
patches: [
|
|
{
|
|
name: "Default (10 Minutes)",
|
|
patch: [0x00, 0x70, 0xc9, 0xb2, 0x8b, 0x00, 0x00, 0x00],
|
|
},
|
|
{
|
|
name: "20 Minutes",
|
|
patch: [0x00, 0xe0, 0x92, 0x65, 0x17, 0x01, 0x00, 0x00],
|
|
},
|
|
{
|
|
name: "30 Minutes",
|
|
patch: [0x00, 0x50, 0x5c, 0x18, 0xa3, 0x01, 0x00, 0x00],
|
|
},
|
|
{
|
|
name: "1 Hour",
|
|
patch: [0x00, 0xa0, 0xb8, 0x30, 0x46, 0x03, 0x00, 0x00],
|
|
},
|
|
],
|
|
},
|
|
]),
|
|
new Patcher("soundvoltex.dll", "2021-05-18", [
|
|
{
|
|
name: "Disable power change", //patch by Xyen
|
|
tooltip: "Prevents power mode change on startup",
|
|
patches: [{ offset: 0x1ecd13, off: [0x75], on: [0xeb] }],
|
|
},
|
|
{
|
|
name: "Disable monitor change", //patch by Xyen
|
|
tooltip: "Prevents monitor setting changes on startup",
|
|
patches: [{ offset: 0x1ecdab, off: [0x75], on: [0xeb] }],
|
|
},
|
|
{
|
|
name: "Valkryie Model Support",
|
|
tooltip: "Will only work with <spec __type="str">F</spec> changed to either G or H, in ea3-config.xml."
|
|
patches: [{ offset: 0x3f1bd5, off: [0x87, 0x05], on: [0x47, 0x0c] }],
|
|
},
|
|
{
|
|
name: "120Hz Support",
|
|
patches: [{ offset: 0x6fc0be, off: [0x4e], on: [0x5e] }],
|
|
},
|
|
{
|
|
name: "Shared mode WASAPI",
|
|
tooltip:
|
|
"Only replaces the first audio device init attempt. Set output to 44100Hz 16bit if it doesn't work.",
|
|
patches: [{ offset: 0x42d009, off: [0x04], on: [0x00] }],
|
|
},
|
|
{
|
|
name: "Timer freeze", // ikaros14
|
|
patches: [{ offset: 0x713d6, off: [0x84], on: [0x85] }],
|
|
},
|
|
{
|
|
type: "union",
|
|
name: "Premium Time Length",
|
|
offset: 0x298d16,
|
|
patches: [
|
|
{
|
|
name: "Default (10 Minutes)",
|
|
patch: [0x00, 0x70, 0xc9, 0xb2, 0x8b, 0x00, 0x00, 0x00],
|
|
},
|
|
{
|
|
name: "20 Minutes",
|
|
patch: [0x00, 0xe0, 0x92, 0x65, 0x17, 0x01, 0x00, 0x00],
|
|
},
|
|
{
|
|
name: "30 Minutes",
|
|
patch: [0x00, 0x50, 0x5c, 0x18, 0xa3, 0x01, 0x00, 0x00],
|
|
},
|
|
{
|
|
name: "1 Hour",
|
|
patch: [0x00, 0xa0, 0xb8, 0x30, 0x46, 0x03, 0x00, 0x00],
|
|
},
|
|
],
|
|
},
|
|
]),
|
|
]);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>SDVX VI DLL Modder</h1>
|
|
</body>
|
|
</html>
|