mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-28 01:10:55 +01:00
f21cc18d52
* Add CB patches * Update CB patch for consistency with other styles
95 lines
3.6 KiB
HTML
95 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>IIDX Cannon Ballers 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 DllPatcherContainer([
|
|
// All ported by Xyen
|
|
new DllPatcher('bm2dx', [
|
|
{
|
|
name: 'Unlock All Songs',
|
|
patches: [{offset: 0xB60B2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Premium Free',
|
|
patches: [{offset: 0xDC819, off: [0x75, 0x14], on: [0xEB, 0x14]}]
|
|
},
|
|
{
|
|
name: 'Premium Free Timer Freeze',
|
|
patches: [{offset: 0xB89BD, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Cursor lock',
|
|
tooltip : "After song finishes, song select remains on previous song",
|
|
patches: [{offset: 0xDF93C, off: [0x74, 0x1D], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'CS-Style Song Start Delay',
|
|
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
|
patches: [{offset: 0xF5CAA, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
|
},
|
|
], "2018-09-19"),
|
|
new DllPatcher('bm2dx', [
|
|
{
|
|
name: 'Unlock All Songs',
|
|
patches: [{offset: 0xB61D2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Premium Free',
|
|
patches: [{offset: 0xDC949, off: [0x75, 0x14], on: [0xEB, 0x14]}]
|
|
},
|
|
{
|
|
name: 'Premium Free Timer Freeze',
|
|
patches: [{offset: 0xB8ADD, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Cursor lock',
|
|
tooltip : "After song finishes, song select remains on previous song",
|
|
patches: [{offset: 0xDFA2C, off: [0x74, 0x1D], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'CS-Style Song Start Delay',
|
|
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
|
patches: [{offset: 0xF5D9A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
|
},
|
|
], "2018-07-24"),
|
|
new DllPatcher('bm2dx', [
|
|
{
|
|
name: 'Unlock All Songs',
|
|
patches: [{offset: 0xB42D2, off: [0x74, 0x10], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Premium Free',
|
|
patches: [{offset: 0xDA3C9, off: [0x75, 0x14], on: [0xEB, 0x14]}]
|
|
},
|
|
{
|
|
name: 'Premium Free Timer Freeze',
|
|
patches: [{offset: 0xB682D, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Cursor lock',
|
|
tooltip : "After song finishes, song select remains on previous song",
|
|
patches: [{offset: 0xDD4AC, off: [0x74, 0x1D], on: [0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'CS-Style Song Start Delay',
|
|
tooltip : "Holding Start will pause the song at the beginning until you release it",
|
|
patches: [{offset: 0xF296A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
|
|
},
|
|
], "2018-06-13"),
|
|
]);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>IIDX Cannon Ballers DLL Modder</h1>
|
|
</body>
|
|
</html>
|