Merge pull request #141 from Arm1stice/op2

feat(nostalgia): Add hex edits for Nostalgia Op.2
This commit is contained in:
Will 2020-10-21 12:18:19 +10:00 committed by GitHub
commit 382867ce88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

BIN
img/op2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -176,6 +176,12 @@
<div>MÚSECA 1+1/2</div>
</div>
</a>
<a href="nostalgiaop2.html" class="gameicon">
<div>
<img src="img/op2.png">
<div>Nostalgia Op.2</div>
</div>
</a>
<a href="popn22lapistoria.html" class="gameicon">
<div>
<img src="img/lapis.png">

33
nostalgiaop2.html Normal file
View File

@ -0,0 +1,33 @@
<!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>