mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-02 06:20:42 -07:00
feat(op2): Add new UI text patches (#164)
* Support an array of datecodes for a single Patcher description
* Add new patches for op2
* Revert "Support an array of datecodes for a single Patcher description"
This reverts commit ea561304da.
* Change Patcher description
* Change slash to comma
This commit is contained in:
+20
-12
@@ -12,7 +12,7 @@
|
|||||||
window.addEventListener('load', function () {
|
window.addEventListener('load', function () {
|
||||||
new PatchContainer([
|
new PatchContainer([
|
||||||
// Patches found by Arm1stice
|
// Patches found by Arm1stice
|
||||||
new Patcher('nostalgia.dll', "2019-11-27", [
|
new Patcher('nostalgia.dll', "2019-10-02, 2019-11-27", [
|
||||||
{
|
{
|
||||||
name: 'Menu Timer Freeze',
|
name: 'Menu Timer Freeze',
|
||||||
patches: [{offset: 0x303D33, off: [0x41, 0xFF, 0xC8], on: [0x90, 0x90, 0x90]}]
|
patches: [{offset: 0x303D33, off: [0x41, 0xFF, 0xC8], on: [0x90, 0x90, 0x90]}]
|
||||||
@@ -22,18 +22,26 @@
|
|||||||
tooltip : "Similar to Rootage, recommended only if you have a stable framerate",
|
tooltip : "Similar to Rootage, recommended only if you have a stable framerate",
|
||||||
patches: [{offset: 0x21A6FA, off: [0x1E], on: [0x00]}]
|
patches: [{offset: 0x21A6FA, off: [0x1E], on: [0x00]}]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Hide "EXTRA PASELI: %d"',
|
||||||
|
patches: [
|
||||||
|
{offset: 0x307BD2, off: [0xCA, 0x2F, 0x2A], on: [0x04, 0x72, 0x26]},
|
||||||
|
{offset: 0x307BEE, off: [0x7E, 0x2F, 0x2A], on: [0xE8, 0x71, 0x26]}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Hide "PASELI: *****"',
|
||||||
|
patches: [{offset: 0x307A6E, off: [0xFF, 0x15, 0x14, 0x42, 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: 0x307E31, off: [0xBB, 0x2B, 0x2A], on: [0xA5, 0x6F, 0x26]},
|
||||||
|
{offset: 0x307E4D, off: [0x7F, 0x2B, 0x2A], on: [0x89, 0x6F, 0x26]}
|
||||||
|
]
|
||||||
|
},
|
||||||
]),
|
]),
|
||||||
new Patcher('nostalgia.dll', "2019-10-02", [
|
|
||||||
{
|
|
||||||
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>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user