Handles - Programming TARDIS with Computers
Have you ever dreamed of controlling your TARDIS through programming code? Now it's become reality!
Important note: This mod is an addon and requires New Tardis Mod (version 1.16.5) or Tardis Refined (version 1.19.2), as well as installed CC:Tweaked (for Forge) or CC:Restitched (for Fabric 1.19.2).

Getting Started
To connect to TARDIS, use the following code:
tardis = peripheral.wrap("top")
This function returns a table with methods, allowing you to call peripheral device functions as regular Lua functions. If the peripheral device is not connected, returns nil.
Documentation for Tardis Refined (1.19.2)
Documentation for New Tardis Mod
Handles Guide for NewTardisMod
Getting TARDIS coordinates:
local x,y,z = [peripheral].getTardisPos()
Setting destination:
[peripheral].setTardisPos(x,y,z,dimensionID)
Door control:
[peripheral].setDoors(boolean)
Checking fuel level:
local fuel = [peripheral].getFuel()
More examples are available in the project wiki.
Important: Each use of functions damages the Aprioritron subsystem. It is recommended to familiarize yourself with the relevant documentation.
Now you can do anything you want! (if, of course, you can program it)