mirror of
https://github.com/two-torial/webpatcher.git
synced 2025-02-07 23:01:22 +01:00
139 lines
5.6 KiB
HTML
139 lines
5.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CHUNITHM Intl. LUMINOUS 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("chusanApp.exe", "1.30", [
|
|
{
|
|
name: "Force shared audio mode, system audio sample rate must be 48000Hz",
|
|
tooltip: "Improves compatibility, but may increase latency",
|
|
patches: [
|
|
{offset: 0xF0610A, off: [0x01], on: [0x00]}
|
|
]
|
|
},
|
|
{
|
|
name: "Force 2 channel audio output",
|
|
tooltip: "May cause bass overload",
|
|
patches: [
|
|
{offset: 0xF061E1, off: [0x75, 0x3f], on: [0x90, 0x90]}
|
|
]
|
|
},
|
|
{
|
|
name: "Disable song select timer",
|
|
patches: [
|
|
{offset: 0x9F286B, off: [0x74], on: [0xeb]}
|
|
]
|
|
},
|
|
{
|
|
name: "Map selection timer",
|
|
tooltip: "If set to negative, the timer becomes 968 + value (e.g. 968 + -1 = 967)",
|
|
type: "number",
|
|
offset: 0x9591F7,
|
|
size: 1,
|
|
min: -128,
|
|
max: 127,
|
|
},
|
|
{
|
|
name: "Ticket selection timer",
|
|
tooltip: "If set to negative, the timer becomes 968 + value (e.g. 968 + -1 = 967)",
|
|
type: "number",
|
|
offset: 0x94C982,
|
|
size: 1,
|
|
min: -128,
|
|
max: 127,
|
|
},
|
|
{
|
|
name: "Course selection timer",
|
|
tooltip: "If set to negative, the timer becomes 968 + value (e.g. 968 + -1 = 967)",
|
|
type: "number",
|
|
offset: 0x9FDA4B,
|
|
size: 1,
|
|
min: -128,
|
|
max: 127,
|
|
},
|
|
{
|
|
name: "Unlimited maximum tracks",
|
|
tooltip: "Must check to play more than 7 tracks per credit",
|
|
patches: [
|
|
{offset: 0x71CCBA, off: [0xf0], on: [0xc0]}
|
|
]
|
|
},
|
|
{
|
|
type: "number",
|
|
name: "Maximum tracks",
|
|
offset: 0x399D41,
|
|
size: 4,
|
|
min: 3,
|
|
max: 12
|
|
},
|
|
{
|
|
name: "No encryption",
|
|
tooltip: "Will also disable TLS",
|
|
patches: [
|
|
{offset: 0x1DB9430, off: [0x82], on: [0x00]},
|
|
{offset: 0x1DB9434, off: [0x82], on: [0x00]}
|
|
]
|
|
},
|
|
{
|
|
name: "No TLS",
|
|
tooltip: "Title server workaround",
|
|
patches: [
|
|
{offset: 0xEE9177, off: [0x80], on: [0x00]}
|
|
]
|
|
},
|
|
{
|
|
name: "Force 120 fps",
|
|
tooltip: "Force the game to run in 120 Hz mode.",
|
|
patches: [
|
|
{offset: 0x1CC89, off: [0x00], on: [0x01]}
|
|
]
|
|
},
|
|
{
|
|
name: "Patch for head-to-head play",
|
|
tooltip: "Fix infinite sync while trying to connect to head to head play",
|
|
patches: [
|
|
{offset: 0x6521A3, off: [0x01], on: [0x00]}
|
|
]
|
|
},
|
|
{
|
|
name: "Force FREE PLAY credit text",
|
|
tooltip: "Replaces the credit count with FREE PLAY",
|
|
patches: [
|
|
{offset: 0x389284, off: [0x3c, 0x01], on: [0x38, 0xc0]}
|
|
]
|
|
},
|
|
{
|
|
type: "number",
|
|
name: "Custom FREE PLAY text length",
|
|
tooltip: "Changes the length of the text displayed when Force FREE PLAY credit text is enabled",
|
|
danger: "If this is longer than 11 characters, \"Force FREE PLAY credit text\" MUST be enabled.",
|
|
offset: 0x389289,
|
|
size: 1,
|
|
min: 0,
|
|
max: 27,
|
|
},
|
|
{
|
|
type: "hex",
|
|
name: "Custom FREE PLAY text",
|
|
tooltip: "Replace the FREE PLAY text when using Infinite credits",
|
|
offset: 0x19CE8AC,
|
|
off: [0x46, 0x52, 0x45, 0x45, 0x20, 0x50, 0x4c, 0x41, 0x59],
|
|
},
|
|
]),
|
|
]);
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>CHUNITHM Intl. LUMINOUS Modder</h1>
|
|
</body>
|
|
|
|
</html>
|