mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 10:57:36 +01:00
89 lines
3.4 KiB
HTML
89 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>Nostalgia Op.3 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([
|
|
new Patcher('nostalgia.dll', "2020-11-16", [
|
|
{
|
|
name: 'Menu Timer Freeze',
|
|
patches: [{offset: 0x305AA3, off: [0x41, 0xFF, 0xC8], on: [0x90, 0x90, 0x90]}]
|
|
},
|
|
]),
|
|
new Patcher('nostalgia.dll', "2021-12-22", [
|
|
{
|
|
name: 'Menu Timer Freeze',
|
|
patches: [{offset: 0x307043, off: [0x41, 0xFF, 0xC8], on: [0x90, 0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Shorter Monitor Check',
|
|
tooltip : "Similar to Op.2, recommended only if you have a stable framerate",
|
|
patches: [{offset: 0x214F1A, off: [0x1E], on: [0x00]}]
|
|
},
|
|
{
|
|
name: 'Unscramble PIN pad',
|
|
patches: [{offset: 0x2BA0E6, off: [0x48, 0x8D, 0x0C, 0x80, 0x48, 0x03, 0xC9], on: [0x48, 0xC7, 0xC1, 0x78, 0x00, 0x00, 0x00]}]
|
|
},
|
|
{
|
|
name: 'Hide "EXTRA PASELI: %d"',
|
|
patches: [
|
|
{offset: 0x5C5120, off: [0x45, 0x58, 0x54], on: [0x00, 0x58, 0x54]},
|
|
{offset: 0x5C5150, off: [0x45, 0x58, 0x54], on: [0x00, 0x58, 0x54]}
|
|
]
|
|
},
|
|
{
|
|
name: 'Hide "PASELI: *****"',
|
|
patches: [{offset: 0x30AD6E, off: [0xFF, 0x15, 0x1C, 0x7F, 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: 0x5C50F8, off: [0x43, 0x52, 0x45], on: [0x00, 0x52, 0x45]},
|
|
{offset: 0x5C50D8, off: [0x43, 0x52, 0x45], on: [0x00, 0x52, 0x45]}
|
|
]
|
|
},
|
|
]),
|
|
new Patcher('nostalgia.dll', "2022-04-26", [
|
|
{
|
|
name: 'Menu Timer Freeze',
|
|
patches: [{offset: 0x309D83, off: [0x41, 0xFF, 0xC8], on: [0x90, 0x90, 0x90]}]
|
|
},
|
|
{
|
|
name: 'Shorter Monitor Check',
|
|
tooltip : "Similar to Op.2, recommended only if you have a stable framerate",
|
|
patches: [{offset: 0x21740A, off: [0x1E], on: [0x00]}]
|
|
},
|
|
{
|
|
name: 'Unscramble PIN pad',
|
|
patches: [{offset: 0x2BCE46, off: [0x48, 0x8D, 0x0C, 0x80, 0x48, 0x03, 0xC9], on: [0x48, 0xC7, 0xC1, 0x78, 0x00, 0x00, 0x00]}]
|
|
},
|
|
{
|
|
name: 'Hide "EXTRA PASELI: %d"',
|
|
patches: [
|
|
{offset: 0x5D0998, off: [0x45, 0x58, 0x54], on: [0x00, 0x58, 0x54]},
|
|
{offset: 0x5D0A28, off: [0x45, 0x58, 0x54], on: [0x00, 0x58, 0x54]}
|
|
]
|
|
},
|
|
{
|
|
name: 'Hide Credit Count',
|
|
tooltip : 'Hides "CREDIT: %d" and "CREDIT %d COIN: %d / %d"',
|
|
patches: [
|
|
{offset: 0x5D09D0, off: [0x43, 0x52, 0x45], on: [0x00, 0x52, 0x45]},
|
|
{offset: 0x5D0B70, off: [0x43, 0x52, 0x45], on: [0x00, 0x52, 0x45]}
|
|
]
|
|
},
|
|
]),
|
|
]);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Nostalgia Op.3 DLL Modder</h1>
|
|
</body>
|
|
</html>
|