Updated readme
This commit is contained in:
parent
46907de4c9
commit
2b63078810
16
README.md
16
README.md
@ -1,6 +1,6 @@
|
|||||||
# TakoTako
|
# TakoTako
|
||||||
|
|
||||||
Hey this is a mod for Taiko no Tatsujin: The Drum Master
|
This is a mod for Taiko no Tatsujin: The Drum Master\
|
||||||
Currently has the features:
|
Currently has the features:
|
||||||
- Fixes sign in screen for version 1.1.0.0
|
- Fixes sign in screen for version 1.1.0.0
|
||||||
- Skips splash screen
|
- Skips splash screen
|
||||||
@ -11,7 +11,7 @@ Currently has the features:
|
|||||||
----
|
----
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
To install mods is a bit tricky this time around as we have to take a few more steps to be able to inject files into the game. !(Swigs did a quick video on it here)[https://youtu.be/WDsWDVbtbbI] but if you want to follow along in text read on ahead.
|
To install mods is a bit tricky this time around as we have to take a few more steps to be able to inject files into the game. ![Swigs did a quick video on it here](https://youtu.be/WDsWDVbtbbI) but if you want to follow along in text read on ahead.
|
||||||
|
|
||||||
1. Become an Xbox Insider, to do this open the `Xbox Insider Hub` which you can get from the Microsoft Store if you don't already have it installed. Go to Previews > Windows Gaming, and join it. There should be an update ready for you for the Xbox app, so go ahead and update and relaunch it
|
1. Become an Xbox Insider, to do this open the `Xbox Insider Hub` which you can get from the Microsoft Store if you don't already have it installed. Go to Previews > Windows Gaming, and join it. There should be an update ready for you for the Xbox app, so go ahead and update and relaunch it
|
||||||
2. In the Xbox App go to Settings > General and enable `Use advanced installation and management features`. Feel free to change your installation directory
|
2. In the Xbox App go to Settings > General and enable `Use advanced installation and management features`. Feel free to change your installation directory
|
||||||
@ -26,7 +26,7 @@ To install mods is a bit tricky this time around as we have to take a few more s
|
|||||||
8. Run Taiko no Tatusjin The Drum Master once, then close it. This will generate some files
|
8. Run Taiko no Tatusjin The Drum Master once, then close it. This will generate some files
|
||||||
9. Look in your game's folder again, new files will have been generated under `.\BepInEx\plugins`
|
9. Look in your game's folder again, new files will have been generated under `.\BepInEx\plugins`
|
||||||
10. ![Download my patch](https://github.com/Fluto/TaikoMods/releases)
|
10. ![Download my patch](https://github.com/Fluto/TaikoMods/releases)
|
||||||
11. Paste the .DLL from step 4 into this folder\
|
11. Extract the `com.fluto.takotako` folder from the download in step 10 and paste it into the `.\BepInEx\plugins` folder\
|
||||||
![](https://github.com/Fluto/TakoTako/blob/main/readme-image-2.png)
|
![](https://github.com/Fluto/TakoTako/blob/main/readme-image-2.png)
|
||||||
12. And you're done!
|
12. And you're done!
|
||||||
|
|
||||||
@ -113,6 +113,8 @@ data.json Format
|
|||||||
int scoreMania;
|
int scoreMania;
|
||||||
int scoreUra;
|
int scoreUra;
|
||||||
|
|
||||||
|
bool areFilesGZipped; (are the music and fumen files gzipped? this saves file space and is done automatically when converting TJAs)
|
||||||
|
|
||||||
// Song Info
|
// Song Info
|
||||||
int previewPos;
|
int previewPos;
|
||||||
int fumenOffsetPos;
|
int fumenOffsetPos;
|
||||||
@ -155,8 +157,12 @@ TextEntry {
|
|||||||
## Supported Versions
|
## Supported Versions
|
||||||
<details>
|
<details>
|
||||||
<summary>Supported Versions</summary>
|
<summary>Supported Versions</summary>
|
||||||
|
<p>
|
||||||
- 1.1.0.0
|
- 1.1.0.0
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
- 1.2.2.0
|
- 1.2.2.0
|
||||||
|
</p>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
---
|
---
|
||||||
@ -165,6 +171,6 @@ TextEntry {
|
|||||||
|
|
||||||
---
|
---
|
||||||
## Credits
|
## Credits
|
||||||
- !(SuperSonicAudio)[https://github.com/blueskythlikesclouds/SonicAudioTools]
|
- ![SuperSonicAudio](https://github.com/blueskythlikesclouds/SonicAudioTools)
|
||||||
- !(VGAudio)[https://github.com/Thealexbarney/VGAudio]
|
- ![VGAudio](https://github.com/Thealexbarney/VGAudio)
|
||||||
- Pulsar#5356 for the TJA2BIN.exe
|
- Pulsar#5356 for the TJA2BIN.exe
|
@ -61,7 +61,7 @@ namespace TakoTako
|
|||||||
|
|
||||||
ConfigSaveDirectory = Config.Bind("CustomSongs",
|
ConfigSaveDirectory = Config.Bind("CustomSongs",
|
||||||
"SaveDirectory",
|
"SaveDirectory",
|
||||||
$"{userFolder}/Documents/TaikoTheDrumMasterMods/saves",
|
$"{userFolder}/Documents/{typeof(Plugin).Namespace}/saves",
|
||||||
"The directory where saves are stored");
|
"The directory where saves are stored");
|
||||||
|
|
||||||
ConfigDisableCustomDLCSongs = Config.Bind("CustomSongs",
|
ConfigDisableCustomDLCSongs = Config.Bind("CustomSongs",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<TargetFramework>net48</TargetFramework>
|
<TargetFramework>net48</TargetFramework>
|
||||||
<AssemblyName>com.fluto.takotako</AssemblyName>
|
<AssemblyName>com.fluto.takotako</AssemblyName>
|
||||||
<Description>Fixes Taiko issues and allows custom songs</Description>
|
<Description>Fixes Taiko issues and allows custom songs</Description>
|
||||||
<Version>0.0.1</Version>
|
<Version>2.0.0</Version>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<RootNamespace>TakoTako</RootNamespace>
|
<RootNamespace>TakoTako</RootNamespace>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 5.8 KiB |
Loading…
Reference in New Issue
Block a user