Scriptname RenPlaceEverywhereQuestScript extends Quest

ObjectReference TARDISWorkshop ; because why not

Container Property RenWorkshopWorkbenchNonSettlement Auto

Event OnInit()
	TARDISWorkshop = Game.GetPlayer().PlaceAtMe(RenWorkshopWorkbenchNonSettlement, 1)
	TARDISWorkshop.MoveTo(Game.GetPlayer(), 0, 0, -2000)
	debug.notification("Created and moved TARDISWorkshop")
	Self.StartTimer(5.0, 0)
endEvent

Event OnTimer(int timerid)
	TARDISWorkshop.MoveTo(Game.GetPlayer(), 0, 0, -2000)
	debug.notification("Moved TARDISWorkshop")	
	Self.StartTimer(5.0, 0)
endEvent