mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 22:10:41 -07:00
Refactor: Support exe, sane arg order
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# BemaniPatcher
|
# BemaniPatcher
|
||||||
A tool to easily apply known hex edits to any DLL, with examples for Bemani games.
|
A tool to easily apply known hex edits to any binary, with examples for Bemani games.
|
||||||
|
|
||||||
Should work on most modern browsers.
|
Should work on most modern browsers.
|
||||||
|
|
||||||
Live version hosted [on my website](http://mon.im/bemanipatcher/).
|
Live version hosted [on my website](https://mon.im/bemanipatcher/).
|
||||||
+7
-7
@@ -10,8 +10,8 @@
|
|||||||
<script type='text/javascript' src='js/dllpatcher.js'></script>
|
<script type='text/javascript' src='js/dllpatcher.js'></script>
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
window.addEventListener('load', function () {
|
window.addEventListener('load', function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2018-09-19", [
|
||||||
{
|
{
|
||||||
// discovered by GHYAKIMA
|
// discovered by GHYAKIMA
|
||||||
name: 'SSE4.2 Fix',
|
name: 'SSE4.2 Fix',
|
||||||
@@ -191,8 +191,8 @@
|
|||||||
tooltip : "Immediately loads into chart after selection.",
|
tooltip : "Immediately loads into chart after selection.",
|
||||||
patches: [{offset: 0x72775, off: [0xE8, 0x66, 0x00, 0x00, 0x00], on: [0x90, 0x90, 0x90, 0x90, 0x90]}]
|
patches: [{offset: 0x72775, off: [0xE8, 0x66, 0x00, 0x00, 0x00], on: [0x90, 0x90, 0x90, 0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], "2018-09-19"),
|
]),
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2018-07-24", [
|
||||||
{
|
{
|
||||||
name: 'Unlock All Songs',
|
name: 'Unlock All Songs',
|
||||||
patches: [{offset: 0xB61D2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
patches: [{offset: 0xB61D2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
||||||
@@ -215,8 +215,8 @@
|
|||||||
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
||||||
patches: [{offset: 0xF5D9A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
patches: [{offset: 0xF5D9A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], "2018-07-24"),
|
]),
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2018-06-13", [
|
||||||
{
|
{
|
||||||
name: 'Unlock All Songs',
|
name: 'Unlock All Songs',
|
||||||
patches: [{offset: 0xB42D2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
patches: [{offset: 0xB42D2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
||||||
@@ -239,7 +239,7 @@
|
|||||||
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
||||||
patches: [{offset: 0xF296A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
patches: [{offset: 0xF296A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], "2018-06-13"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+3
-3
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("beatstream", [
|
new Patcher("beatstream.dll", "2015-12-01", [
|
||||||
{
|
{
|
||||||
name: "E: drive fix",
|
name: "E: drive fix",
|
||||||
tooltip: "Fix crash caused by no E: drive",
|
tooltip: "Fix crash caused by no E: drive",
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
on: [0xBB, 0x00, 0x00, 0x00, 0x00, 0xE9, 0xAE, 0x01, 0x00, 0x00]
|
on: [0xBB, 0x00, 0x00, 0x00, 0x00, 0xE9, 0xAE, 0x01, 0x00, 0x00]
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
], "2015-12-01"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+3
-3
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("beatstream", [
|
new Patcher("beatstream.dll", "2016-11-14", [
|
||||||
{
|
{
|
||||||
name: "E: drive fix",
|
name: "E: drive fix",
|
||||||
tooltip: "Fix crash caused by no E: drive",
|
tooltip: "Fix crash caused by no E: drive",
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
on: [0xB0, 0x01, 0xE9, 0xAD, 0x00, 0x00]
|
on: [0xB0, 0x01, 0xE9, 0xAD, 0x00, 0x00]
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
], "2016-11-14"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+3
-3
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2016-08-31", [
|
||||||
{
|
{
|
||||||
name : "Timer Freeze",
|
name : "Timer Freeze",
|
||||||
patches : [{offset : 0x8F98E, off: [0x74], on : [0xEB]}]
|
patches : [{offset : 0x8F98E, off: [0x74], on : [0xEB]}]
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x13E429, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x13E429, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2016-08-31"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcher("mdxja_", [
|
new Patcher("mdxja.dll", "", [
|
||||||
{// Created by Renard1911
|
{// Created by Renard1911
|
||||||
name : "Premium Free",
|
name : "Premium Free",
|
||||||
tooltip: "Song clears/scores only. Profile progress and custom settings do not save. Reboot game to re-query for scores.",
|
tooltip: "Song clears/scores only. Profile progress and custom settings do not save. Reboot game to re-query for scores.",
|
||||||
|
|||||||
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("gamemdx", [
|
new Patcher("gamemdx.dll", "2019-04-22", [
|
||||||
{
|
{
|
||||||
name: "Force enable fast/slow",
|
name: "Force enable fast/slow",
|
||||||
patches: [{offset: 0x97C60, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
|
patches: [{offset: 0x97C60, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
|
||||||
@@ -83,8 +83,8 @@
|
|||||||
{offset: 0x2D0AE, off: [0xE8, 0x3D, 0x0D, 0xFE, 0xFF], on: [0xB8, 0x00, 0x00, 0x00, 0x00]},
|
{offset: 0x2D0AE, off: [0xE8, 0x3D, 0x0D, 0xFE, 0xFF], on: [0xB8, 0x00, 0x00, 0x00, 0x00]},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], "2019-04-22"),
|
]),
|
||||||
new DllPatcher("gamemdx", [
|
new Patcher("gamemdx.dll", "2018-10-22", [
|
||||||
{
|
{
|
||||||
name: "Force enable fast/slow",
|
name: "Force enable fast/slow",
|
||||||
patches: [{offset: 0x8CA60, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
|
patches: [{offset: 0x8CA60, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
|
||||||
@@ -139,8 +139,8 @@
|
|||||||
tooltip: "Song clears/scores only. Profile progress and custom settings do not save. Reboot game to re-query for scores.",
|
tooltip: "Song clears/scores only. Profile progress and custom settings do not save. Reboot game to re-query for scores.",
|
||||||
patches: [{offset: 0x1f0a6, off: [0x01], on: [0x00]}]
|
patches: [{offset: 0x1f0a6, off: [0x01], on: [0x00]}]
|
||||||
},
|
},
|
||||||
], "2018-10-22"),
|
]),
|
||||||
new DllPatcher("gamemdx", [
|
new Patcher("gamemdx.dll", "2018-04-23", [
|
||||||
{
|
{
|
||||||
name: "Force enable fast/slow",
|
name: "Force enable fast/slow",
|
||||||
patches: [{offset: 0x84EC0, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
|
patches: [{offset: 0x84EC0, off: [0x8B, 0x41, 0x44], on: [0x31, 0xC0, 0x40]}]
|
||||||
@@ -204,7 +204,7 @@
|
|||||||
{offset: 0x8C29, off: [0x74, 0x2E], on: [0xEB, 0x2C]},
|
{offset: 0x8C29, off: [0x74, 0x2E], on: [0xEB, 0x2C]},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2018-04-23"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+8
-10
@@ -10,16 +10,15 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new Patcher("game.dll", "", [
|
||||||
new DllPatcher("game", [
|
|
||||||
{
|
{
|
||||||
name: "Force unlock SECRET folder",
|
name: "Force unlock SECRET folder",
|
||||||
patches: [
|
patches: [
|
||||||
{offset: 0xC259A, off: [0x74, 0x12, 0x68, 0xC0], on: [0x90, 0x90, 0x68, 0xC0]}
|
{offset: 0xC259A, off: [0x74, 0x12, 0x68, 0xC0], on: [0x90, 0x90, 0x68, 0xC0]}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("boot", [
|
new Patcher("boot.dll", "", [
|
||||||
{
|
{
|
||||||
name: "GF's volume fix",
|
name: "GF's volume fix",
|
||||||
patches: [
|
patches: [
|
||||||
@@ -28,8 +27,8 @@
|
|||||||
{offset: 0x1BD1, off: [0x02], on: [0x03]},
|
{offset: 0x1BD1, off: [0x02], on: [0x03]},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("libshare-pj", [
|
new Patcher("libshare-pj.dll", "", [
|
||||||
{
|
{
|
||||||
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
||||||
tooltip: "It's highly recommended using this just to turn off the e-AMUSEMENT easily,since it's not compatiable with e-amuemu(Cannot register cards but still can get into the game)",
|
tooltip: "It's highly recommended using this just to turn off the e-AMUSEMENT easily,since it's not compatiable with e-amuemu(Cannot register cards but still can get into the game)",
|
||||||
@@ -37,14 +36,13 @@
|
|||||||
{offset: 0x17ECA, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
{offset: 0x17ECA, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("libsytem", [
|
new Patcher("libsystem.dll", "", [
|
||||||
{
|
{
|
||||||
name: "White screen freeze fix",
|
name: "White screen freeze fix",
|
||||||
patches: [{offset: 0x306C, off: [0x53, 0x53], on: [0x33, 0xC0]}]
|
patches: [{offset: 0x306C, off: [0x53, 0x53], on: [0x33, 0xC0]}]
|
||||||
}
|
}
|
||||||
], true)
|
]);
|
||||||
]);
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
+6
-8
@@ -10,16 +10,15 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new Patcher("game.dll", "", [
|
||||||
new DllPatcher("game", [
|
|
||||||
{
|
{
|
||||||
name: "Force unlock SECRET folder",
|
name: "Force unlock SECRET folder",
|
||||||
patches: [
|
patches: [
|
||||||
{offset: 0xCC8EA, off: [0x74, 0x12, 0x68, 0x04], on: [0x90, 0x90, 0x68, 0x04]}
|
{offset: 0xCC8EA, off: [0x74, 0x12, 0x68, 0x04], on: [0x90, 0x90, 0x68, 0x04]}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("boot", [
|
new Patcher("boot.dll", "", [
|
||||||
{
|
{
|
||||||
name: "GF's volume fix",
|
name: "GF's volume fix",
|
||||||
patches: [
|
patches: [
|
||||||
@@ -28,16 +27,15 @@
|
|||||||
{offset: 0x1B71, off: [0x02], on: [0x03]},
|
{offset: 0x1B71, off: [0x02], on: [0x03]},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("libshare-pj", [
|
new Patcher("libshare-pj.dll", "", [
|
||||||
{
|
{
|
||||||
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
||||||
patches: [
|
patches: [
|
||||||
{offset: 0x18F3A, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
{offset: 0x18F3A, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true)
|
]);
|
||||||
]);
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
+8
-10
@@ -10,16 +10,15 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new Patcher("game.dll", "", [
|
||||||
new DllPatcher("game", [
|
|
||||||
{
|
{
|
||||||
name: "Force unlock SECRET folder",
|
name: "Force unlock SECRET folder",
|
||||||
patches: [
|
patches: [
|
||||||
{offset: 0xBA187, off: [0x74, 0x04, 0xC6, 0x46], on: [0x90, 0x90, 0xC6, 0x46]}
|
{offset: 0xBA187, off: [0x74, 0x04, 0xC6, 0x46], on: [0x90, 0x90, 0xC6, 0x46]}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("boot", [
|
new Patcher("boot.dll", "", [
|
||||||
{
|
{
|
||||||
name: "GF's volume fix",
|
name: "GF's volume fix",
|
||||||
patches: [
|
patches: [
|
||||||
@@ -28,22 +27,21 @@
|
|||||||
{offset: 0x1A41, off: [0x02], on: [0x03]},
|
{offset: 0x1A41, off: [0x02], on: [0x03]},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("libshare-pj", [
|
new Patcher("libshare-pj.dll", "", [
|
||||||
{
|
{
|
||||||
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
|
||||||
patches: [
|
patches: [
|
||||||
{offset: 0x16B99, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
{offset: 0x16B99, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("libsytem", [
|
new Patcher("libsystem.dll", "", [
|
||||||
{
|
{
|
||||||
name: "White screen freeze fix",
|
name: "White screen freeze fix",
|
||||||
patches: [{offset: 0x2DFC, off: [0x53, 0x53, 0xA3, 0xCC], on: [0x33, 0xC0, 0xA3, 0xCC]}]
|
patches: [{offset: 0x2DFC, off: [0x53, 0x53, 0xA3, 0xCC], on: [0x33, 0xC0, 0xA3, 0xCC]}]
|
||||||
}
|
}
|
||||||
], true)
|
]);
|
||||||
]);
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -10,14 +10,12 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new Patcher("libshare-pj.dll", "", [
|
||||||
new DllPatcher("libshare-pj", [
|
|
||||||
{
|
{
|
||||||
name: 'Fix "IP CHANGE ERROR"',
|
name: 'Fix "IP CHANGE ERROR"',
|
||||||
patches: [{offset: 0x23305, off: [0x74], on: [0xEB]}]
|
patches: [{offset: 0x23305, off: [0x74], on: [0xEB]}]
|
||||||
}
|
}
|
||||||
], true)
|
])
|
||||||
]);
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
+4
-6
@@ -10,8 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new Patcher("game.dll", "", [
|
||||||
new DllPatcher("game", [
|
|
||||||
{
|
{
|
||||||
name: "Timer Freeze",
|
name: "Timer Freeze",
|
||||||
patches: [{offset: 0xBC37, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
patches: [{offset: 0xBC37, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
||||||
@@ -33,14 +32,13 @@
|
|||||||
name: "Enable Long Music",
|
name: "Enable Long Music",
|
||||||
patches: [{offset: 0x163134, off: [0x75, 0x03], on: [0x90, 0x90]}]
|
patches: [{offset: 0x163134, off: [0x75, 0x03], on: [0x90, 0x90]}]
|
||||||
}
|
}
|
||||||
], true),
|
]);
|
||||||
new DllPatcher("libshare-pj", [
|
new Patcher("libshare-pj.dll", "", [
|
||||||
{
|
{
|
||||||
name: "Fix IP change error",
|
name: "Fix IP change error",
|
||||||
patches: [{offset: 0x23375, off: [0x74], on: [0xEB]}]
|
patches: [{offset: 0x23375, off: [0x74], on: [0xEB]}]
|
||||||
}
|
}
|
||||||
], true)
|
]);
|
||||||
]);
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcher("game", [
|
new Patcher("game.dll", "", [
|
||||||
{
|
{
|
||||||
name: "Timer Freeze",
|
name: "Timer Freeze",
|
||||||
patches: [{offset: 0xBCE7, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
patches: [{offset: 0xBCE7, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcher("game", [
|
new Patcher("game.dll", "", [
|
||||||
{
|
{
|
||||||
name: "Timer Freeze",
|
name: "Timer Freeze",
|
||||||
patches: [{offset: 0xBC17, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
patches: [{offset: 0xBC17, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcher("game", [
|
new Patcher("game.dll", "", [
|
||||||
{
|
{
|
||||||
name: "Timer Freeze",
|
name: "Timer Freeze",
|
||||||
patches: [{offset: 0xBC37, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
patches: [{offset: 0xBC37, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
|
||||||
|
|||||||
+466
-463
@@ -2,470 +2,12 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
// form labels often need unique IDs - this can be used to generate some
|
// form labels often need unique IDs - this can be used to generate some
|
||||||
window.DllPatcher_uniqueid = 0;
|
window.Patcher_uniqueid = 0;
|
||||||
var createID = function() {
|
var createID = function() {
|
||||||
window.DllPatcher_uniqueid++;
|
window.Patcher_uniqueid++;
|
||||||
return "dllpatch_" + window.DllPatcher_uniqueid;
|
return "dllpatch_" + window.Patcher_uniqueid;
|
||||||
}
|
|
||||||
|
|
||||||
// Each unique kind of patch should have createUI, validatePatch, applyPatch,
|
|
||||||
// updateUI
|
|
||||||
|
|
||||||
var StandardPatch = function(options) {
|
|
||||||
this.name = options.name;
|
|
||||||
this.patches = options.patches;
|
|
||||||
this.tooltip = options.tooltip;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
StandardPatch.prototype.createUI = function(parent) {
|
|
||||||
var id = createID();
|
|
||||||
var label = this.name;
|
|
||||||
var patch = $('<div>', {'class' : 'patch'});
|
|
||||||
this.checkbox = $('<input type="checkbox" id="' + id + '">')[0];
|
|
||||||
patch.append(this.checkbox);
|
|
||||||
patch.append('<label for="' + id + '">' + label + '</label>');
|
|
||||||
if(this.tooltip) {
|
|
||||||
patch.append('<div class="tooltip">' + this.tooltip + '</div>');
|
|
||||||
}
|
|
||||||
parent.append(patch);
|
|
||||||
};
|
|
||||||
|
|
||||||
StandardPatch.prototype.updateUI = function(file) {
|
|
||||||
this.checkbox.checked = this.checkPatchBytes(file) === "on";
|
|
||||||
};
|
|
||||||
|
|
||||||
StandardPatch.prototype.validatePatch = function(file) {
|
|
||||||
var status = this.checkPatchBytes(file);
|
|
||||||
if(status === "on") {
|
|
||||||
console.log('"' + this.name + '"', "is enabled!");
|
|
||||||
} else if(status === "off") {
|
|
||||||
console.log('"' + this.name + '"', "is disabled!");
|
|
||||||
} else {
|
|
||||||
return '"' + this.name + '" is neither on nor off! Have you got the right dll?';
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
StandardPatch.prototype.applyPatch = function(file) {
|
|
||||||
this.replaceAll(file, this.checkbox.checked);
|
|
||||||
};
|
|
||||||
|
|
||||||
StandardPatch.prototype.replaceAll = function(file, featureOn) {
|
|
||||||
for(var i = 0; i < this.patches.length; i++) {
|
|
||||||
replace(file, this.patches[i].offset,
|
|
||||||
featureOn? this.patches[i].on : this.patches[i].off);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
StandardPatch.prototype.checkPatchBytes = function(file) {
|
|
||||||
var patchStatus = "";
|
|
||||||
for(var i = 0; i < this.patches.length; i++) {
|
|
||||||
var patch = this.patches[i];
|
|
||||||
if(bytesMatch(file, patch.offset, patch.off)) {
|
|
||||||
if(patchStatus === "") {
|
|
||||||
patchStatus = "off";
|
|
||||||
} else if(patchStatus != "off"){
|
|
||||||
return "on/off mismatch within patch";
|
|
||||||
}
|
|
||||||
} else if(bytesMatch(file, patch.offset, patch.on)) {
|
|
||||||
if(patchStatus === "") {
|
|
||||||
patchStatus = "on";
|
|
||||||
} else if(patchStatus != "on"){
|
|
||||||
return "on/off mismatch within patch";
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return "patch neither on nor off";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return patchStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Each unique kind of patch should have createUI, validatePatch, applyPatch,
|
|
||||||
// updateUI
|
|
||||||
|
|
||||||
// The DEFAULT state is always the 1st element in the patches array
|
|
||||||
var UnionPatch = function(options) {
|
|
||||||
this.name = options.name;
|
|
||||||
this.offset = options.offset;
|
|
||||||
this.patches = options.patches;
|
|
||||||
};
|
|
||||||
|
|
||||||
UnionPatch.prototype.createUI = function(parent) {
|
|
||||||
this.radios = [];
|
|
||||||
var radio_id = createID();
|
|
||||||
|
|
||||||
var container = $("<div>", {"class": "patch-union"});
|
|
||||||
container.append('<span class="patch-union-title">' + this.name + ':</span>');
|
|
||||||
for(var i = 0; i < this.patches.length; i++) {
|
|
||||||
var patch = this.patches[i];
|
|
||||||
var id = createID();
|
|
||||||
var label = patch.name;
|
|
||||||
var patchDiv = $('<div>', {'class' : 'patch'});
|
|
||||||
var radio = $('<input type="radio" id="' + id + '" name="' + radio_id + '">')[0];
|
|
||||||
this.radios.push(radio);
|
|
||||||
|
|
||||||
patchDiv.append(radio);
|
|
||||||
patchDiv.append('<label for="' + id + '">' + label + '</label>');
|
|
||||||
if(patch.tooltip) {
|
|
||||||
patchDiv.append('<div class="tooltip">' + patch.tooltip + '</div>');
|
|
||||||
}
|
|
||||||
container.append(patchDiv);
|
|
||||||
}
|
|
||||||
parent.append(container);
|
|
||||||
};
|
|
||||||
|
|
||||||
UnionPatch.prototype.updateUI = function(file) {
|
|
||||||
for(var i = 0; i < this.patches.length; i++) {
|
|
||||||
if(bytesMatch(file, this.offset, this.patches[i].patch)) {
|
|
||||||
this.radios[i].checked = true;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Default fallback
|
|
||||||
this.radios[0].checked = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
UnionPatch.prototype.validatePatch = function(file) {
|
|
||||||
for(var i = 0; i < this.patches.length; i++) {
|
|
||||||
if(bytesMatch(file, this.offset, this.patches[i].patch)) {
|
|
||||||
console.log(this.name, "has", this.patches[i].name, "enabled");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return '"' + this.name + '" doesn\'t have a valid patch! Have you got the right dll?';
|
|
||||||
};
|
|
||||||
|
|
||||||
UnionPatch.prototype.applyPatch = function(file) {
|
|
||||||
var patch = this.getSelected();
|
|
||||||
replace(file, this.offset, patch.patch);
|
|
||||||
};
|
|
||||||
|
|
||||||
UnionPatch.prototype.getSelected = function() {
|
|
||||||
for(var i = 0; i < this.patches.length; i++) {
|
|
||||||
if(this.radios[i].checked) {
|
|
||||||
return this.patches[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
var DllPatcherContainer = function (patchers) {
|
|
||||||
this.patchers = patchers;
|
|
||||||
this.createUI();
|
|
||||||
};
|
|
||||||
|
|
||||||
DllPatcherContainer.prototype.getSupportedDLLs = function () {
|
|
||||||
var dlls = [];
|
|
||||||
for (var i = 0; i < this.patchers.length; i++) {
|
|
||||||
var name = this.patchers[i].filename + ".dll";
|
|
||||||
if (dlls.indexOf(name) === -1) {
|
|
||||||
dlls.push(name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return dlls;
|
|
||||||
};
|
|
||||||
|
|
||||||
DllPatcherContainer.prototype.getSupportedVersions = function () {
|
|
||||||
var descriptions = [];
|
|
||||||
for (var i = 0; i < this.patchers.length; i++) {
|
|
||||||
if ($.type(this.patchers[i].description) === "string") {
|
|
||||||
descriptions.push(this.patchers[i].description);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return descriptions;
|
|
||||||
};
|
|
||||||
|
|
||||||
DllPatcherContainer.prototype.createUI = function () {
|
|
||||||
var self = this;
|
|
||||||
var container = $("<div>", {"class": "patchContainer"});
|
|
||||||
var header = this.getSupportedDLLs().join(", ");
|
|
||||||
container.html("<h3>" + header + "</h3>");
|
|
||||||
|
|
||||||
var supportedDlls = $("<ul>");
|
|
||||||
var versions = this.getSupportedVersions();
|
|
||||||
this.forceLoadTexts = [];
|
|
||||||
this.forceLoadButtons = [];
|
|
||||||
for (var i = 0; i < versions.length; i++) {
|
|
||||||
var listItem = $("<li>");
|
|
||||||
$('<span>').text(versions[i]).appendTo(listItem);
|
|
||||||
var matchPercent = $('<span>').addClass('matchPercent');
|
|
||||||
this.forceLoadTexts.push(matchPercent);
|
|
||||||
matchPercent.appendTo(listItem);
|
|
||||||
var forceButton = $('<button>').text('Force load?').hide();
|
|
||||||
this.forceLoadButtons.push(forceButton);
|
|
||||||
forceButton.appendTo(listItem);
|
|
||||||
listItem.appendTo(supportedDlls);
|
|
||||||
}
|
|
||||||
|
|
||||||
$("html").on("dragover dragenter", function () {
|
|
||||||
container.addClass("dragover");
|
|
||||||
return true;
|
|
||||||
})
|
|
||||||
.on("dragleave dragend drop", function () {
|
|
||||||
container.removeClass("dragover");
|
|
||||||
return true;
|
|
||||||
})
|
|
||||||
.on("dragover dragenter dragleave dragend drop", function (e) {
|
|
||||||
e.preventDefault();
|
|
||||||
});
|
|
||||||
|
|
||||||
container.on("drop", function (e) {
|
|
||||||
var files = e.originalEvent.dataTransfer.files;
|
|
||||||
if (files && files.length > 0)
|
|
||||||
self.loadFile(files[0]);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.fileInput = $("<input>",
|
|
||||||
{
|
|
||||||
"class": "fileInput",
|
|
||||||
"id": "any-file",
|
|
||||||
"type": "file",
|
|
||||||
});
|
|
||||||
var label = $("<label>", {"class": "fileLabel", "for": "any-file"});
|
|
||||||
label.html("<strong>Choose a file</strong> or drag and drop.");
|
|
||||||
|
|
||||||
this.fileInput.on("change", function (e) {
|
|
||||||
if (this.files && this.files.length > 0)
|
|
||||||
self.loadFile(this.files[0]);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.successDiv = $("<div>", {"class": "success"});
|
|
||||||
this.errorDiv = $("<div>", {"class": "error"});
|
|
||||||
|
|
||||||
container.append(this.fileInput);
|
|
||||||
container.append(label);
|
|
||||||
|
|
||||||
if (versions.length > 0) {
|
|
||||||
$("<h4>Supported Versions</h4>").appendTo(container);
|
|
||||||
}
|
|
||||||
container.append(supportedDlls);
|
|
||||||
container.append(this.successDiv);
|
|
||||||
container.append(this.errorDiv);
|
|
||||||
$("body").append(container);
|
|
||||||
};
|
|
||||||
|
|
||||||
// DRY
|
|
||||||
var loadPatch = function(_this, self, patcher) {
|
|
||||||
patcher.loadPatchUI();
|
|
||||||
patcher.updatePatchUI();
|
|
||||||
patcher.container.show();
|
|
||||||
var successStr = patcher.filename + ".dll"
|
|
||||||
if ($.type(_this.description) === "string") {
|
|
||||||
successStr += "(" + patcher.description + ")";
|
|
||||||
}
|
|
||||||
self.successDiv.html(successStr + " loaded successfully!");
|
|
||||||
}
|
|
||||||
|
|
||||||
DllPatcherContainer.prototype.loadFile = function (file) {
|
|
||||||
var reader = new FileReader();
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
reader.onload = function (e) {
|
|
||||||
var found = false;
|
|
||||||
// clear logs
|
|
||||||
self.errorDiv.empty();
|
|
||||||
self.successDiv.empty();
|
|
||||||
for (var i = 0; i < self.patchers.length; i++) {
|
|
||||||
var patcher = self.patchers[i];
|
|
||||||
// remove the previous UI to clear the page
|
|
||||||
patcher.destroyUI();
|
|
||||||
// patcher UI elements have to exist to load the file
|
|
||||||
patcher.createUI();
|
|
||||||
patcher.container.hide();
|
|
||||||
patcher.loadBuffer(e.target.result);
|
|
||||||
if (patcher.validatePatches()) {
|
|
||||||
found = true;
|
|
||||||
loadPatch(this, self, patcher);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!found) {
|
|
||||||
// let the user force a match
|
|
||||||
for (var i = 0; i < self.patchers.length; i++) {
|
|
||||||
var patcher = self.patchers[i];
|
|
||||||
|
|
||||||
var valid = patcher.validPatches;
|
|
||||||
var percent = (valid / patcher.totalPatches * 100).toFixed(1);
|
|
||||||
|
|
||||||
self.forceLoadTexts[i].text(' ' + valid + ' of ' + patcher.totalPatches + ' patches matched (' + percent + '%) ');
|
|
||||||
self.forceLoadButtons[i].show();
|
|
||||||
self.forceLoadButtons[i].off('click');
|
|
||||||
self.forceLoadButtons[i].click(function(i) {
|
|
||||||
// reset old text
|
|
||||||
for(var j = 0; j < self.patchers.length; j++) {
|
|
||||||
self.forceLoadButtons[j].hide();
|
|
||||||
self.forceLoadTexts[j].text('');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
loadPatch(this, self, self.patchers[i]);
|
|
||||||
}.bind(this, i));
|
|
||||||
}
|
|
||||||
self.errorDiv.html("No patch set was a 100% match.");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
reader.readAsArrayBuffer(file);
|
|
||||||
};
|
|
||||||
|
|
||||||
var DllPatcher = function(fname, args, description) {
|
|
||||||
this.mods = [];
|
|
||||||
for(var i = 0; i < args.length; i++) {
|
|
||||||
var mod = args[i];
|
|
||||||
if(mod.type) {
|
|
||||||
if(mod.type === "union") {
|
|
||||||
this.mods.push(new UnionPatch(mod));
|
|
||||||
}
|
|
||||||
} else { // standard patch
|
|
||||||
this.mods.push(new StandardPatch(mod));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.filename = fname;
|
|
||||||
this.description = description;
|
|
||||||
this.multiPatcher = true;
|
|
||||||
|
|
||||||
if (!this.description) {
|
|
||||||
// old style patcher, use the old method to generate the UI
|
|
||||||
this.multiPatcher = false;
|
|
||||||
this.createUI();
|
|
||||||
this.loadPatchUI();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
DllPatcher.prototype.createUI = function() {
|
|
||||||
var self = this;
|
|
||||||
this.container = $("<div>", {"class": "patchContainer"});
|
|
||||||
var header = this.filename + '.dll';
|
|
||||||
if($.type(this.description) === "string") {
|
|
||||||
header += ' (' + this.description + ')';
|
|
||||||
}
|
|
||||||
this.container.html('<h3>' + header + '</h3>');
|
|
||||||
|
|
||||||
this.successDiv = $("<div>", {"class": "success"});
|
|
||||||
this.errorDiv = $("<div>", {"class": "error"});
|
|
||||||
this.patchDiv = $("<div>", {"class": "patches"});
|
|
||||||
|
|
||||||
var saveButton = $("<button disabled>");
|
|
||||||
saveButton.text('Load DLL First');
|
|
||||||
saveButton.on('click', this.saveDll.bind(this));
|
|
||||||
this.saveButton = saveButton;
|
|
||||||
|
|
||||||
if (!this.multiPatcher) {
|
|
||||||
$('html').on('dragover dragenter', function() {
|
|
||||||
self.container.addClass('dragover');
|
|
||||||
return true;
|
|
||||||
})
|
|
||||||
.on('dragleave dragend drop', function() {
|
|
||||||
self.container.removeClass('dragover');
|
|
||||||
return true;
|
|
||||||
})
|
|
||||||
.on('dragover dragenter dragleave dragend drop', function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
});
|
|
||||||
|
|
||||||
this.container.on('drop', function(e) {
|
|
||||||
var files = e.originalEvent.dataTransfer.files;
|
|
||||||
if(files && files.length > 0)
|
|
||||||
self.loadFile(files[0]);
|
|
||||||
})
|
|
||||||
|
|
||||||
this.fileInput = $("<input>",
|
|
||||||
{"class": "fileInput",
|
|
||||||
"id" : this.filename + '-file',
|
|
||||||
"type" : 'file'});
|
|
||||||
var label = $("<label>", {"class": "fileLabel", "for": this.filename + '-file'});
|
|
||||||
label.html('<strong>Choose a file</strong> or drag and drop.');
|
|
||||||
|
|
||||||
this.fileInput.on('change', function(e) {
|
|
||||||
if(this.files && this.files.length > 0)
|
|
||||||
self.loadFile(this.files[0]);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.container.append(this.fileInput);
|
|
||||||
this.container.append(label);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.container.append(this.successDiv);
|
|
||||||
this.container.append(this.errorDiv);
|
|
||||||
this.container.append(this.patchDiv);
|
|
||||||
this.container.append(saveButton);
|
|
||||||
$("body").append(this.container);
|
|
||||||
}
|
|
||||||
|
|
||||||
DllPatcher.prototype.destroyUI = function () {
|
|
||||||
if (this.hasOwnProperty("container"))
|
|
||||||
this.container.remove();
|
|
||||||
};
|
|
||||||
|
|
||||||
DllPatcher.prototype.loadBuffer = function(buffer) {
|
|
||||||
this.dllFile = new Uint8Array(buffer);
|
|
||||||
if(this.validatePatches()) {
|
|
||||||
this.successDiv.removeClass("hidden");
|
|
||||||
this.successDiv.html("DLL loaded successfully!");
|
|
||||||
} else {
|
|
||||||
this.successDiv.addClass("hidden");
|
|
||||||
}
|
|
||||||
// Update save button regardless
|
|
||||||
this.saveButton.prop('disabled', false);
|
|
||||||
this.saveButton.text('Save DLL');
|
|
||||||
this.errorDiv.html(this.errorLog);
|
|
||||||
}
|
|
||||||
|
|
||||||
DllPatcher.prototype.loadFile = function(file) {
|
|
||||||
var reader = new FileReader();
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
reader.onload = function(e) {
|
|
||||||
self.loadBuffer(e.target.result);
|
|
||||||
self.updatePatchUI();
|
|
||||||
};
|
|
||||||
|
|
||||||
reader.readAsArrayBuffer(file);
|
|
||||||
};
|
|
||||||
|
|
||||||
DllPatcher.prototype.saveDll = function() {
|
|
||||||
if(!this.dllFile || !this.mods || !this.filename)
|
|
||||||
return;
|
|
||||||
var fname = this.filename;
|
|
||||||
|
|
||||||
for(var i = 0; i < this.mods.length; i++) {
|
|
||||||
this.mods[i].applyPatch(this.dllFile);
|
|
||||||
}
|
|
||||||
fname += '.dll';
|
|
||||||
|
|
||||||
var blob = new Blob([this.dllFile], {type: "application/octet-stream"});
|
|
||||||
saveAs(blob, fname);
|
|
||||||
}
|
|
||||||
|
|
||||||
DllPatcher.prototype.loadPatchUI = function() {
|
|
||||||
for(var i = 0; i < this.mods.length; i++) {
|
|
||||||
this.mods[i].createUI(this.patchDiv);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DllPatcher.prototype.updatePatchUI = function() {
|
|
||||||
for(var i = 0; i < this.mods.length; i++) {
|
|
||||||
this.mods[i].updateUI(this.dllFile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DllPatcher.prototype.validatePatches = function() {
|
|
||||||
this.errorLog = "";
|
|
||||||
var success = true;
|
|
||||||
this.validPatches = 0;
|
|
||||||
this.totalPatches = this.mods.length;
|
|
||||||
for(var i = 0; i < this.mods.length; i++) {
|
|
||||||
var error = this.mods[i].validatePatch(this.dllFile);
|
|
||||||
if(error) {
|
|
||||||
this.errorLog += error + "<br/>";
|
|
||||||
success = false;
|
|
||||||
} else {
|
|
||||||
this.validPatches++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return success;
|
|
||||||
}
|
|
||||||
|
|
||||||
var bytesMatch = function(buffer, offset, bytes) {
|
var bytesMatch = function(buffer, offset, bytes) {
|
||||||
for(var i = 0; i < bytes.length; i++) {
|
for(var i = 0; i < bytes.length; i++) {
|
||||||
if(buffer[offset+i] != bytes[i])
|
if(buffer[offset+i] != bytes[i])
|
||||||
@@ -488,7 +30,468 @@ var whichBytesMatch = function(buffer, offset, bytesArray) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
window.DllPatcher = DllPatcher;
|
// Each unique kind of patch should have createUI, validatePatch, applyPatch,
|
||||||
window.DllPatcherContainer = DllPatcherContainer;
|
// updateUI
|
||||||
|
|
||||||
|
class StandardPatch {
|
||||||
|
constructor(options) {
|
||||||
|
this.name = options.name;
|
||||||
|
this.patches = options.patches;
|
||||||
|
this.tooltip = options.tooltip;
|
||||||
|
}
|
||||||
|
|
||||||
|
createUI(parent) {
|
||||||
|
var id = createID();
|
||||||
|
var label = this.name;
|
||||||
|
var patch = $('<div>', {'class' : 'patch'});
|
||||||
|
this.checkbox = $('<input type="checkbox" id="' + id + '">')[0];
|
||||||
|
patch.append(this.checkbox);
|
||||||
|
patch.append('<label for="' + id + '">' + label + '</label>');
|
||||||
|
if(this.tooltip) {
|
||||||
|
patch.append('<div class="tooltip">' + this.tooltip + '</div>');
|
||||||
|
}
|
||||||
|
parent.append(patch);
|
||||||
|
}
|
||||||
|
|
||||||
|
updateUI(file) {
|
||||||
|
this.checkbox.checked = this.checkPatchBytes(file) === "on";
|
||||||
|
}
|
||||||
|
|
||||||
|
validatePatch(file) {
|
||||||
|
var status = this.checkPatchBytes(file);
|
||||||
|
if(status === "on") {
|
||||||
|
console.log('"' + this.name + '"', "is enabled!");
|
||||||
|
} else if(status === "off") {
|
||||||
|
console.log('"' + this.name + '"', "is disabled!");
|
||||||
|
} else {
|
||||||
|
return '"' + this.name + '" is neither on nor off! Have you got the right dll?';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
applyPatch(file) {
|
||||||
|
this.replaceAll(file, this.checkbox.checked);
|
||||||
|
}
|
||||||
|
|
||||||
|
replaceAll(file, featureOn) {
|
||||||
|
for(var i = 0; i < this.patches.length; i++) {
|
||||||
|
replace(file, this.patches[i].offset,
|
||||||
|
featureOn? this.patches[i].on : this.patches[i].off);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
checkPatchBytes(file) {
|
||||||
|
var patchStatus = "";
|
||||||
|
for(var i = 0; i < this.patches.length; i++) {
|
||||||
|
var patch = this.patches[i];
|
||||||
|
if(bytesMatch(file, patch.offset, patch.off)) {
|
||||||
|
if(patchStatus === "") {
|
||||||
|
patchStatus = "off";
|
||||||
|
} else if(patchStatus != "off"){
|
||||||
|
return "on/off mismatch within patch";
|
||||||
|
}
|
||||||
|
} else if(bytesMatch(file, patch.offset, patch.on)) {
|
||||||
|
if(patchStatus === "") {
|
||||||
|
patchStatus = "on";
|
||||||
|
} else if(patchStatus != "on"){
|
||||||
|
return "on/off mismatch within patch";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return "patch neither on nor off";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return patchStatus;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Each unique kind of patch should have createUI, validatePatch, applyPatch,
|
||||||
|
// updateUI
|
||||||
|
|
||||||
|
// The DEFAULT state is always the 1st element in the patches array
|
||||||
|
class UnionPatch {
|
||||||
|
constructor(options) {
|
||||||
|
this.name = options.name;
|
||||||
|
this.offset = options.offset;
|
||||||
|
this.patches = options.patches;
|
||||||
|
}
|
||||||
|
|
||||||
|
createUI(parent) {
|
||||||
|
this.radios = [];
|
||||||
|
var radio_id = createID();
|
||||||
|
|
||||||
|
var container = $("<div>", {"class": "patch-union"});
|
||||||
|
container.append('<span class="patch-union-title">' + this.name + ':</span>');
|
||||||
|
for(var i = 0; i < this.patches.length; i++) {
|
||||||
|
var patch = this.patches[i];
|
||||||
|
var id = createID();
|
||||||
|
var label = patch.name;
|
||||||
|
var patchDiv = $('<div>', {'class' : 'patch'});
|
||||||
|
var radio = $('<input type="radio" id="' + id + '" name="' + radio_id + '">')[0];
|
||||||
|
this.radios.push(radio);
|
||||||
|
|
||||||
|
patchDiv.append(radio);
|
||||||
|
patchDiv.append('<label for="' + id + '">' + label + '</label>');
|
||||||
|
if(patch.tooltip) {
|
||||||
|
patchDiv.append('<div class="tooltip">' + patch.tooltip + '</div>');
|
||||||
|
}
|
||||||
|
container.append(patchDiv);
|
||||||
|
}
|
||||||
|
parent.append(container);
|
||||||
|
}
|
||||||
|
|
||||||
|
updateUI(file) {
|
||||||
|
for(var i = 0; i < this.patches.length; i++) {
|
||||||
|
if(bytesMatch(file, this.offset, this.patches[i].patch)) {
|
||||||
|
this.radios[i].checked = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Default fallback
|
||||||
|
this.radios[0].checked = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
validatePatch(file) {
|
||||||
|
for(var i = 0; i < this.patches.length; i++) {
|
||||||
|
if(bytesMatch(file, this.offset, this.patches[i].patch)) {
|
||||||
|
console.log(this.name, "has", this.patches[i].name, "enabled");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return '"' + this.name + '" doesn\'t have a valid patch! Have you got the right dll?';
|
||||||
|
}
|
||||||
|
|
||||||
|
applyPatch(file) {
|
||||||
|
var patch = this.getSelected();
|
||||||
|
replace(file, this.offset, patch.patch);
|
||||||
|
}
|
||||||
|
|
||||||
|
getSelected() {
|
||||||
|
for(var i = 0; i < this.patches.length; i++) {
|
||||||
|
if(this.radios[i].checked) {
|
||||||
|
return this.patches[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var loadPatch = function(_this, self, patcher) {
|
||||||
|
patcher.loadPatchUI();
|
||||||
|
patcher.updatePatchUI();
|
||||||
|
patcher.container.show();
|
||||||
|
var successStr = patcher.filename;
|
||||||
|
if ($.type(_this.description) === "string") {
|
||||||
|
successStr += "(" + patcher.description + ")";
|
||||||
|
}
|
||||||
|
self.successDiv.html(successStr + " loaded successfully!");
|
||||||
|
};
|
||||||
|
|
||||||
|
class PatchContainer {
|
||||||
|
constructor(patchers) {
|
||||||
|
this.patchers = patchers;
|
||||||
|
this.createUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
getSupportedDLLs() {
|
||||||
|
var dlls = [];
|
||||||
|
for (var i = 0; i < this.patchers.length; i++) {
|
||||||
|
var name = this.patchers[i].filename;
|
||||||
|
if (dlls.indexOf(name) === -1) {
|
||||||
|
dlls.push(name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return dlls;
|
||||||
|
}
|
||||||
|
|
||||||
|
getSupportedVersions() {
|
||||||
|
var descriptions = [];
|
||||||
|
for (var i = 0; i < this.patchers.length; i++) {
|
||||||
|
descriptions.push(this.patchers[i].description);
|
||||||
|
}
|
||||||
|
return descriptions;
|
||||||
|
}
|
||||||
|
|
||||||
|
createUI() {
|
||||||
|
var self = this;
|
||||||
|
var container = $("<div>", {"class": "patchContainer"});
|
||||||
|
var header = this.getSupportedDLLs().join(", ");
|
||||||
|
container.html("<h3>" + header + "</h3>");
|
||||||
|
|
||||||
|
var supportedDlls = $("<ul>");
|
||||||
|
var versions = this.getSupportedVersions();
|
||||||
|
this.forceLoadTexts = [];
|
||||||
|
this.forceLoadButtons = [];
|
||||||
|
for (var i = 0; i < versions.length; i++) {
|
||||||
|
var listItem = $("<li>");
|
||||||
|
$('<span>').text(versions[i]).appendTo(listItem);
|
||||||
|
var matchPercent = $('<span>').addClass('matchPercent');
|
||||||
|
this.forceLoadTexts.push(matchPercent);
|
||||||
|
matchPercent.appendTo(listItem);
|
||||||
|
var forceButton = $('<button>').text('Force load?').hide();
|
||||||
|
this.forceLoadButtons.push(forceButton);
|
||||||
|
forceButton.appendTo(listItem);
|
||||||
|
listItem.appendTo(supportedDlls);
|
||||||
|
}
|
||||||
|
|
||||||
|
$("html").on("dragover dragenter", function () {
|
||||||
|
container.addClass("dragover");
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.on("dragleave dragend drop", function () {
|
||||||
|
container.removeClass("dragover");
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.on("dragover dragenter dragleave dragend drop", function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
container.on("drop", function (e) {
|
||||||
|
var files = e.originalEvent.dataTransfer.files;
|
||||||
|
if (files && files.length > 0)
|
||||||
|
self.loadFile(files[0]);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.fileInput = $("<input>",
|
||||||
|
{
|
||||||
|
"class": "fileInput",
|
||||||
|
"id": "any-file",
|
||||||
|
"type": "file",
|
||||||
|
});
|
||||||
|
var label = $("<label>", {"class": "fileLabel", "for": "any-file"});
|
||||||
|
label.html("<strong>Choose a file</strong> or drag and drop.");
|
||||||
|
|
||||||
|
this.fileInput.on("change", function (e) {
|
||||||
|
if (this.files && this.files.length > 0)
|
||||||
|
self.loadFile(this.files[0]);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.successDiv = $("<div>", {"class": "success"});
|
||||||
|
this.errorDiv = $("<div>", {"class": "error"});
|
||||||
|
|
||||||
|
container.append(this.fileInput);
|
||||||
|
container.append(label);
|
||||||
|
|
||||||
|
if (versions.length > 0) {
|
||||||
|
$("<h4>Supported Versions</h4>").appendTo(container);
|
||||||
|
}
|
||||||
|
container.append(supportedDlls);
|
||||||
|
container.append(this.successDiv);
|
||||||
|
container.append(this.errorDiv);
|
||||||
|
$("body").append(container);
|
||||||
|
}
|
||||||
|
|
||||||
|
loadFile(file) {
|
||||||
|
var reader = new FileReader();
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
reader.onload = function (e) {
|
||||||
|
var found = false;
|
||||||
|
// clear logs
|
||||||
|
self.errorDiv.empty();
|
||||||
|
self.successDiv.empty();
|
||||||
|
for (var i = 0; i < self.patchers.length; i++) {
|
||||||
|
var patcher = self.patchers[i];
|
||||||
|
// remove the previous UI to clear the page
|
||||||
|
patcher.destroyUI();
|
||||||
|
// patcher UI elements have to exist to load the file
|
||||||
|
patcher.createUI();
|
||||||
|
patcher.container.hide();
|
||||||
|
patcher.loadBuffer(e.target.result);
|
||||||
|
if (patcher.validatePatches()) {
|
||||||
|
found = true;
|
||||||
|
loadPatch(this, self, patcher);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!found) {
|
||||||
|
// let the user force a match
|
||||||
|
for (var i = 0; i < self.patchers.length; i++) {
|
||||||
|
var patcher = self.patchers[i];
|
||||||
|
|
||||||
|
var valid = patcher.validPatches;
|
||||||
|
var percent = (valid / patcher.totalPatches * 100).toFixed(1);
|
||||||
|
|
||||||
|
self.forceLoadTexts[i].text(' ' + valid + ' of ' + patcher.totalPatches + ' patches matched (' + percent + '%) ');
|
||||||
|
self.forceLoadButtons[i].show();
|
||||||
|
self.forceLoadButtons[i].off('click');
|
||||||
|
self.forceLoadButtons[i].click(function(i) {
|
||||||
|
// reset old text
|
||||||
|
for(var j = 0; j < self.patchers.length; j++) {
|
||||||
|
self.forceLoadButtons[j].hide();
|
||||||
|
self.forceLoadTexts[j].text('');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
loadPatch(this, self, self.patchers[i]);
|
||||||
|
}.bind(this, i));
|
||||||
|
}
|
||||||
|
self.errorDiv.html("No patch set was a 100% match.");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
reader.readAsArrayBuffer(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class Patcher {
|
||||||
|
constructor(fname, description, args) {
|
||||||
|
this.mods = [];
|
||||||
|
for(var i = 0; i < args.length; i++) {
|
||||||
|
var mod = args[i];
|
||||||
|
if(mod.type) {
|
||||||
|
if(mod.type === "union") {
|
||||||
|
this.mods.push(new UnionPatch(mod));
|
||||||
|
}
|
||||||
|
} else { // standard patch
|
||||||
|
this.mods.push(new StandardPatch(mod));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.filename = fname;
|
||||||
|
this.description = description;
|
||||||
|
this.multiPatcher = true;
|
||||||
|
|
||||||
|
if (!this.description) {
|
||||||
|
// old style patcher, use the old method to generate the UI
|
||||||
|
this.multiPatcher = false;
|
||||||
|
this.createUI();
|
||||||
|
this.loadPatchUI();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
createUI() {
|
||||||
|
var self = this;
|
||||||
|
this.container = $("<div>", {"class": "patchContainer"});
|
||||||
|
var header = this.filename;
|
||||||
|
if(this.description === "string") {
|
||||||
|
header += ' (' + this.description + ')';
|
||||||
|
}
|
||||||
|
this.container.html('<h3>' + header + '</h3>');
|
||||||
|
|
||||||
|
this.successDiv = $("<div>", {"class": "success"});
|
||||||
|
this.errorDiv = $("<div>", {"class": "error"});
|
||||||
|
this.patchDiv = $("<div>", {"class": "patches"});
|
||||||
|
|
||||||
|
var saveButton = $("<button disabled>");
|
||||||
|
saveButton.text('Load DLL First');
|
||||||
|
saveButton.on('click', this.saveDll.bind(this));
|
||||||
|
this.saveButton = saveButton;
|
||||||
|
|
||||||
|
if (!this.multiPatcher) {
|
||||||
|
$('html').on('dragover dragenter', function() {
|
||||||
|
self.container.addClass('dragover');
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.on('dragleave dragend drop', function() {
|
||||||
|
self.container.removeClass('dragover');
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.on('dragover dragenter dragleave dragend drop', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
this.container.on('drop', function(e) {
|
||||||
|
var files = e.originalEvent.dataTransfer.files;
|
||||||
|
if(files && files.length > 0)
|
||||||
|
self.loadFile(files[0]);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.fileInput = $("<input>",
|
||||||
|
{"class": "fileInput",
|
||||||
|
"id" : this.filename + '-file',
|
||||||
|
"type" : 'file'});
|
||||||
|
var label = $("<label>", {"class": "fileLabel", "for": this.filename + '-file'});
|
||||||
|
label.html('<strong>Choose a file</strong> or drag and drop.');
|
||||||
|
|
||||||
|
this.fileInput.on('change', function(e) {
|
||||||
|
if(this.files && this.files.length > 0)
|
||||||
|
self.loadFile(this.files[0]);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.container.append(this.fileInput);
|
||||||
|
this.container.append(label);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.container.append(this.successDiv);
|
||||||
|
this.container.append(this.errorDiv);
|
||||||
|
this.container.append(this.patchDiv);
|
||||||
|
this.container.append(saveButton);
|
||||||
|
$("body").append(this.container);
|
||||||
|
}
|
||||||
|
|
||||||
|
destroyUI() {
|
||||||
|
if (this.hasOwnProperty("container"))
|
||||||
|
this.container.remove();
|
||||||
|
}
|
||||||
|
|
||||||
|
loadBuffer(buffer) {
|
||||||
|
this.dllFile = new Uint8Array(buffer);
|
||||||
|
if(this.validatePatches()) {
|
||||||
|
this.successDiv.removeClass("hidden");
|
||||||
|
this.successDiv.html("DLL loaded successfully!");
|
||||||
|
} else {
|
||||||
|
this.successDiv.addClass("hidden");
|
||||||
|
}
|
||||||
|
// Update save button regardless
|
||||||
|
this.saveButton.prop('disabled', false);
|
||||||
|
this.saveButton.text('Save Patched File');
|
||||||
|
this.errorDiv.html(this.errorLog);
|
||||||
|
}
|
||||||
|
|
||||||
|
loadFile(file) {
|
||||||
|
var reader = new FileReader();
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
reader.onload = function(e) {
|
||||||
|
self.loadBuffer(e.target.result);
|
||||||
|
self.updatePatchUI();
|
||||||
|
};
|
||||||
|
|
||||||
|
reader.readAsArrayBuffer(file);
|
||||||
|
}
|
||||||
|
|
||||||
|
saveDll() {
|
||||||
|
if(!this.dllFile || !this.mods || !this.filename)
|
||||||
|
return;
|
||||||
|
|
||||||
|
for(var i = 0; i < this.mods.length; i++) {
|
||||||
|
this.mods[i].applyPatch(this.dllFile);
|
||||||
|
}
|
||||||
|
|
||||||
|
var blob = new Blob([this.dllFile], {type: "application/octet-stream"});
|
||||||
|
saveAs(blob, this.filename);
|
||||||
|
}
|
||||||
|
|
||||||
|
loadPatchUI() {
|
||||||
|
for(var i = 0; i < this.mods.length; i++) {
|
||||||
|
this.mods[i].createUI(this.patchDiv);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updatePatchUI() {
|
||||||
|
for(var i = 0; i < this.mods.length; i++) {
|
||||||
|
this.mods[i].updateUI(this.dllFile);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
validatePatches() {
|
||||||
|
this.errorLog = "";
|
||||||
|
var success = true;
|
||||||
|
this.validPatches = 0;
|
||||||
|
this.totalPatches = this.mods.length;
|
||||||
|
for(var i = 0; i < this.mods.length; i++) {
|
||||||
|
var error = this.mods[i].validatePatch(this.dllFile);
|
||||||
|
if(error) {
|
||||||
|
this.errorLog += error + "<br/>";
|
||||||
|
success = false;
|
||||||
|
} else {
|
||||||
|
this.validPatches++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
window.Patcher = Patcher;
|
||||||
|
window.PatchContainer = PatchContainer;
|
||||||
|
|
||||||
})(window, document);
|
})(window, document);
|
||||||
+7
-8
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("jubeat", [
|
new Patcher("jubeat.dll", "2018-08-14", [
|
||||||
// Ported by Felix
|
// Ported by Felix
|
||||||
{
|
{
|
||||||
name : "Disable Tutorial",
|
name : "Disable Tutorial",
|
||||||
@@ -55,8 +55,8 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], "2018-08-14"),
|
]),
|
||||||
new DllPatcher("jubeat", [
|
new Patcher("jubeat.dll", "2018-07-09", [
|
||||||
{
|
{
|
||||||
name: "Disable Tutorial",
|
name: "Disable Tutorial",
|
||||||
patches: [{offset: 0xCFFC7, off: [0x75, 0x4A, 0x57, 0x68, 0x00], on: [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
patches: [{offset: 0xCFFC7, off: [0x75, 0x4A, 0x57, 0x68, 0x00], on: [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
||||||
@@ -102,14 +102,13 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], "2018-07-09"),
|
]),
|
||||||
|
new Patcher("music_db.dll", "music_db.dll", [
|
||||||
new DllPatcher("music_db", [
|
|
||||||
{
|
{
|
||||||
name : "Unlock all songs",
|
name : "Unlock all songs",
|
||||||
patches : [{offset : 0x1B8F, off: [0x74, 0x09], on : [0x90, 0x90]}]
|
patches : [{offset : 0x1B8F, off: [0x74, 0x09], on : [0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], true)
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+5
-5
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("jubeat", [
|
new Patcher("jubeat.dll", "jubeat.dll", [
|
||||||
{
|
{
|
||||||
name : "Disable tutorial",
|
name : "Disable tutorial",
|
||||||
patches : [{offset : 0x81F79, off: [0x0F, 0x85, 0xC7], on : [0xE9, 0xC6, 0x01]}]
|
patches : [{offset : 0x81F79, off: [0x0F, 0x85, 0xC7], on : [0xE9, 0xC6, 0x01]}]
|
||||||
@@ -20,14 +20,14 @@
|
|||||||
name : "SELECT MUSIC timer lock",
|
name : "SELECT MUSIC timer lock",
|
||||||
patches : [{offset : 0x16E64D, off : [0x75], on : [0xEB]}]
|
patches : [{offset : 0x16E64D, off : [0x75], on : [0xEB]}]
|
||||||
},
|
},
|
||||||
], true),
|
]),
|
||||||
|
|
||||||
new DllPatcher("music_db", [
|
new Patcher("music_db.dll", "music_db.dll", [
|
||||||
{
|
{
|
||||||
name : "Unlock all songs",
|
name : "Unlock all songs",
|
||||||
patches : [{offset : 0x266D, off: [0x02], on : [0x1f]}]
|
patches : [{offset : 0x266D, off: [0x02], on : [0x1f]}]
|
||||||
},
|
},
|
||||||
], true)
|
])
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+7
-7
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("jubeat", [
|
new Patcher("jubeat.dll", "2017-06-20", [
|
||||||
{
|
{
|
||||||
name : "Disable tutorial",
|
name : "Disable tutorial",
|
||||||
patches : [{offset : 0xAAC32, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
patches : [{offset : 0xAAC32, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
||||||
@@ -20,9 +20,9 @@
|
|||||||
name : "SELECT MUSIC timer lock",
|
name : "SELECT MUSIC timer lock",
|
||||||
patches : [{offset : 0x80576, off : [0x75], on : [0xEB]}]
|
patches : [{offset : 0x80576, off : [0x75], on : [0xEB]}]
|
||||||
},
|
},
|
||||||
], "2017-06-20"),
|
]),
|
||||||
|
|
||||||
new DllPatcher("jubeat", [
|
new Patcher("jubeat.dll", "2017-04-15", [
|
||||||
{
|
{
|
||||||
name : "Disable tutorial",
|
name : "Disable tutorial",
|
||||||
patches : [{offset : 0xAA462, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
patches : [{offset : 0xAA462, off: [0x75, 0x4A, 0x53, 0x68, 0x00], on : [0xE9, 0x90, 0x00, 0x00, 0x00]}]
|
||||||
@@ -31,14 +31,14 @@
|
|||||||
name : "SELECT MUSIC timer lock",
|
name : "SELECT MUSIC timer lock",
|
||||||
patches : [{offset : 0x802D0, off : [0x75], on : [0xEB]}]
|
patches : [{offset : 0x802D0, off : [0x75], on : [0xEB]}]
|
||||||
},
|
},
|
||||||
], "2017-04-15"),
|
]),
|
||||||
|
|
||||||
new DllPatcher("music_db", [
|
new Patcher("music_db.dll", "music_db.dll", [
|
||||||
{
|
{
|
||||||
name : "Unlock all songs",
|
name : "Unlock all songs",
|
||||||
patches : [{offset : 0x17DF, off: [0x74, 0x09], on : [0x90, 0x90]}]
|
patches : [{offset : 0x17DF, off: [0x74, 0x09], on : [0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], true)
|
])
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+7
-9
@@ -10,15 +10,13 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new Patcher("museca.dll", "", [
|
||||||
new DllPatcher("museca", [
|
{
|
||||||
{
|
//Discovered by Cammy - ported by Zelminar
|
||||||
//Discovered by Cammy - ported by Zelminar
|
name: "Song 1 Lock",
|
||||||
name: "Song 1 Lock",
|
tooltip: "Song clears/scores only. Profile progress and custom settings do not save. Reboot game to re-query for scores.",
|
||||||
tooltip: "Song clears/scores only. Profile progress and custom settings do not save. Reboot game to re-query for scores.",
|
patches: [{offset: 0x27E0C7, off: [0xFF, 0x83, 0x8C, 0x09, 0x00, 0x00], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90]}]
|
||||||
patches: [{offset: 0x27E0C7, off: [0xFF, 0x83, 0x8C, 0x09, 0x00, 0x00], on: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90]}]
|
},
|
||||||
},
|
|
||||||
], true),
|
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+5
-5
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("museca", [
|
new Patcher("museca.dll", "2017-06-28 -- 2017-12-25", [
|
||||||
{
|
{
|
||||||
name: "Infinite Final Layer", //Created by Akubits & Cammy
|
name: "Infinite Final Layer", //Created by Akubits & Cammy
|
||||||
patches: [
|
patches: [
|
||||||
@@ -42,8 +42,8 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2017-06-28 -- 2017-12-25"),
|
]),
|
||||||
new DllPatcher("museca", [
|
new Patcher("museca.dll", "2018-07-30", [
|
||||||
{
|
{
|
||||||
name: "Infinite Final Layer", //Created by Akubits & Cammy
|
name: "Infinite Final Layer", //Created by Akubits & Cammy
|
||||||
patches: [
|
patches: [
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2018-07-30"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+5
-5
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2014-09-17", [
|
||||||
{
|
{
|
||||||
//by nibs
|
//by nibs
|
||||||
name: "Shorter monitor check",
|
name: "Shorter monitor check",
|
||||||
@@ -25,8 +25,8 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x14E2AD, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x14E2AD, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2014-09-17"),
|
]),
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2015-08-05", [
|
||||||
{
|
{
|
||||||
name: "Timer Freeze",
|
name: "Timer Freeze",
|
||||||
patches: [{offset: 0x9c55e, off: [0x74], on: [0xEB]}]
|
patches: [{offset: 0x9c55e, off: [0x74], on: [0xEB]}]
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x16E911, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x16E911, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2015-08-05"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcher("popn22", [
|
new Patcher("popn22.dll", "", [
|
||||||
{
|
{
|
||||||
name : "Unlock all the things",
|
name : "Unlock all the things",
|
||||||
// Auto generated and thus filthy
|
// Auto generated and thus filthy
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcher("popn22", [
|
new Patcher("popn22.dll", "", [
|
||||||
{
|
{
|
||||||
name : "Song/EX unlock",
|
name : "Song/EX unlock",
|
||||||
patches : [{offset : 0x59508, off: [0xF6, 0xD8, 0x1A, 0xC0, 0x24, 0x02], on : [0xB0, 0x02, 0x90, 0x90, 0x90, 0x90]},
|
patches : [{offset : 0x59508, off: [0xF6, 0xD8, 0x1A, 0xC0, 0x24, 0x02], on : [0xB0, 0x02, 0x90, 0x90, 0x90, 0x90]},
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcher("popn22", [
|
new Patcher("popn22.dll", "", [
|
||||||
{
|
{
|
||||||
name : "E: drive fix",
|
name : "E: drive fix",
|
||||||
tooltip: "Fix crash caused by no E: drive",
|
tooltip: "Fix crash caused by no E: drive",
|
||||||
|
|||||||
+3
-3
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("popn22", [
|
new Patcher("popn22.dll", "2019-04-23", [
|
||||||
{
|
{
|
||||||
name: "E: Drive Fix",
|
name: "E: Drive Fix",
|
||||||
tooltip: "Fix crash caused by no E: drive",
|
tooltip: "Fix crash caused by no E: drive",
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
{ offset: 0x10977E, off: [0x84, 0xC0], on: [0xB0, 0x01] },
|
{ offset: 0x10977E, off: [0x84, 0xC0], on: [0xB0, 0x01] },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
], "2019-04-23"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcher("reflecbeat", [
|
new Patcher("reflecbeat.dll", "", [
|
||||||
{
|
{
|
||||||
name : "E: drive fix",
|
name : "E: drive fix",
|
||||||
tooltip: "Fix crash caused by no E: drive",
|
tooltip: "Fix crash caused by no E: drive",
|
||||||
|
|||||||
+11
-11
@@ -10,8 +10,8 @@
|
|||||||
<script type='text/javascript' src='js/dllpatcher.js'></script>
|
<script type='text/javascript' src='js/dllpatcher.js'></script>
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
window.addEventListener('load', function () {
|
window.addEventListener('load', function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2019-01-23", [
|
||||||
{
|
{
|
||||||
name: 'Unlock All Songs',
|
name: 'Unlock All Songs',
|
||||||
patches: [{offset: 0x1609C2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
patches: [{offset: 0x1609C2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
||||||
@@ -34,8 +34,8 @@
|
|||||||
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
||||||
patches: [{offset: 0x33DF5A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
patches: [{offset: 0x33DF5A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], "2019-01-23"),
|
]),
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2019-02-20", [
|
||||||
{
|
{
|
||||||
name: 'Unlock All Songs',
|
name: 'Unlock All Songs',
|
||||||
patches: [{offset: 0x161462, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
patches: [{offset: 0x161462, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
||||||
@@ -44,8 +44,8 @@
|
|||||||
name: 'Premium Free Timer Freeze',
|
name: 'Premium Free Timer Freeze',
|
||||||
patches: [{offset: 0x16366D, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
|
patches: [{offset: 0x16366D, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], "2019-02-20"),
|
]),
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2019-06-03", [
|
||||||
{
|
{
|
||||||
name: 'Unlock All Songs',
|
name: 'Unlock All Songs',
|
||||||
patches: [{offset: 0x16C412, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
patches: [{offset: 0x16C412, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
||||||
@@ -54,8 +54,8 @@
|
|||||||
name: 'Premium Free Timer Freeze',
|
name: 'Premium Free Timer Freeze',
|
||||||
patches: [{offset: 0x16E6ED, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
|
patches: [{offset: 0x16E6ED, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
|
||||||
},
|
},
|
||||||
], "2019-06-03"),
|
]),
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2019-09-02", [
|
||||||
{
|
{
|
||||||
name: 'SSE4.2 Fix',
|
name: 'SSE4.2 Fix',
|
||||||
tooltip : "This will allow the game to run on processors which do not support the SSE4.2 instruction set. If you can successfully boot the game, do NOT check this.",
|
tooltip : "This will allow the game to run on processors which do not support the SSE4.2 instruction set. If you can successfully boot the game, do NOT check this.",
|
||||||
@@ -170,8 +170,8 @@
|
|||||||
tooltip: "Reduce time before CPUs fill empty slots in online lobbies from 1m5s to 30s. Only takes effect if you are the host.",
|
tooltip: "Reduce time before CPUs fill empty slots in online lobbies from 1m5s to 30s. Only takes effect if you are the host.",
|
||||||
patches: [{offset: 0x37FE54, off: [0x3C, 0x0F], on: [0x08, 0x07]}]
|
patches: [{offset: 0x37FE54, off: [0x3C, 0x0F], on: [0x08, 0x07]}]
|
||||||
},
|
},
|
||||||
], "2019-09-02"),
|
]),
|
||||||
new DllPatcher('bm2dx', [
|
new Patcher('bm2dx.dll', "2019-10-07", [
|
||||||
{
|
{
|
||||||
name: 'SSE4.2 Fix',
|
name: 'SSE4.2 Fix',
|
||||||
tooltip : "This will allow the game to run on processors which do not support the SSE4.2 instruction set. If you can successfully boot the game, do NOT check this.",
|
tooltip : "This will allow the game to run on processors which do not support the SSE4.2 instruction set. If you can successfully boot the game, do NOT check this.",
|
||||||
@@ -281,7 +281,7 @@
|
|||||||
tooltip: "Runs for 120 frames (2 seconds) instead of 1200 (20 seconds), recommended only if you have a very stable framerate",
|
tooltip: "Runs for 120 frames (2 seconds) instead of 1200 (20 seconds), recommended only if you have a very stable framerate",
|
||||||
patches: [{offset: 0x366E6C, off: [0xB0, 0x04], on: [0x78, 0x00]}]
|
patches: [{offset: 0x366E6C, off: [0xB0, 0x04], on: [0x78, 0x00]}]
|
||||||
},
|
},
|
||||||
], "2019-10-07"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+1
-1
@@ -11,7 +11,7 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
// all patches made by DJH unless specified otherwise
|
// all patches made by DJH unless specified otherwise
|
||||||
new DllPatcher("soundvoltex", [
|
new Patcher("soundvoltex.dll", "", [
|
||||||
{
|
{
|
||||||
name : "All songs unlocked",
|
name : "All songs unlocked",
|
||||||
patches : [{offset : 0x13AF9B, off: [0xE8, 0xF0, 0xE2, 0x01], on : [0xB8, 0x0B, 0x00, 0x00]},
|
patches : [{offset : 0x13AF9B, off: [0xE8, 0xF0, 0xE2, 0x01], on : [0xB8, 0x0B, 0x00, 0x00]},
|
||||||
|
|||||||
+15
-15
@@ -10,8 +10,8 @@
|
|||||||
<script type='text/javascript' src='js/dllpatcher.js'></script>
|
<script type='text/javascript' src='js/dllpatcher.js'></script>
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
window.addEventListener('load', function () {
|
window.addEventListener('load', function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher('soundvoltex', [
|
new Patcher('soundvoltex.dll', "2019-02-06", [
|
||||||
{
|
{
|
||||||
name: 'All songs/difficulties unlocked',
|
name: 'All songs/difficulties unlocked',
|
||||||
patches: [
|
patches: [
|
||||||
@@ -143,8 +143,8 @@
|
|||||||
tooltip: 'Automatically skips the screen between song select and gameplay',
|
tooltip: 'Automatically skips the screen between song select and gameplay',
|
||||||
patches: [{offset: 0x315600, off: [0x4D], on: [0x4E]}]
|
patches: [{offset: 0x315600, off: [0x4D], on: [0x4E]}]
|
||||||
},
|
},
|
||||||
], "2019-02-06"),
|
]),
|
||||||
new DllPatcher('soundvoltex', [
|
new Patcher('soundvoltex.dll', "2018-10-23", [
|
||||||
{
|
{
|
||||||
name: 'All songs/difficulties unlocked',
|
name: 'All songs/difficulties unlocked',
|
||||||
patches: [
|
patches: [
|
||||||
@@ -270,8 +270,8 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2018-10-23"),
|
]),
|
||||||
new DllPatcher('soundvoltex', [
|
new Patcher('soundvoltex.dll', "2018-08-21", [
|
||||||
{
|
{
|
||||||
name: 'All songs/difficulties unlocked',
|
name: 'All songs/difficulties unlocked',
|
||||||
patches: [
|
patches: [
|
||||||
@@ -397,8 +397,8 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2018-08-21"),
|
]),
|
||||||
new DllPatcher('soundvoltex', [
|
new Patcher('soundvoltex.dll', "2018-06-05", [
|
||||||
{
|
{
|
||||||
name: 'All songs/difficulties unlocked',
|
name: 'All songs/difficulties unlocked',
|
||||||
patches: [
|
patches: [
|
||||||
@@ -523,8 +523,8 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2018-06-05"),
|
]),
|
||||||
new DllPatcher('soundvoltex', [
|
new Patcher('soundvoltex.dll', "2018-01-16 with Enhanced Continue", [
|
||||||
{
|
{
|
||||||
// Credit to kacklappen23
|
// Credit to kacklappen23
|
||||||
name: 'All songs/difficulties unlocked',
|
name: 'All songs/difficulties unlocked',
|
||||||
@@ -638,8 +638,8 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2018-01-16 with Enhanced Continue"),
|
]),
|
||||||
new DllPatcher('soundvoltex', [
|
new Patcher('soundvoltex.dll', "2018-01-16", [
|
||||||
{
|
{
|
||||||
name: 'All songs/difficulties unlocked',
|
name: 'All songs/difficulties unlocked',
|
||||||
patches: [{offset: 0x1531F2, off: [0xE8, 0x09, 0x43, 0x02], on: [0xB8, 0x0D, 0x00, 0x00]},
|
patches: [{offset: 0x1531F2, off: [0xE8, 0x09, 0x43, 0x02], on: [0xB8, 0x0D, 0x00, 0x00]},
|
||||||
@@ -732,10 +732,10 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2018-01-16"),
|
]),
|
||||||
// all patches ported to IV by Zelminar unless specified otherwise
|
// all patches ported to IV by Zelminar unless specified otherwise
|
||||||
// all original patches created by DJH unless specified otherwise
|
// all original patches created by DJH unless specified otherwise
|
||||||
new DllPatcher('soundvoltex', [
|
new Patcher('soundvoltex.dll', "2017-11-28", [
|
||||||
{
|
{
|
||||||
name: 'All songs/difficulties unlocked',
|
name: 'All songs/difficulties unlocked',
|
||||||
patches: [
|
patches: [
|
||||||
@@ -869,7 +869,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
], "2017-11-28")
|
])
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+3
-3
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2017-08-28", [
|
||||||
{
|
{
|
||||||
name : "Timer Freeze",
|
name : "Timer Freeze",
|
||||||
patches : [{offset : 0x9BAEE, off: [0x74], on : [0xEB]}]
|
patches : [{offset : 0x9BAEE, off: [0x74], on : [0xEB]}]
|
||||||
@@ -114,7 +114,7 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x15ADF9, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x15ADF9, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2017-08-28"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+5
-5
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2013-10-02", [
|
||||||
{
|
{
|
||||||
//by nibs
|
//by nibs
|
||||||
name: "Shorter monitor check",
|
name: "Shorter monitor check",
|
||||||
@@ -25,8 +25,8 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x160B05, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x160B05, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2013-10-02"),
|
]),
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2014-07-16", [
|
||||||
{
|
{
|
||||||
name: "Timer Freeze",
|
name: "Timer Freeze",
|
||||||
patches: [{offset: 0x9150E, off: [0x74], on: [0xEB]}]
|
patches: [{offset: 0x9150E, off: [0x74], on: [0xEB]}]
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x192175, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x192175, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2014-07-16"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+11
-11
@@ -10,8 +10,8 @@
|
|||||||
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener("load", function () {
|
window.addEventListener("load", function () {
|
||||||
new DllPatcherContainer([
|
new PatchContainer([
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2012-09-19", [
|
||||||
{
|
{
|
||||||
//by nibs
|
//by nibs
|
||||||
name: "Shorter monitor check",
|
name: "Shorter monitor check",
|
||||||
@@ -25,26 +25,26 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x143C45, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x143C45, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2012-09-19"),
|
]),
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2012-10-09", [
|
||||||
{
|
{
|
||||||
name: "Premium Free",
|
name: "Premium Free",
|
||||||
patches: [{offset: 0x49CAC, off: [0x75], on: [0xEB]}]
|
patches: [{offset: 0x49CAC, off: [0x75], on: [0xEB]}]
|
||||||
},
|
},
|
||||||
], "2012-10-09"),
|
]),
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2012-12-07", [
|
||||||
{
|
{
|
||||||
name: "Premium Free",
|
name: "Premium Free",
|
||||||
patches: [{offset: 0x4C47C, off: [0x75], on: [0xEB]}]
|
patches: [{offset: 0x4C47C, off: [0x75], on: [0xEB]}]
|
||||||
},
|
},
|
||||||
], "2012-12-07"),
|
]),
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2013-03-05", [
|
||||||
{
|
{
|
||||||
name: "Premium Free",
|
name: "Premium Free",
|
||||||
patches: [{offset: 0x4E6CC, off: [0x75], on: [0xEB]}]
|
patches: [{offset: 0x4E6CC, off: [0x75], on: [0xEB]}]
|
||||||
},
|
},
|
||||||
], "2013-03-05"),
|
]),
|
||||||
new DllPatcher("bm2dx", [
|
new Patcher('bm2dx.dll', "2013-09-09", [
|
||||||
{
|
{
|
||||||
name: "Premium Free",
|
name: "Premium Free",
|
||||||
patches: [{offset: 0x4F2DC, off: [0x75], on: [0xEB]}]
|
patches: [{offset: 0x4F2DC, off: [0x75], on: [0xEB]}]
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
//changes the FPS = %2.4f string to FPS = %2.6f
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
||||||
patches: [{offset: 0x16BDD5, off: [0x34], on: [0x36]}]
|
patches: [{offset: 0x16BDD5, off: [0x34], on: [0x36]}]
|
||||||
},
|
},
|
||||||
], "2013-09-09"),
|
]),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user