Training Mode - More is an expanded and updated version of UnclePunch's training modpack for Super Smash Bros. Melee.
To download the ISO, click 'Releases' on the right side, then download "TM-More.zip".
Please note that the project is currently unstable and you will likely run into crashes (especially on console). We're hard at work at fixing this!
To discuss changes and new features or ask for assistance, join the discord.
- New Training Lab Features:
- Updated to UCF 0.84 (Allows practicing with dashback out of crouch).
- Savestates now require holding DPad right, preventing accidental savestates.
- Reworked recording UI. Allows resaveing existing recordings with different percents or positioning.
- Tech animations can be set invisible after they are distinguishable.
- Random custom DI option.
- CPU Shield angling options.
- Auto-restore state when the CPU performs a counter action.
- All special moves can be used as counter actions.
- Press DPad left/right when browsing savestates to quickly change pages.
- Hazard toggle in training lab.
- New SDI and ASDI options.
- SDI and mashing are set to none by default.
- New neutral jump option for CPUs, set as the default.
- Bugfixes:
- Jump actions no longer make the CPU self-destruct.
- Ledge and Act out of Jump OSDs are now back.
- Fixed cpu acting too late out of sakurai angle and other non-knockdown hits (such as fox drill).
- Lightshield now works in recordings.
- Can now use lightshield L with DPad to adjust percents.
- CPUs now DI DK cargo throw.
- Samus homing missiles will target the CPU.
- Nana will not drop shield when Popo's shield is hit.
- Added the polling drift fix.
- Deleting replays too fast will no longer crash.
- Every character can be used in Amsah Tech training.
- Work in progress:
- Fixing Export/Import replay crashes.
- Reaction Tech Chase Event
- Fixing Sheik/Zelda savestate glitches
- Developer Features:
- Simple and easily reproducible builds on Windows and Linux.
- Fast recompilation on Linux using make.
- Simplified and performant tool to extract and rebuild ISOs.
We have completely overhauled the build process. Now any developer can easily compile an iso from source and add new features to the modpack. Have some specific tech you want to train? Find a bug that's been annoying you? Come make a PR!
- Install DevKitPro. Install the Gamecube (aka PPC or PowerPC) package.
- Drag your legally obtained SSBM v1.02 ISO on to the 'build_windows.bat' file. If all goes well, 'TM-More.iso' will be created.
- Install DevKitPro. Install the Gamecube (gamecube-dev) package.
- Ensure that
/opt/devkitpro/devkitPPC/bin/
is added to the PATH.
- Ensure that
- Install Mono. Prefer installation through your package manager.
- I would like nothing more than to remove mono, msbuild, .NET, C#, and Microsoft from my life. Alas it is just as deeply ingrained the SSBM ecosystem as I am.
- Install xdelta3. This should be simple to install through your package manager.
- Run
make iso=path-to-melee.iso iso
. If all goes well, 'TM-More.iso' will be created.
- If you want to alter an event written in C (Easy):
- The training lab, lcancel, ledgedash, and wavedash events are written in c. This makes them much easier to modify than the other events. Poke around in their source in
src/
. - The other events are written in assembly.
- The training lab, lcancel, ledgedash, and wavedash events are written in c. This makes them much easier to modify than the other events. Poke around in their source in
- If you want to alter an event written in asm (Big Knowledge Check):
- You will need to know a bit of Power PC asm.
- Read
ASM/Readme.md
- Go to
ASM/training-mode/Custom Events/Custom Event Code - Rewrite.asm
and search for the event you want to modify. - These will trickier to modify than the other events. Prefer making a new event or modifying the lab.
- There are a lot of random loads from random offsets there. If it's not listed in the ASM readme then I don't know what it is.
- If you want to make a new event (A little tricky):
- Add a file and header to the
src/
. - Create a dat file in
dats/
.- This is a little annoying.
- If you don't want any fancy features, just a pause menu, copy
lcancel.dat
as your dat file.- You will need to use HSDRaw to modify the internal name.
- If you want other assets, you can use HSDRaw to add new objects to the dat file, or copy them from the other events.
- Add the required compilation steps in
Makefile
andbuild_windows.bat
. Follow the same structure as the other events. Be sure to use the evFunction mode. - Implement the
Event_Init
,Event_Update
,Event_Think
methods andEvent_Menu
pointer in your c file. Poke around the other events to figure out how the data flows.
- Add a file and header to the
- Other changes may be easy or difficult. Join the discord if you want a nudge in the right direction.
- Set
TM_DEBUG
to 2 in events.h to get OSReport statements on the screen. - Use the dolphin debugger! Make sure you have the latest version of dolphin for debugging.
- Be sure to load GTME01.map with Symbols->Load Other Map File.
Feel free to DM me on discord (alex_aitch) or twitter (@rwing_aitch) for help!