Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Warning

The mods aren't perfect, they may break.

Sledding Game Mods/Apis

A list of every Sledding Game mod/api BobisBilly has made.

Current Mods

  1. 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
  1. CrossChat
  • Lets anyone that has the mod installed talk to anyone else with the mod installed
  • Requires: CustomCommandApi
  1. 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
  1. 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

Current Apis

  1. 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);
  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);

Extra Info

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

About

A list of every Sledding Game mod BobisBilly has made.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages