Warning
The mods aren't perfect, they may break.
A list of every Sledding Game mod/api BobisBilly has made.
- NoLimits
- Removes the safe zone around the lodge letting you sled inside
- Removes the "Cube" that stops you from entering the fireplace inside the lodge
- Removes the yeti, snowstorm stuff, and demo fence allowing you to explore the whole map
- Activates all disabled lifts
- CrossChat
- Lets anyone that has the mod installed talk to anyone else with the mod installed
- Requires: CustomCommandApi
- PointGifter
- Lets you run "/gift" to gift anyone with the mod in your current lobby any amount of points (below the 32-Bit Int limit)
- Example: /gift 25 BobisBilly
- Requires: CrossChat, CustomCommandApi
- BetterRacing
- Enables all "Fog Races"
- Adds a keybind that restarts your current race (Current keybind is Z)
- On finishing a race it teleports you to the starting flag and sets the "CELEBRATION_TIMER" to 1.5 seconds instead of the default 5 seconds
- Requires: CustomKeybindApi
- CustomCommandApi
- Lets you create a custom command
- Example:
CommandHandler.NewCommand("up", (args) =>
{
if (float.Parse(args[0]) > 100)
{
return "You can't go over 100.";
}
PlayerReference localPlayer = PlayerReferenceManager.Instance.GetLocalPlayerReference();
localPlayer.PlayerControl.Cmd_Sled(localPlayer.PlayerControl.gameObject.transform.position, new Vector3(0, 1, 0), float.Parse(args[0]));
return "Fling :3";
}, 1);- CustomKeybindApi
- Lets you create custom keybinds and saves them in
C:\Users\<Username>\AppData\LocalLow\The Sledding Corporation\Sledding Game Demo\DEMO_CustomKeybinds.json - Example:
KeybindHandler.SaveKeybind("BetterRacing", "RestartKeybind", KeyCode.Z);You can find more examples in Examples/<ApiName> - Soon to come
Note
CrossChat is not expected to work all the time. Will be fixed in the next update