mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
Add Nostalgia Op.3 patches (#312)
Co-authored-by: Minsang <54884351+minsang-github@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
<!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', "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>
|
||||
Reference in New Issue
Block a user