Teleportication
search
  • Teleportication
  • Teleportication

Teleportication

$0.00

Nextgen Teleport plugin for Rust

Nextgen Teleport plugin for Rust with a lot of the familiar commands from older teleport plugins are still there, with some exceptions.  You may also import your user homes from those plugins (see below).

NOW WORKS WITH ALTERNATIVE PLUGIN PLATFORMS

Uses Friends, Clans, Rust teams, RustIO, GridAPI, NoEscape, Vanish.


Commands

  • /sethome NAME is an alias for /home set NAME.
  • /home or /home list will show your currently set home names, locations, and last used time.
    • /home list OTHERPLAYER will show a list of that player's currently set homes (Based on Friends, Clans, or Teams membership).
    • /home set NAME - Sets a home at player's current location
    • /home remove NAME - Removes the home named NAME
    • /home NAME - Teleports you to your home with that NAME.
  • /town - Takes you to town
    • /town set - Sets town at the current location
  • /bandit - Takes you to Bandit Town
    • /bandit set - Sets bandit at the current location
  • /outpost - Takes you to the Outpost
    • /outpost set - Sets outpost at the current location
  • /tp x, y, z or /tp x, z -- Teleport to coordinates
  • /tpr PLAYER - Request teleport to PLAYER
  • /tpa - Accept teleport request
  • /tpc - Cancel a teleport
  • /tpb - Takes you back to your previous location
  • /tpadmin - Parent admin command to be run with one of the following subcommands:
    • /tpadmin wipe - Wipe ALL homes and town, etc.  Will reset outpost and bandit locations as well (normally should run at wipe).  Does not prompt before action.
    • /tpadmin backup - Backup the database
    • /tpadmin debug - Toggle debug (alters config Option debug only during runtime)
    • /tpadmin info - Show current global config flags
    • /tpadmin import - Import data from R/NTeleportation (homes only)

If you specify r, it will select the RTeleporationHome.json file (and NTeleportationHome.json for n).  This file must be present in your oxide/data folder from previous use of the other plugins.

If you add 1 or y, etc. to the end of the command, it will actually do the import.  Otherwise, it will show the data in chat so you can evaluate correctness, data presence, etc.)

Examples:

  • /tpadmin import r - Show data available for import from RTeleportationHome.json (No actual import)
  • /tpadmin import n y - Import data from NTeleportationHome.json.  Users will immediately be able to use their homes from the old plugin.

Permissions

  • teleportication.use     - /home
  • teleportication.tp       - /tp
  • teleportication.tpb     - /tpb
  • teleportication.tpr      - /tpr
  • teleportication.town    - /town
  • teleportication.bandit  - /bandit
  • teleportication.outpost - /outpost

Configuration

