My Garage
0 of 0

File information

Last updated

Original upload

Created by

jeikobu__

Uploaded by

shindouj

Virus scan

Safe to use

Tags for this mod

About this mod

A better teleport mod.

Requirements
Permissions and credits
Requires ModUtils to function!

Do you hate the commute to the interior shop? I sure do. Teleport Mod is cool and all, but sadly, it wasn't updated in a while and not only it doesn't offer the ability to teleport there, it doesn't really work at all when using the map extension. That's why I made Quantum Teleport!

Quantum Teleport is a fully configurable teleport mod offering:
  • custom teleport locations,
  • paid teleports (taxi extension) with either fixed rate or distance-based pricing,
  • keyboard shortcuts for your favourite locations,
  • hiding unavailable locations requiring the map extensions automatically,
  • flexible menu with infinite locations possible.

Installation: Copy the .dll file to your Mods folder (<SteamRoot>/steamapps/common/My Garage/Mods).
After installing the mod, a config file (QuantumTele.json) will appear in the Mods folder. The default config will look similar to this:

{
"MenuEnableKey": "F6", // Defines the key opening the menu. See https://docs.unity3d.com/ScriptReference/KeyCode.html for details.
"ShouldTakeMoney": true, // Turns Paid Teleports on. If set to false, DistancePricing will be ignored.
"DistancePricing": true, // Turns Distance-based pricing. If set to false, all teleports will cost the value defined in GlobalPrice.
"GlobalPrice": 20, // Defines the fixed price of teleports.
"DistancePriceMultiplier": 0.007, // Defines the price per single distance unit. This value makes the teleport from the garage to the interior store cost around 65 dollars.
"MinimumDistanceBasedPrice": 5, // Defines the minimum teleport price. Set to 0 to disable.
"MaximumDistanceBasedPrice": 1000, // Defines the maximum teleport price.
"TeleportDestinations": [
{
"DestinationName": "Interior Store", // Defines the destination name.
"DestinationLocation": { 
// WARNING: ONLY USE THE COORDINATES PROVIDED BY QUANTUMTELE. Old teleport mod uses shifted coordinates that will NOT WORK.
"x": -3709.0,
"y": 53.6,
"z": 8648.3
},
"DestinationHotKeys": [
// Contains all keys needed to be simultaneously pressed to teleport.
"LeftControl",
"T",
"I"
],
"MapExtensionRequired": true // Set to true if location is unavailable without the map extension.
}
]
}
By default, most of the locations from the old Teleporter Mod together with the Interior Store are added. Feel free to customize the list to your needs! 

Please report any bugs in the bug tracker and let me know if you have any suggestions in the comments :)

Source @ GitHub.com