two-torial-webpatcher/nostalgiaop2.html

34 lines
1.1 KiB
HTML
Raw Normal View History

2020-10-21 00:08:04 +02:00
<!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-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]}]
},
]),
]);
});
</script>
</head>
<body>
<h1>Nostalgia Op.2 DLL Modder</h1>
</body>
</html>