-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Taiko no Tatsujin * Added Samyuu's 144fps patch to
- Loading branch information
Showing
3 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Taiko no Tatsujin (March 2020 Ver.)</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([ | ||
new Patcher("Taiko.exe", "12.00", [ | ||
{ | ||
name: "Unlock Songs", | ||
patches: [ | ||
{offset: 0x1F5F78, off: [0x32, 0xC0], on: [0xB0, 0x01]} | ||
] | ||
}, | ||
{ | ||
name: "Disable V-Sync", | ||
patches: [ | ||
{offset: 0x3D5589, off: [0x8B, 0x96, 0x80, 0x00, 0x00], on: [0xBA, 0x00, 0x00, 0x00, 0x00]}, | ||
], | ||
}, | ||
{ | ||
name: "Patch game to run at 144fps (Breaks some Animations)", | ||
patches: [ | ||
{offset: 0x9A5030, off: [0x74, 0x5A, 0x05, 0x41], on: [0xE4, 0x38, 0xDE, 0x40]}, | ||
{offset: 0x9EBEC4, off: [0x7F, 0xA4, 0x88, 0x3C], on: [0x39, 0x8E, 0x63, 0x3C]}, | ||
{offset: 0x9EC07E, off: [0x5E, 0x40], on: [0x62, 0x40]}, | ||
{offset: 0x9EC142, off: [0xF0, 0x42], on: [0x10, 0x43]}, | ||
], | ||
}, | ||
{ | ||
name: "Patch Borderless Fullscreen Window to 2560x1440", | ||
patches: [ | ||
{offset: 0x223F2B, off: [0x80, 0x07], on: [0x00, 0x0A]}, | ||
{offset: 0x223F32, off: [0x38, 0x04], on: [0xA0, 0x05]}, | ||
], | ||
}, | ||
{ | ||
name: "Freeze STAGE Count at 1", | ||
patches: [ | ||
{offset: 0x206E34, off: [0x41, 0xFF, 0x46, 0x04], on: [0x90, 0x90, 0x90, 0x90]}, | ||
], | ||
}, | ||
{ | ||
name: "Unlimited STAGEs (Requires STAGEs to be set to 3 or 4)", | ||
patches: [ | ||
{offset: 0x206DA5, off: [0x48, 0x8B, 0x8E, 0x80, 0x00, 0x00, 0x00, 0x48, 0x8D, 0x15, 0x35, 0x7D, 0x7C, 0x00], on: [0x41, 0xFF, 0x4E, 0x04, 0xE9, 0x8A, 0x00, 0x00, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90]}, | ||
], | ||
}, | ||
{ | ||
name: "English Character Names", | ||
patches: [ | ||
{offset: 0x9BF3B0, off: [0xE3, 0x81, 0xA9, 0xE3, 0x82, 0x93, 0xE3, 0x81, 0xA1, 0xE3, 0x82, 0x83, 0xE3, 0x82, 0x93], on: [0x44, 0x4F, 0x4E, 0x2D, 0x63, 0x68, 0x61, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]}, | ||
{offset: 0x9CD8B8, off: [0xE3, 0x81, 0x8B, 0xE3, 0x81, 0xA3, 0xE3, 0x81, 0xA1, 0xE3, 0x82, 0x83, 0xE3, 0x82, 0x93], on: [0x4B, 0x41, 0x54, 0x53, 0x55, 0x2D, 0x63, 0x68, 0x61, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x00]}, | ||
], | ||
}, | ||
]), | ||
]); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<h1>Taiko no Tatsujin (March 2020 Ver.) EXE Patcher.</h1> | ||
</body> | ||
</html> | ||
|