Skip to content

Commit

Permalink
Added Taiko no Tatsujin (#220)
Browse files Browse the repository at this point in the history
* Added Taiko no Tatsujin

* Added Samyuu's 144fps patch to
  • Loading branch information
cainan-c authored Aug 28, 2021
1 parent dd30dc2 commit 9928683
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 0 deletions.
Binary file added img/taikonotatsujin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,14 @@ <h1>Pick a game!</h1>
</div>
</a>
</div>
<div class="icons">
<a href="taikonotatsujin.html" class="gameicon">
<div>
<img src="img/taikonotatsujin.png">
<div>Taiko no Tatsujin</div>
</div>
</a>
</div>
<pre class="tagline">Patches are community created. <a href="https://github.com/mon/BemaniPatcher/">Submit your own via Pull Request!</a></pre>
<pre class="tagline"><em>Converted to a web-tool by <a href="https://github.com/mon/">mon</a></em></pre>
</body>
Expand Down
71 changes: 71 additions & 0 deletions taikonotatsujin.html
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>

0 comments on commit 9928683

Please sign in to comment.