mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-15 11:23:27 +01:00
34 lines
1.1 KiB
HTML
34 lines
1.1 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-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>
|