{
  "Options": {
    "debug": false,
    "logtofile": false,
    "useClans": false,
    "useFriends": false,
    "useTeams": false,
    "useEconomics": false,
    "useServerRewards": false,
    "useNoEscape": false,
    "useVanish": false,
    "HomeRequireFoundation": true,
    "StrictFoundationCheck": true,
    "HomeRemoveInvalid": true,
    "HonorBuildingPrivilege": true,
    "HonorRelationships": false,
    "AutoGenBandit": true,
    "AutoGenOutpost": true,
    "AutoGenTunnels": false,
    "HomeMinimumDistance": 10.0,
    "DefaultMonumentSize": 120.0,
    "CaveDistanceSmall": 40.0,
    "CaveDistanceMedium": 60.0,
    "CaveDistanceLarge": 100.0,
    "MinimumTemp": 0.0,
    "MaximumTemp": 40.0,
    "SetCommand": "set",
    "ListCommand": "list",
    "RemoveCommand": "remove",
    "AddTownMapMarker": false,
    "TownZoneId": null,
    "TownZoneEnterMessage": "Welcome to Town",
    "TownZoneLeaveMessage": "Thanks for stopping by!",
    "TownZoneFlags": [
      "nodecay",
      "nohelitargeting"
    ]
  },
  "Types": {
    "Home": {
      "BlockOnHurt": false,
      "BlockOnCold": false,
      "BlockOnHot": false,
      "BlockOnCave": false,
      "BlockOnRig": false,
      "BlockOnMonuments": false,
      "BlockOnHostile": false,
      "BlockOnSafe": true,
      "BlockOnBalloon": false,
      "BlockOnCargo": false,
      "BlockOnExcavator": false,
      "BlockOnLift": false,
      "BlockOnMounted": true,
      "BlockOnSwimming": false,
      "BlockOnWater": false,
      "BlockForNoEscape": false,
      "BlockIfInvisible": false,
      "BlockInTunnel": false,
      "AutoAccept": false,
      "DailyLimit": 0.0,
"HomesLimit": 10.0,
"CountDown": 5.0, "CoolDown": 120.0, "AllowBypass": false, "BypassAmount": 0.0, "VIPSettings": null } }

Global Options

  • `useClans` -- Use various Clans plugins for determining relationships
  • `useFriends` -- Use various Friends plugins for determining relationships
  • `useTeams` -- Use Rust native teams for determining relationships
  • `HomeRequireFoundation` -- Require a foundation to set or use a home
  • `StrictFoundationCheck` -- Require centering on a foundation block to set a home
  • `HomeRemoveInvalid` -- If the home is no longer valid due to building privilege, destruction, etc., remove it.
  • `HonorBuildingPrivilege` -- If set, require building privilege to use a home.
  • `HonorRelationships` -- If set, honor any of the useXXX features to determine ability to teleport to a home.
  • `AutoGenBandit` -- Generate bandit location once per wipe.
  • `AutoGenOutpost` -- Generate outpost location once per wipe.
  • `DefaultMonumentSize` -- Most monuments do not contain a size parameter, so this would be the default in that case.
  • `CaveDistanceSmall` -- Small cave distance/size (no stored parameter)
  • `CaveDistanceMedium` -- Medium cave distance/size (no stored parameter)
  • `CaveDistanceLarge` -- Large cave distance/size (no stored parameter)
  • `MinimumTemp` -- Minimum player temperature to allow teleport, if BlockOnCold is set.
  • `MaximumTemp` -- Maximum player temperature to allow teleport, if BlockOnHot is set.
  • `SetCommand` -- For different languages to select something other than 'set' to set home, town, etc.
  • `RemoveCommand` -- For different languages to select something other than 'set' to remove homes
  • `AddTownMapMarker` -- If true, adds a green dot at the location of town on player maps
  • `TownZoneId` -- If set to anything other than null, an attempt will be made to assign a zone to town using ZoneManager.  This can be a zone you have already set to your liking.  This is to avoid having to reset the zone location every time you move or set town.
  • `TownZoneEnterMessage` -- When entering the town zone, players will see this message.  Default is "Welcome to Town".  Leave empty if you already have a zone setup the way you like it.
  • `TownZoneLeaveMessage"` -- When leaving the town zone, players will see this message.  Default is  "Thanks for stopping by!".
  • `TownZoneFlags` -- The default values here prevent town decay and targeting by the heli within the town zone.  You can remove this if desired by setting this variable to [].  Or, edit the zone flags as you like.  See the documentation for ZoneManager.

For each of home, town, bandit, outpost, tpr, flags may be set as follows:

  • `BlockOnHurt`: false -- Block if player is injured (bleeding, etc.).
  • `BlockOnCold`: false -- Block if player is too cold.
  • `BlockOnHot`: false -- Block if player is too hot.
  • `BlockOnCave`: false -- Block if player is in or near a cave.
  • `BlockOnRig`: false -- Block if player is on one of the oil rigs.
  • `BlockOnMonuments`: false -- Block if player is to close to any monument.
  • `BlockOnHostile`: false -- Block if player is hostile (for bandit/outpost only).
  • `BlockOnSafe`: false -- Block if player is in a safe area.
  • `BlockOnBalloon`: false -- Block if player is on a hot air balloon.
  • `BlockOnCargo`: false -- Block if player is on the cargo ship.
  • `BlockOnExcavator`: false -- Block if player is on the excavator monument.
  • `BlockOnLift`: false -- Block if player is on a lift.
  • `BlockOnMounted`: false -- Block if player is mounted to a chair, etc.
  • `BlockOnSwimming`: false -- Block if player is swimming.
  • `BlockOnWater`: false -- Block if player is above water.
  • `AutoAccept`: false -- Only valid for TPR to automatically TPA (For Friends, Clans, and teams).
  • `DailyLimit`: 0.0 -- If set to other than 0, the limit for this action per day.
  • `HomesLimit`: 10.0 -- Set per user home limits.  Only used by /sethome and only valid for the "Home" config although it will appear in other configs.
  • `CountDown`: 5.0 -- Waiting period for action on home, tpr, etc.
  • `CoolDown`: 120.0  -- Waiting period until next teleport of this type

For each of home, town, bandit, outpost, tpr, VIP settings may be added as follows:

The default is "VIPSettings": null, ...  Change them as needed, creating your own permission name, e.g. teleportication.vip1, and settings (example):

      "VIPSettings": {
        "teleportication.vip1": {
          "VIPDailyLimit": 20.0,
          "VIPCountDown": 5.0,
          "VIPCoolDown": 10.0,
          "VIPAllowBypass": true,
          "VIPBypassAmount": 1.0
        },
        "teleportication.vip2": {
          "VIPDailyLimit": 30.0,
          "VIPCountDown": 3.0,
          "VIPCoolDown": 5.0,
          "VIPAllowBypass": true,
          "VIPBypassAmount": 1.0
        }

The permission name must be "teleportication.YOURCHOICE".

 

Details

Despite some similarities, the configuration and data files from other teleport plugins are NOT compatible.

Teleportication uses SQLite for home, town, bandit, and outpost storage.  The file is saved in {oxidedata}/Teleportication/teleportication.db.

In-memory objects keep track of previous location for tpb, pending tpr/tpa, etc.  This could change as development progresses.

 

Status

Economics is a pending feature (for bypassing CoolDown, etc.)

If you see the following warning from Carbon:

Warning! 'Teleportication' uses UnityEngine.GameObject.FindObjectsOfType. That may cause significant performance drops, and/or server stalls. Report to the developer or use at your own discretion!

Note that this function is not called regularly during program execution.  This is typically called only at wipe to find new entities.
If you see warnings or errors about System.Data.SQLite, it is time to update to at least 1.5.2.
TELEPORT
Comments (0)
No customer reviews for the moment.