mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-24 07:30:10 +01: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 ea561304da7913faa6f94115ec40eb51bc3d4f56. * Change Patcher description * Change slash to comma
This commit is contained in:
parent
6cd8f03eb4
commit
8d653de1fa
@ -12,7 +12,7 @@
|
||||
window.addEventListener('load', function () {
|
||||
new PatchContainer([
|
||||
// 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',
|
||||
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",
|
||||
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>
|
||||
|
Loading…
Reference in New Issue
Block a user