mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 10:57:36 +01:00
50 lines
1.8 KiB
HTML
50 lines
1.8 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'>
|
|
<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>
|