-
Notifications
You must be signed in to change notification settings - Fork 136
/
nostalgiaop3.html
88 lines (88 loc) · 3.45 KB
/
nostalgiaop3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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>