

TeleportMenu Mono
A Teleport Menu for game version MONODetails
Teleport Menu (MONO)
Open Teleport Menu with F2
Requirements
Installation
- Install MelonLoader.
- Drop
TeleportMenu_Mono.dll
into your game'sMods/
folder. - Launch the game.
Features
-
Safety Teleport A keybind (default F3) allows you to teleport to a "safe" location, which you can set in the Cutstom Teleports Submenu.
-
Custom Teleports A custom teleport system allows you to set your own locations. You can use preset names, such as Location_01, 02, etc., or you can set your own names.
-
Favorite Teleports A organized favorites system that allows you to add any teleport you want to the submenu, including preset teleports or your own custom teleports.
-
Active Deals When you accept a deal, it will be added to a dynamic submenu called Active Deals. Once you complete the deal, it will be removed. This applies only for the current session.
-
Charge For Teleports To enable go to the settings submenu and set your price, which can be a max of 500. If you wish to charge more, you can adjust the price in the config to your desired amount.
-
Import & Export Import and export custom teleports and favorites for sharing or backup. After exporting, find Schedule I/UserData/TeleportMenu/ExportedTeleports.json to import. Place the file in the same location.
-
AIO Saving Everything now saves in one file Schedule I/UserData/TeleportMenu/AllData.json, but by doing this, the menu no longer reads the old .json files from the old menu version. But see below Configuration to see how to add your favorites and custom teleports to the new .json
Configuration
In the config file AllData.json you can manually set the menu colors, change teleport costs and enable it you can also change keybinds if you do not have function keys. Keycodes
You can also add your favorites and custom teleports from the old .json files.
This is the old FavouriteTeleports.json.
[
{ <---- copy from here
"Name": "Laundromat",
"Position": {
"x": -22.5,
"y": 1.0,
"z": 25.0
},
"IsFavorite": true,
"Category": "Businesses"
} <---- to here
]
Then paste it into the new AllData.json so it looks like it is below.
"FavoriteLocations": [
{
"Name": "Laundromat",
"Position": {
"x": -22.5,
"y": 1.0,
"z": 25.0
},
"IsFavorite": true,
"Category": "Businesses"
}
],
Default Config
{
"SavedLocations": [],
"FavoriteLocations": [],
"SafetyTeleportPosition": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"Settings": {
"menuKey": 283,
"safetyTeleportKey": 284,
"titleFontSize": 18,
"titleTextColorR": 255,
"titleTextColorG": 255,
"titleTextColorB": 255,
"textColorR": 255,
"textColorG": 255,
"textColorB": 255,
"fontSize": 14,
"bold": false,
"buttonHoverR": 128,
"buttonHoverG": 161,
"buttonHoverB": 191,
"accentBarR": 110,
"accentBarG": 110,
"accentBarB": 110,
"accentBarA": 255,
"backgroundR": 77,
"backgroundG": 77,
"backgroundB": 77,
"backgroundA": 255,
"chargeForTeleport": false,
"teleportCost": 30
}
}