A collection of mods for Skater XL that use the Unity Mod Manager (reworked from the XLShredMenu mod)
- Menu Mod v0.0.5 (including XLShredLib which mods hook into)
- Dynamic Camera v0.0.5
- Auto Slowmo v0.0.3
- Fixed Slowmo v0.0.3
- Faster Spin v0.0.3 (in air and/or on grinds)
- Custom Pop Force v0.0.3
- Custom Grind/Manual Pop Force v0.0.3
- Custom Push Speed v0.0.3
- Flip Mods v0.0.4 (realistic flip rotation and/or flipped switch flip direction)
- Object Spawner v0.0.4
- Realistic Vert v0.0.3 (if at the top of a fully vert ramp, you'll pop up, not away from the ramp)
- Disable Autocatch v0.0.1
- Respawn Near Bail v0.0.3
- Disable Push Reduction v0.0.1 (on first two pushes)
- Replay Editor (Unity Mod Manager Edition) v0.1.0 (Source)
- Skin Editor (Source)
- XLMultiplayer v0.2.3 (Source)
- XLNoclip v0.1.1 (Source)
- Adjust Audio Pitch v0.0.1 (Source) (pitches audio according to timescale changes like slowmo)
- Session Marker Manager v0.0.2 (Source) (saves manages and restores session markers)
- Grind to Grind v0.0.3 (Source)
- Custom Brake Force v0.0.2 (Source) (Adjusts the speed at which the player stops when holding B)
Click here for all the changes for all the mods
IMPORTANT NOTE: If you have previously installed a modified Assembly-CSharp.dll, restore it to its orignal state before installing Unity Mod Manager.
- Download the latest Unity Mod Manager(or from Nexus), the Menu Mod, and which ever of the other mods you want.
- Unzip Unity Mod Manager wherever is convenient for you (it doesn't matter).
- Open Unity Mod Manager, select Skater XL in the dropdown. At this point it may have detected your installation, if not the SkaterXL button will be red, you can click that and pick the folder manually.
- Click the Install button. If it works it should show an installed version number. If it doesn't work check the log.
- Go to the Mods tab, drag all the mod zips you want to install onto the box that says "Drop zip files here". If everything works the status should say ok for each of them.
- Launch the game, have fun! Press F8 to bring up the menu, and the rest is explained there.
- Download the Menu Mod, and which ever of the other mods you want.
- Open Unity Mod Manager, go to the Mods tab, drag all the mod zips you want to install onto the box that says "Drop zip files here". If everything works the status should say ok for each of them.
- Launch the game, have fun! Press F8 to bring up the menu, and the rest is explained there.
Right now, until I release a fix (one is coming), you have to manually remove some mods to uninstall them. The latest versions of XL Shred Mod Menu, XL Shred Realistic Vert, and XL Shred Respawn Near Bail can be uninstalled from Unity Mod Manager without issue. For now the process for the rest is as follows:
- Go to your game directory (you can get this in steam, right click on the game -> properties -> local files -> browse local files)
- Go to the Mods folder there.
- Delete folders of the mods you want to remove from the game.
- Visual Studio Community 2017(free), or any other 2017 version (others may work, but that's all I've tested)
- The .NET desktop development workload for Visual Studio (installed via the Visual Studio Installer app)
- (Optional) git to clone the repo. You can also just download the source as a zip.
Follow the installation steps for installing the Mod Loader.
Clone the repo:
git clone https://github.com/blendermf/XLShredLoader.git
Open the solution (.sln) file.
Under 'Solution Items' in the Solution Explorer, modify config.json to have the correct path for your Skater XL installation (notice the double slashes, those are needed). For example:
{
"game_directory": "C:\\Program Files (x86)\\Steam\\steamapps\\common\\Skater XL"
}
You will now see a bunch of errors (probably). They should go away once you build the solution (the build events use the directory we put in config.json to copy the references into the references folder)
Once they are built you should see folders under game_directory/Mods
for each mod. You can now run the game and you should see the mods.
Check out the source for the different mods, to see how you can make your own mod that hooks into mod menu.
You can use this solution and duplicate a project as a starting point, and then just build your mod (by building the project not the solution), just make sure you build the XLShredMenuMod first so you have the proper requirements installed in the Mods folder.