Remove Rootage hex edits (#73)

* Delete rootage.png

* Update index.html

* Delete rootage.html
This commit is contained in:
UngluedBike 2019-06-02 23:43:47 +01:00 committed by Will
parent cd9c292d5d
commit 6e9838e238
3 changed files with 0 additions and 128 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

View File

@ -39,10 +39,6 @@
<a href="ballerz.html" class="gameicon"><div>
<img src="img/ballerz.png">
<div>beatmania IIDX 25 CANNON BALLERS</div>
</div></a>
<a href="rootage.html" class="gameicon"><div>
<img src="img/rootage.png">
<div>beatmania IIDX 26 Rootage</div>
</div></a>
<a href="ddr2014.html" class="gameicon"><div>
<img src="img/ddr2014.png">

View File

@ -1,124 +0,0 @@
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>IIDX Rootage 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([
new DllPatcher('bm2dx', [
{
// ported by UngluedBike
name: 'Unlock All Songs',
patches: [{offset: 0x16C372, off: [0x74, 0x10], on: [0x90, 0x90]}]
},
{
// new 2 byte version discovered by dogelition_man
name: 'Unlock All 12s',
patches: [{offset: 0x16C220, off: [0x83, 0xFF], on: [0xEB, 0x5F]}]
},
{
// ported by UngluedBike
name: 'Skip CAMERA DEVICE ERROR prompt',
patches: [{offset: 0x36BB0B, off: [0x84], on: [0x81]}]
},
{
// ported by dogelition_man
name: '1P Premium Free',
patches: [{offset: 0x32CFC7, off: [0x75], on: [0xEB]}]
},
{
// ported by a dogelition_man
name: '2P Premium Free',
patches: [
{offset: 0x32D165, off: [0x74, 0x55], on: [0x90, 0x90]},
{offset: 0x32D17B, off: [0x74, 0x3F], on: [0x90, 0x90]}
]
},
{
// discovered on accident by dogelition_man
name: 'Offline Arena Mode',
patches: [{offset: 0x32D191, off: [0xE8, 0x6A, 0x5B, 0xE3], on: [0xE9, 0x3F, 0xFF, 0xFF]}]
},
{
// ported by UngluedBike
name: 'Premium Free Timer Freeze',
patches: [{offset: 0x16E62D, off: [0xFF, 0xC8], on: [0x90, 0x90]}]
},
{
// ported by UngluedBike
name: 'Standard/Menu Timer Freeze',
patches: [{offset: 0x384097, off: [0x74], on: [0xEB]}]
},
{
// ported by UngluedBike
name: '90sec Music Select Timer',
tooltip : "Make sure your Select Time option is set to \"45 SEC\" in the Game Options for this to work!",
patches: [{offset: 0xFD205, off: [0x2D], on: [0x5A]}]
},
{
// ported by UngluedBike
name: 'Cursor lock',
tooltip : "After song finishes, song select remains on previous song",
patches: [{offset: 0x332314, off: [0x74, 0x1D], on: [0x90, 0x90]}]
},
{
// ported by UngluedBike
name: 'CS-Style Song Start Delay',
tooltip : "Holding Start will pause the song at the beginning until you release it",
patches: [{offset: 0x35021A, off: [0x7D, 0x25], on: [0x90, 0x90]}]
},
{
// ported by dogelition_man
name: 'Play video preview on all songs',
tooltip : "By default, only some songs in the beginner folder show a BGA preview on the music select screen. This edit extends this function to every song in any folder.",
patches: [
{offset: 0x11F21E, off: [0x74, 0x0E], on: [0x90, 0x90]},
{offset: 0x11BE6C, off: [0x0F, 0xB6], on: [0xEB, 0x2F]}
]
},
{
// ported by UngluedBike
name: 'Hide INSERT COIN[S] text',
patches: [{offset : 0x106859, off: [0x9B], on: [0x9A]}]
},
{
// ported by UngluedBike
name: 'Hide CREDIT: %d text',
patches: [{offset: 0x1063E7, off: [0x5D], on: [0x5C]}]
},
{
// ported by UngluedBike
name: 'Hide CREDIT: %d COIN %d / %d text',
patches: [{offset: 0x1063BD, off: [0x67], on: [0x66]}],
},
{
// ported by UngluedBike
name: 'Hide EXTRA PASELI: %d text',
patches: [{offset: 0x1066A8, off: [0xF4], on: [0xF3]}]
},
{
// ported by UngluedBike
name: 'Hide PASELI: NO ACCOUNT text',
patches: [{offset: 0x106762, off: [0x7A], on: [0x79]}]
},
{
// ported by UngluedBike
name: 'Hide PASELI: ****** text',
patches: [{offset: 0x1066CB, off: [0xF1], on: [0xF0]}]
},
], "2019-04-23"),
]);
});
</script>
</head>
<body>
<h1>IIDX Rootage DLL Modder</h1>
</body>
</html>