two-torial-webpatcher/nostalgiaop2.html
Wyatt Calandro 8d653de1fa
feat(op2): Add new UI text patches (#164)
* Support an array of datecodes for a single Patcher description

* Add new patches for op2

* Revert "Support an array of datecodes for a single Patcher description"

This reverts commit ea561304da7913faa6f94115ec40eb51bc3d4f56.

* Change Patcher description

* Change slash to comma
2020-12-22 15:09:12 +10:00

53 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>Nostalgia Op.2 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 PatchContainer([
// Patches found by Arm1stice
new Patcher('nostalgia.dll', "2019-10-02, 2019-11-27", [
{
name: 'Menu Timer Freeze',
patches: [{offset: 0x303D33, off: [0x41, 0xFF, 0xC8], on: [0x90, 0x90, 0x90]}]
},
{
name: 'Shorter Monitor Check',
tooltip : "Similar to Rootage, recommended only if you have a stable framerate",
patches: [{offset: 0x21A6FA, off: [0x1E], on: [0x00]}]
},
{
name: 'Hide "EXTRA PASELI: %d"',
patches: [
{offset: 0x307BD2, off: [0xCA, 0x2F, 0x2A], on: [0x04, 0x72, 0x26]},
{offset: 0x307BEE, off: [0x7E, 0x2F, 0x2A], on: [0xE8, 0x71, 0x26]}
]
},
{
name: 'Hide "PASELI: *****"',
patches: [{offset: 0x307A6E, off: [0xFF, 0x15, 0x14, 0x42, 0x09, 0x00], on: [0xE9, 0xAD, 0x01, 0x00, 0x00, 0x90]}]
},
{
name: 'Hide Credit Count',
tooltip : 'Hides "CREDIT: %d" and "CREDIT %d COIN: %d / %d"',
patches: [
{offset: 0x307E31, off: [0xBB, 0x2B, 0x2A], on: [0xA5, 0x6F, 0x26]},
{offset: 0x307E4D, off: [0x7F, 0x2B, 0x2A], on: [0x89, 0x6F, 0x26]}
]
},
]),
]);
});
</script>
</head>
<body>
<h1>Nostalgia Op.2 DLL Modder</h1>
</body>
</html>