of     2   
chevron_rightchevron_rightchevron_right

Lord_Hagenost
#206293747Tuesday, January 03, 2017 4:22 PM GMT

Welcome to the TARDIS Gamma instructions thread! This thread will answer the following questions. If you just found this post and are wondering what TARDIS Gamma is, or you just wish to return to the model, click the following link. https://www.roblox.com/item.aspx?id=599009560 1. How does Gamma work/How do I setup Gamma? 2. How do I setup my TARDIS with Gamma? 3. How do I mod the system? 4. How do I fly the TARDIS? 5. What are the planned updates? Section 1 : How does Gamma work/How do I setup Gamma? For this you're going to know how Constraints work, here's a link to the Wiki Page. http://wiki.roblox.com/index.php?title=Constraints Gamma has a couple of different modes for setting up the server. A. TPP (TARDIS Per Player) B. Setup the Exterior's in Workspace This is all decided in the StarterScript file. Once the system has started up, it will begin to instantiate TARDISes, basically what this does is pair an exterior with an interior, and setup the interior/exterior. So controls, Lights, Functions, etc. The Test_Tardis model received with the System is an Exterior ready for Instantiation, it will become a TARDIS on startup The instantiation of a TARDIS is different depending on it's Type, in the Types module file, you will see two Tables, one labeled T1, and one labeled Base. By Default the system comes with one Type, T1. You can modify that to your needs and multiple types. You can also change what Type of TARDIS players get on spawn, and which type TARDISes in Workspace are. You can modify as many values as you want in your type, if there's a value you want to change that isn't already listed in the Type, simply put.... t.VariableNameHere = DesiredValue You can also add mods and additional functions to Gamma, this will be covered in Section 3 Still in the Types Module, at the top there is something that looks like this local Locations = { {Name = "BasePlate",Coord = Vector3.new(0,10,0),EFOL = false}; }; This is a Location entry, in order, these are what the values mean and what they do. Name, This is the Name of the location that appears on the monitor Coord, Short for coordinate, this is where your location is. Vector 3 Value. EFOL, Short for Enable Flight on Landing, Since the Gamma Exteriors are not anchored, they will fall into the void in space, to prevent this enabled EFOL, this will keep the exterior from falling. To add a new location simply duplicate the Location Entry like so. local Locations = { {Name = "BasePlate",Coord = Vector3.new(0,10,0),EFOL = false}; {Name = "Baseplate2",Coord = Vector3.new(200,200,0),EFOL = true}; }; Section 2 : How do I setup my TARDIS with Gamma? This part is tricky, until we make the plugin, please consult the creators or someone who converts TARDISes. Section 3 : How do I mod the system? If you're reading this you'll need to be an expert scripter. To mod the system you just need to duplicate the functions module, create desired changes, and reference the Module in a new type. Like so Types.T1 = function(Name,Owner) local t = Types.Base(Name,Owner); t.ExtName = "Thomas Yardley-Jones" t.FModule = Services.Functions t.StudsPerSecond = 100; t.######## #}### #.####### Locations return t end Types.T1Mod = function(Name,Owner) local t = Types.Base(Name,Owner); t.ExtName = "Thomas Yardley-Jones" t.FModule = Services.ModdedFunctions t.StudsPerSecond = 100; t.######## #}### #.####### Locations return t end Section 4 : How do I fly the TARDIS? 1. Flip on the Power. It's the big lever on the panel facing the door. 2. Make sure the doors are closed 3. Lock the doors, there are 4 levers right next to each other on one panel, it's the leftmost one 4. Select your Destination 5. Takeoff with the throttle NOTE : TARDIS GAMMA Doesn't work like an ordinary TARDIS System. It drops out of the vortex when it has reached its destination. 6. Press the throttle again to park the TARDIS (You'll hear a drum sound) WARNING : DO NOT TRY TO PARK IN THE VORTEX, IT WILL DAMAGE YOUR TARDIS Section 5 : Future Updates As updates are Planned they will be posted in Replies Current Plans TARDIS HP System Changeable Interior/Exterior Waypoints Enter-able coordinates ADY Coordinate setting
Lord_Hagenost
#206294268Tuesday, January 03, 2017 4:31 PM GMT

Quick Warning, Gamma DOES NOT work in studio!
squidfin
#206294372Tuesday, January 03, 2017 4:32 PM GMT

Quick Warning, this post is for C&G why can you use that? no more siggys for mr squid
DoctorBaconEater
#206294466Tuesday, January 03, 2017 4:34 PM GMT

I would't think Time Lords would give a TARDIS to just ANYONE. How rood
Tonightless
#206294609Tuesday, January 03, 2017 4:36 PM GMT

