2018-12-15 05:27:00 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>IIDX tricoro 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 () {
|
2019-11-17 11:58:28 +01:00
|
|
|
new PatchContainer([
|
|
|
|
new Patcher('bm2dx.dll', "2012-09-19", [
|
2019-01-30 06:18:06 +01:00
|
|
|
{
|
|
|
|
//by nibs
|
|
|
|
name: "Shorter monitor check",
|
|
|
|
tooltip: "Runs for 300 frames (5 seconds) instead of 1200 (20 seconds), recommended only if you have a very stable framerate",
|
|
|
|
patches: [{offset: 0x66C0D, off: [0xB0, 0x04], on: [0x2C, 0x01]}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
//by nibs
|
|
|
|
name: "6 digits in monitor check",
|
|
|
|
tooltip: "Purely visual, does not affect anything besides the FPS display",
|
|
|
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
|
|
|
patches: [{offset: 0x143C45, off: [0x34], on: [0x36]}]
|
|
|
|
},
|
2019-11-17 11:58:28 +01:00
|
|
|
]),
|
|
|
|
new Patcher('bm2dx.dll', "2012-10-09", [
|
2018-12-15 05:27:00 +01:00
|
|
|
{
|
|
|
|
name: "Premium Free",
|
|
|
|
patches: [{offset: 0x49CAC, off: [0x75], on: [0xEB]}]
|
|
|
|
},
|
2019-11-17 11:58:28 +01:00
|
|
|
]),
|
|
|
|
new Patcher('bm2dx.dll', "2012-12-07", [
|
2018-12-15 05:27:00 +01:00
|
|
|
{
|
|
|
|
name: "Premium Free",
|
|
|
|
patches: [{offset: 0x4C47C, off: [0x75], on: [0xEB]}]
|
|
|
|
},
|
2019-11-17 11:58:28 +01:00
|
|
|
]),
|
|
|
|
new Patcher('bm2dx.dll', "2013-03-05", [
|
2018-12-15 05:27:00 +01:00
|
|
|
{
|
|
|
|
name: "Premium Free",
|
|
|
|
patches: [{offset: 0x4E6CC, off: [0x75], on: [0xEB]}]
|
|
|
|
},
|
2019-11-17 11:58:28 +01:00
|
|
|
]),
|
|
|
|
new Patcher('bm2dx.dll', "2013-09-09", [
|
2018-12-15 05:27:00 +01:00
|
|
|
{
|
|
|
|
name: "Premium Free",
|
|
|
|
patches: [{offset: 0x4F2DC, off: [0x75], on: [0xEB]}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Unlock All Songs",
|
|
|
|
patches: [{offset: 0x4921D, off: [0x75, 0x09], on: [0x90, 0x90]}]
|
|
|
|
},
|
2019-01-30 06:18:06 +01:00
|
|
|
{
|
|
|
|
//by nibs
|
|
|
|
name: "Shorter monitor check",
|
|
|
|
tooltip: "Runs for 300 frames (5 seconds) instead of 1200 (20 seconds), recommended only if you have a very stable framerate",
|
|
|
|
patches: [{offset: 0x6D07A, off: [0xB0, 0x04], on: [0x2C, 0x01]}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
//by nibs
|
|
|
|
name: "6 digits in monitor check",
|
|
|
|
tooltip: "Purely visual, does not affect anything besides the FPS display",
|
|
|
|
//changes the FPS = %2.4f string to FPS = %2.6f
|
|
|
|
patches: [{offset: 0x16BDD5, off: [0x34], on: [0x36]}]
|
|
|
|
},
|
2022-05-25 12:07:26 +02:00
|
|
|
{
|
|
|
|
name: "Coin Unlock",
|
|
|
|
patches: [{offset: 0x5843, off: [0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90], on: [0x6A, 0x01, 0xE8, 0x76, 0xFA, 0x00, 0x00, 0x8B, 0xC8, 0xE8, 0xAF, 0xFA, 0x00, 0x00]}]
|
|
|
|
}
|
|
|
|
])
|
|
|
|
])
|
2018-12-15 05:27:00 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>IIDX tricoro DLL Modder</h1>
|
|
|
|
</body>
|
|
|
|
</html>
|