|
23 | 23 |
|
24 | 24 | <main>
|
25 | 25 | <h1>How to Modify Game Audio</h1>
|
26 |
| - <p>Content for modifying game audio goes here...</p> |
| 26 | + <p>You can replace in-game Audio with your own Custom SFX/Ambiance using CATool.</p> |
| 27 | + |
| 28 | + <ol> |
| 29 | + <li>Download and Extract CATool or Update to v2.4 via the <code>--upd</code> flag after calling the script. Example: <code>python CATool.py --upd</code>.</li> |
| 30 | + <li>Extract the <code>CombinedAudio.bin</code> Archive File using the <code>--eca</code> Flag.</li> |
| 31 | + <li>Extract the Header using the <code>--gh</code> Flag.</li> |
| 32 | + <li>Ensure your Audio file is lower-quality. As analog Audio (*.dsp and *.fsb) can be large, a bit-rate of roughly 96kbps is recommended.</li> |
| 33 | + <li>Convert your Audio to Wave format if necessary.</li> |
| 34 | + <li>Convert your new Wave Audio File to <code>*.dsp</code> format.</li> |
| 35 | + <li>Convert your new <code>*.dsp</code> Audio to FMOD Sound Bank Format <code>*.fsb</code>.</li> |
| 36 | + <li>Add Padding as needed for Audio, using the <code>--ap</code> Flag for automation.</li> |
| 37 | + <li>Replace the segment file of your choice. The replacement file must have the same name and file-size as the original (e.g., replacing <code>segment_118.fsb</code> requires deleting the original and using the same name).</li> |
| 38 | + <li>Rebuild the <code>CombinedAudio.bin</code> Archive File using the <code>--rca</code> Flag. Ensure you have previously dumped the Header using <code>--gh</code>.</li> |
| 39 | + </ol> |
| 40 | + |
| 41 | + <p>Your <code>CustomAudio.bin</code> might not work perfectly. This tool is still a WIP, so check for updates regularly to enhance your Minecraft 3DS modding capabilities.</p> |
27 | 42 | </main>
|
28 |
| - <!-- Settings Menu Modal --> |
29 |
| - <div class="settings-modal" id="settingsModal"> |
30 |
| - <div class="settings-menu"> |
31 |
| - <h2>Settings</h2> |
32 |
| - <label> |
33 |
| - <input type="checkbox" id="themeToggle"> |
34 |
| - Toggle Dark/Light Mode |
35 |
| - </label> |
36 |
| -<!-- <label> |
37 |
| - <input type="checkbox" id="bgImageToggle"> |
38 |
| - Enable Background Image |
39 |
| - </label> --> |
40 |
| - <label> |
41 |
| - <input type="checkbox" id="blurToggle"> |
42 |
| - Enable Background Blur |
43 |
| - </label> |
44 |
| - <button id="closeSettings">Close</button> |
| 43 | + |
| 44 | + <!-- Settings Menu Modal --> |
| 45 | + <div class="settings-modal" id="settingsModal"> |
| 46 | + <div class="settings-menu"> |
| 47 | + <h2>Settings</h2> |
| 48 | + <label> |
| 49 | + <input type="checkbox" id="themeToggle"> |
| 50 | + Toggle Dark/Light Mode |
| 51 | + </label> |
| 52 | + <label> |
| 53 | + <input type="checkbox" id="blurToggle"> |
| 54 | + Enable Background Blur |
| 55 | + </label> |
| 56 | + <button id="closeSettings">Close</button> |
| 57 | + </div> |
45 | 58 | </div>
|
46 |
| -</div> |
47 |
| -<script src="../js/main.js"></script> |
| 59 | + |
| 60 | + <script src="../js/main.js"></script> |
48 | 61 | </body>
|
49 | 62 | </html>
|
0 commit comments