u need a delorean.
EobardThawne_CW
#206302686Tuesday, January 03, 2017 6:18 PM GMT

Thanks, very useful information!
Lord_Hagenost
#206302931Tuesday, January 03, 2017 6:21 PM GMT

Roblox Tagged this stuff Types.T1 = function(Name,Owner) local t = Types.Base(Name,Owner); t.ExtName = "Thomas Yardley-Jones" t.FModule = Services.Functions t.StudsPerSecond = 100; t . Sounds = { } ; -- Why did Roblox Tag this stuff Again? t . Spots = Locations -- Obv remove spaces return t end
Lord_Hagenost
#206352437Wednesday, January 04, 2017 5:17 AM GMT

More planned updates : Automatic Door/Rotor setup, not just levers. More control types ex. Sliders and Push levers Shields
JJ_B
#206599214Saturday, January 07, 2017 5:46 PM GMT

Why is this in C&G when it has zero to do with groups..?
DrCheezyBlox
#206599275Saturday, January 07, 2017 5:47 PM GMT

Lord_Hagenost
#206736422Monday, January 09, 2017 12:59 AM GMT

This was honestly not supposed to belong in C&G, Roblox Borked and put it here. I meant to put this in the scripting/development section.
Lord_Hagenost
#207158021Saturday, January 14, 2017 5:34 AM GMT

UPDATE ALPHA 1.1 Includes TARDIS HP Chat Messages TARDIS Self Destruct Sequence More Sounds Removed Exterior Settings Added TARDIS Spot Compatibility Added Local Saves (Waypoints) Added Voice Commands Added Another Default TARDIS Type and Exterior Added TPP Whitelist
TempusVulpi
#207294296Sunday, January 15, 2017 4:45 PM GMT

How do you use the voice commands..?
TheUltraTeacup
#208041224Monday, January 23, 2017 4:06 PM GMT

Can someone help m set it up? im having trouble :(
TrixieCat123
#209567088Sunday, February 12, 2017 6:28 AM GMT

How do you change exteriors? I converted an exterior just recently and I was going to test it out, but I don't know how to get it to change. I think I can just delete the entry and add a duplicate of my converted exterior and name it the entry's original name. I'll try that and if not I need to know how to switch exteriors/interiors. Thanks, TigerMan
TrixieCat123
#209569193Sunday, February 12, 2017 6:55 AM GMT

All I know now is that my exterior is fully functioning, I had to tweak the base and now I have to tweak the fresnel light and sign boxes to stay at 1 transparency. But, I still don't know how to switch exteriors and interiors...
Lord_Hagenost
#211196471Saturday, March 04, 2017 5:12 AM GMT

UPDATE ALPHA 1.2 +Door and Lock Sounds +TARDIS Keys +Better Screen +Manual Self Destruct +Control Sequences +New TARDIS Gamma Logo on the default console room floor ~Started Sonic Beta and Regenerate Alpha integration ~Repaired Self Destruct ~Behind the Scenes Improvements If you have any questions ask me!
LordDracony
#211501642Wednesday, March 08, 2017 4:36 AM GMT

When I try to use it, I get the error "Unable to find module for asset id" in regards to the "local GlobalVersion = require(611606508)". Which also appears to be outdated, because the game keeps telling me there's an update when I have the latest version out.
LordDracony
#211505521Wednesday, March 08, 2017 5:26 AM GMT

The console and exteriors never spawn. I'm unsure how to control where they would spawn anyway.
LordDracony
#212281711Saturday, March 18, 2017 10:17 PM GMT

I dragged it into the game, ungrouped it, accepted the EULA, and set TardisPerPlayer to true. Nothing is working. And the Test_Tardis exterior doesn't do anything, it floats in the air and clicking on the doors does nothing.
LordDracony
#212281752Saturday, March 18, 2017 10:17 PM GMT

And no I'm not running it in Studio.
LordDracony
#212282346Saturday, March 18, 2017 10:25 PM GMT

The error is on Line 44 of the StarterScript. "Values is not a valid member of Workspace".
greenpants02
#213580678Wednesday, April 05, 2017 5:59 PM GMT

How do I agree to the Tardis Gamma EULA
LordDracony
#213597945Wednesday, April 05, 2017 11:50 PM GMT

You open the EULA and change false to true at the bottom.
greenpants02
#213622034Thursday, April 06, 2017 9:37 AM GMT

Sorry to be a bit thick, but I was wondering if you could guide/tell me how to open the EULA Module, thanks

    of     2   
chevron_rightchevron_rightchevron_right