two-torial-webpatcher/nostalgiaop3.html
Tomo-Tg c031dfc4cf
Various updates (#311)
* Expansion of supported versions

* Expansion of supported versions

* Add The DANCERUSH

* Expansion of supported versions

* Add The kancolle

* Add The nostalgia op3

* Expansion of supported versions

* Add image

* Various updates

* Remove fake patches

* Remove fake patches

* Remove fake patches

* Remove fake patches

* Delete unneeded images

* Delete unneeded images

* Delete unneeded images

* Fix conflicts

* Delete index.html

* Add files via upload

* Update index.html

* Add support for InitialD

* Add support for InitialD

* Add files via upload

* fix

* Fix formatting

---------

Co-authored-by: Will Toohey <will@mon.im>
2023-02-20 12:22:44 +10:00

59 lines
2.2 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]}
]
},
]),
]);
});
</script>
</head>
<body>
<h1>Nostalgia Op.3 DLL Modder</h1>
</body>
</html>