Teardown – How to Change Alarm Times, Detach Alarms, Multisave and Other

A quick guide to manipulate some of the game files to change or delete time limits, make alarm boxes detachable, view mission object outlines across the whole map, save multiple times and mod some other parts of the game.

Guide to Change and Delete Time Limits

All credit goes to Rubikow!

Remove or Alter the Heist Time Limit

To alter the 60 Seconds time limit do this:

  1. Open SteamsteamappscommonTeardowndatascriptheist.lua
  2. Go to line 20 or search for
    SetFloat(“level.alarmtimer”, 60) 
  3. Replace the 60 by any number of seconds you like to have for your heist before you loose.
  4. Save the heist.lua and start the game
  5. Have fun!

To freeze the time limit do this:

  1. Open SteamsteamappscommonTeardowndatascriptheist.lua
  2. Go to line 125 or search for this:
    if GetBool(“level.alarm”) then
  3. Replace it with:
    if false then
  4. Save the heist.lua and start the game.
  5. Alarms still start to sound but the timer is now frozen.
  6. Have fun!

Save Multiple Times

To save multiple times do this:

  1. Quicksave whenever you want.
  2. Tab out of the game and find:
    C:Users(Your Username)DocumentsTeardownquicksave.bin
  3. Copy the quicksave.bin, paste it and rename it to something meaningfull, like:
    marina_1.save
  4. Tab back into game and repeat at 1) for more saves.

To load one of your copied savegames do this:

  1. Start Teardown and start any level where you can quicksave.
  2. Quicksave the game.
  3. Tab out of the game.
  4. Replace/Overwrite C:Users(Your Username)DocumentsTeardownquicksave.bin with any of your previously saved games (like the marina_1.save ) by copying it and renaming it back to quicksave.bin
  5. Tab back into the game and quickload.
  6. Have fun!

Remove Fire Alrams

  1. Open the SteamsteamappscommonTeardowndatascriptheist.lua file
  2. Find
    if pFireAlarm and GetFireCount() >= 100 then
  3. Replace it with
    if false and GetFireCount() >= 100 then
  4. To get rid of fire alarms.
  5. Save the file.
  6. Start Teardown.
  7. Have fun!

Make Alarm Boxes Detachable/Carryable

  • Open the file SteamsteamappscommonTeardowndatascriptalarmbox.lua
  • Find these lines at the bottom of the file:

if type == FIXED_STATIC then
if IsShapeDynamic(box) then
triggerAlarm = true
end
elseif type == FIXED_DYNAMIC then
local currentMass = GetBodyMass(GetShapeBody(box))
if currentMass < 0.5 * initialMass then
triggerAlarm = true
end
elseif type == JOINTED_STATIC then
if IsJointBroken(joint) then
triggerAlarm = true
else
local s = GetOtherJointShape(joint, box)
if IsShapeDynamic(s) then
triggerAlarm = true
end
end
elseif type == JOINTED_DYNAMIC then
if IsJointBroken(joint) then
triggerAlarm = true
else
local s = GetOtherJointShape(joint, box)
local currentMass = GetBodyMass(GetShapeBody(s))
if currentMass < 0.5 * initialMass then
triggerAlarm = true
end
end
end

  • Either delete them or change each triggerAlarm = true to triggerAlarm = false
  • Start the game and have fun with detachable alarm boxes.

Show Mission Targets Across the Whole Map

  • Open SteamsteamappscommonTeardowndatascriptheist.lua
  • Find this lines:

if dist < 8 then
if IsBodyInteractable(targets[i]) then
DrawBodyOutline(targets[i], 1.0)
else
DrawBodyOutline(targets[i], 0.6*(1-dist/8))
end
end

  • Replace them with

if dist < 10000 then
if IsBodyInteractable(targets[i]) then
DrawBodyOutline(targets[i], 1.0)
else
DrawBodyOutline(targets[i], 1.0)
end
end

  • Save the file.
  • Start Teardown and have fun!
Volodymyr Azimoff
About Volodymyr Azimoff 13981 Articles
I love games and I live games. Video games are my passion, my hobby and my job. My experience with games started back in 1994 with the Metal Mutant game on ZX Spectrum computer. And since then, I’ve been playing on anything from consoles, to mobile devices. My first official job in the game industry started back in 2005, and I'm still doing what I love to do.

Be the first to comment

Leave a Reply

Your email address will not be published.


*