Jump to content
TeardownMods

102 files

  1. Game reset

    Just resets your whole game

    21 downloads

       (2 reviews)

    0 comments

    Submitted

  2. TV

    This is the TV for your map
    Installation:Upload files from the archive to the folder with your map and rename the file " basic.xml" in the "name_of_you_map.xml"
    Discord:Blueray_19#9684

    30 downloads

       (4 reviews)

    0 comments

    Submitted

  3. Impossible Challenge

    Just Impossible....
    DM Me On Discord If There Is Any Bugs Cooperkit Gaming#1223
     

    36 downloads

       (4 reviews)

    0 comments

    Updated

  4. Speedometer

    Adds a speedometer at the top of the screen

    47 downloads

       (2 reviews)

    0 comments

    Submitted

  5. Quick Level Changer With Mod Installer

    Installation
    Extract to your Teardown directory What is this?
    This mod allow you to move between level without having to go main menu
    Mod Installer?
    Yes, now you can install this mod with other mod installed!
     
    Question and Answer
    Can you create mod installer for me please? Message me MrAdhit#1296 for discussion  
    It show warning when i launch the mod installer Don't worry, it just because i'am not sign it, the mod installer is 100% safe  
    How do i download without the installer? Just download the zip compressed file  
    Did i still need to download the zip when i use the installer? No you didn't need it

    275 downloads

       (3 reviews)

    1 comment

    Updated

  6. Quick Save Manager

    This is a python script that I wrote that allows you to save and load quicksaves.
    The process is pretty self explanatory and the program guides you through pretty well, but just make sure that when loading a save you first quicksave BEFORE you load the save and then you can load it in the program and then in the game. As of right now there is no ui, although I will most likely add it soon.
    Although the program gives you simple explanations, if you find yourself confused I recommend you read the READ.txt in the zip.
    How to install:
    1. Extract the file anywhere you want.
    2. Move the quicksaves folder to Documents\Teardown (The folder where your save files are). You can delete the txt in the quicksaves folder if you want; it is completely useless other then allowing me to put the folder into a zip file.
    3. Run the script when you're ready and:
    Enjoy!
    Also make sure to check out another save manager made by MrAdhit that improves on the idea a lot!
     
     
    If you would prefer not to download the zip, the code is below:
    from shutil import copyfile from os import remove from getpass import getuser def startSave(): choose = input('save (s) or load/delete (l)? ') if choose == 's': print() save() else: if choose == 'l': print() loadChoose() def save(): try: saveListTxt = loadlist() except: print('savelist.txt not found, creating new file') saveListTxt = loadlist('x') saveListTxt.close() saveListTxt = loadlist() saveName = input('What do you want to call your save? ') saveNameNl = saveName + '\n' saves = saveListTxt.readlines() count = 0 for i in saves: count += 1 if saveNameNl == i: print() print('you already have a save with this name :(') print() saveListTxt.close() break else: if count == len(saves): saveListTxt.close() saveListTxt = loadlist('a') copyfile(r'C:\Users\\' + username + r'\OneDrive\Documents\Teardown\quicksave.bin', r'C:\Users\\' + username + r'\OneDrive\Documents\Teardown\quicksaves\\' + saveName + '.bin') saveListTxt.write(saveNameNl) saveListTxt.close() print() print('Save created') print() break if len(saves) == 0: saveListTxt.close() saveListTxt = loadlist('a') copyfile(r'C:\Users\\' + username + r'\OneDrive\Documents\Teardown\quicksave.bin', r'C:\Users\\' + username + r'\OneDrive\Documents\Teardown\quicksaves\\' + saveName + '.bin') saveListTxt.write(saveNameNl) saveListTxt.close() print() print('Save created') print() def loadlist(method = 'r'): resultlist = open(r'C:\Users\\' + username + r'\OneDrive\Documents\Teardown\quicksaves\savelist.txt', method) return resultlist def loadChoose(): saveTxt = loadlist('r') saveList = saveTxt.readlines() saveTxt.close saveTxt = loadlist('r') saveListOg = saveTxt.readlines() saveTxt.close if len(saveListOg) > 0: for i in range(len(saveList)): print(i + 1) print(saveList[i]) print() saveNum = int(input('type the number of the save you want to load/delete ')) print() if not saveNum > len(saveList) and not saveNum < 1: delOrLoad = input('delete (d) or load (l)? ') if delOrLoad == 'd': for i in range(len(saveList)): saveList[i] = saveList[i].rstrip('\n') remove(r'C:\Users\\' + username + r'\OneDrive\Documents\Teardown\quicksaves\\' + saveList[saveNum - 1] + '.bin') print() print('deleted!') print() newTxt = loadlist('w') saveListOg.pop(saveNum - 1) newTxt.writelines(saveListOg) else: if delOrLoad == 'l': for i in range(len(saveList)): saveList[i] = saveList[i].rstrip('\n') copyfile(r'C:\Users\\' + username + r'\OneDrive\Documents\Teardown\quicksaves\\' + saveList[saveNum - 1] + '.bin', r'C:\Users\ypier\OneDrive\Documents\Teardown\quicksave.bin') print() print('loaded!') print() else: print() print('You don\'t have any saves! Input \'s\' to save!') print() username = getuser() debug = 'false' while 'true': #debug = 'true' if debug == 'false': try: print() startSave() except: print() print() print('oops, something went wrong') print() print() else: startSave()  

    75 downloads

       (3 reviews)

    0 comments

    Updated

  7. Quick Save Saver

    Installation
    There's no installation, just double click it What is this?
    This application will save your current quicksave, so you can have multiple quicksave
    Original Mod Idea
     
    Question and answer
    Help i can't quick load, the button disabled! You need to quick save first then load from the application  
    Can i have the source code please? Of course you can, it open source! GitHub

    67 downloads

       (2 reviews)

    0 comments

    Updated

  8. working sniper scope zoom

    so i made a working sniper zoom but it kinda sucks lol
    you will need to put the file to the teardown file and it should work
    oh yea it uses the gun and you can download a sniper model from someone else lol

    137 downloads

       (1 review)

    0 comments

    Updated

  9. Bomb Hammer + Expandable Debug Viewer

    Bomb Hammer is a mod I built for fun and coding practice, and was written with new programmers in mind. Other mods might have fancy custom debug menus, but I'm hoping that my commented code will be easy to follow and teach something to beginners.
    Also included is an expandable, beginner friendly structured debug viewer for general or customized use. I've commented the code, and did my best to make this mod friendly and straight forward for new or inexperienced programmers.
    The Expandable Debug Viewer will automatically expand its formatting for new entries. Simply define your new line and add it to the table of lines.
    This code was made to be expanded and tinkered with, so if you want more bombs, or larger explosions, please read bomb_hammer.lua and mess around! 🙂
    How to Use:
    1. Place 'explosive wisps' by clicking on a voxel with the Hammer drawn.
      1b. Note, the 'wisps' will only be placed with the hammer drawn, and while the player is not too close to the target area. This was a safety feature I left in when the mod originally just     exploded, even at the player's feet.
    2. The number of wisps that can be placed, and their strength, is editable in the bomb_hammer.lua file
    3. To explode any placed wisps, click while the Extinguisher is drawn. Exploding wisps will delete them, freeing up room for more wisps!
     
    ------------------ readme.txt ------------------
    This mod uses: 
        (a) Antipolo's Teardown ModLoader utility
        (b) Data Dumper table from lua-users wiki. 
    If this mod stops working, try seeing if either your ModLoader's included ui/hud.lua file isn't out of date, or for some reason your inclusion of Data Dumper is misbehaving.
    Installation:
    1. Back up any files that might be replaced at the installer's discretion.
    2. Extract the folders 'mods' and 'ui' to your C:/...<Steam Installation>.../Teardown/data folder
    3. In Teardown/data/ui is modloader.lua, use this to toggle mods on or off through comments.
    Sources:
    (a) 
       https://github.com/antopilo/TeardownModLoader
    (b) 
       http://lua-users.org/wiki/DataDumper

    289 downloads

       (2 reviews)

    0 comments

    Updated

  10. Boot to Mission

    This is a rewrite of splash.lua to automatically load into a given mission when the game is booted.
    To load to a given mission, find it's name in missions.lua and overwrite the current mission name, or follow the example in the file for custom levels.
    Installation
    1. Back up your splash.lua file, located at C:\...\Steam\steamapps\common\Teardown\data\ui
    2. Replace your splash.lua with the included file.
    3. Make adjustments to the level being loaded if desired.
    Features
    - Cut down on waiting for menus to load for a fresh boot!
    - Shorten iteration time while testing mods!
    - Load to your favorite level right when you start the game!

    10 downloads

       (2 reviews)

    0 comments

    Submitted

  11. elboydos vehicle and mounted gun Script - script only

    A mod that enables player controlled turrets through both physics based control and in vehicle control - includes extensions to change fire rate, type, and ammo capacities. 


    Excerpt from Readme: 





    ELBOYDOS MOUNTED GUN AND PLAYER CONTROLLED TURRET SCRIPT
    Author : elboydo
    published 11-11-2020
    i dunno, i may extend this readme later. 
    ____________________________________________________________

    To install::
    Place files within create folder here to your create folder in teardown/create

    To enable weapon usage, copy the hud.lua file to teardown/data/ui

    IF YOU DON'T WANT TO MESS WITH YOUR HUD.LUA DUE TO OTHER MODS: 
        copy this line into the "draw()" method in hud.lua
        if UiIsMousePressed() then
            SetBool("mouse.pressed",true)
        else
            SetBool("mouse.pressed",false)
        end
        SetInt("mouse.wheel", UiGetMouseWheel()) 
    if you have these methods already in your hud.lua then happy days, the mods should work fine.

    FAILURE TO COPY THE HUD.LUA FILE WILL MEAN WEAPONS WON'T WORK AND ASKING WHY WEAPONS WON'T WORK DUE TO NOT DOING THIS 
             MAY RESULT IN PANDAS HAVING THEIR FAVOURITE TOYS TAKEN AWAY FROM THEM
     

    Setting configs:
    A default config for a mounted gun has been included in this script. description to modify for your vehicular setups as follows: 
    Always include "#include mountedGun.lua" to enable mounted gun functionality. 

    config values: 

    --[[
     Vehicle config
    ]]
    vehicle = {
        mainName                 = <VEHICLE NAME> ,
        Vehiclename             = <VEHICLE BODY NAME>,
          CannonName                 = <VEHICLE TURRET / GUN NAME> ,
          CannonJointName         = <VEHICLE TURRET JOINT NAME>,
          Create                     = "elboydo",
          barrelOffset             = <Y OFFSET FROM TURRET TO SPAWN MUNITIONS>
          manualControl            = <ONLY ENABLE PHYSICS BASED CONTROL - FALSE BY DEFAULT, SET TO TRUE TO BLOCK IN VEHICLE TURRET CONTROL>
    }
    --[[
     Mounted gun config
    ]]
    weaponFeatures = {
        armed                     = <TRUE/FALSE     - VEHICLE CAN USE WEAPONS>
        timeToFire                 = <INT             - PERIOD OVER WHICH TO FIRE A BURST>,
        magazineCapacity         = <INT             - TOTAL NUMBER OF SHOTS PER BURST>,
        reloadTime                 = <INT             - TIME AFTER BURST TO RELOAD WEAPON>,
        hasRockets                 = <BOOL         - CAN THE GUN  FIRE ROCKETS>,
        hasRocketCapacity        = <BOOL         - DOES THE GUN HAVE A FINITE ROCKET SUPPLY,
        rocketCapacity             = <INT             - TOTAL NUMBER OF ROCKETS THE VEHICLE CAN HAVE>,
        rocketStartingAmmo         = <INT             - NUMBER OF ROCKETS THE GUN  SPAWNS WITH>,
        startRockets            = <BOOL         - DOES THE GUN SPAWN WITH ROCKETS LOADED>,  
        hasMG                     = <BOOL         - CAN THE GUN USE AN MG>,
        hasMGCapacity            = <BOOL         - DOES THE MG HAVE A FINITE MG ROUND SUPPLY>,
        MGCapacity                 = <INT             - TOTAL NUMBER OF MG ROUNDS THE GUN CAN HAVE>,
        MGStartingAmmo             = <INT             - NUMBER OF MG ROUNDS THE GUN SPAWNS WITH>,
        displayWeaponDetails    = <BOOL         - DISPLAY EXTRA WEAPON DETAILS ABOUT AMMO LEFT SHOWS ON THE GUN ITSELF>,
        rocketExtraconsumption     = <INT             - DOES FIRING ROCKETS USE EXTRA MUNITIONS (ONLY IMPACTS BURST LENGTH NOT ROCKET AMMMO)>,
        rocketReloadPenalty     = <INT             - EXTRA TIME ADDED TO RELOAD TIME PER ROCKET FIRED>,
        ammoBoxMGName             = <STRING         - NAME OF PROP ACTING AS MG AMMO BOX FOR CHOOSING MUNITION>,
        ammoBoxRocketName         = <STRING         - NAME OF PROP ACTING AS ROCKET AMMO BOX FOR CHOOSING MUNITIONS>
    }

    733 downloads

       (4 reviews)

    0 comments

    Updated

  12. Better fonts

    Mod information
    The mod has 2 different font files which are better than basic fonts.
    Installation guide
    Drop data folder in teardown folder and replace files. Restart the game if it's running. My other mods
    Small costruction site Broken tools

    32 downloads

       (3 reviews)

    1 comment

    Submitted

  13. Hyperaggressive Security Helicopter

    A script mod that makes the helicopter's pilot much more trigger happy, ready to fire his missiles, and even more of a prick than he was before. Looks like his contacts came in too, because now he can spot you much faster than before (unless you're hiding in water).
    Works for both An Assortment of Dishes and The Chase!

    794 downloads

       (3 reviews)

    5 comments

    Updated

  14. Custom Levels Extended - More custom maps

    This addition to the game allows for up to 45 custom maps
    This is a quick rescript which allows for way more custom levels in the menu.
    This mod does not provide custom levels but only the option to add more.

    1,160 downloads

       (5 reviews)

    2 comments

    Submitted

  15. 100% game save.

    This Is A 100% game save. 
    ==================
    INSTALLATION:
    Documents\Teardown
    ===============
    Enjoy 🙂

    2,079 downloads

       (1 review)

    1 comment

    Updated

  16. TearDOOM

    This mod adds an attack helicopter on *every map* (including the hub and custom Create maps, literally any map that loads main.lua will spawn this thing!) that is reskinned to have a doom Cacodemon sprite.
    (you can also change/remove the music and sprite to your liking.)

    The mod includes a backup for the main.lua script for when you want to disable the mod.
    There is also a version with no music included as well.

    Have fun!

    USE WINRAR OR 7ZIP TO OPEN.

    189 downloads

       (1 review)

    0 comments

    Submitted

  17. Better Tesla Cube Explosion

    This is just an edit to the tesla cube script that makes the tesla cube explosion at lee's chemicals much more powerful. The old one just seemed too small and lame.

    444 downloads

       (7 reviews)

    0 comments

    Updated

  18. Show Player Coordinates

    Installation
    Just drag and drop to your Teardown directory Saving Coordinates
    Pause your game Click Save Coords Button Check your last line of savegame.xml file (Normally in your documents/Teardown folder)

    79 downloads

       (5 reviews)

    7 comments

    Updated

  19. Skip Splash Screen

    Instruction
    Just extract the file to your Teardown folder

    191 downloads

       (3 reviews)

    2 comments

    Submitted

  20. Teardown Lua Tester

    This mod is a development tool that allows you to execute Lua code inside "Teardown/data/run.lua" while in-game without needing to restart. The most useful feature of this mod is the ability for it to display print() messages and errors, which makes debugging certain code easier, and the ability to easily hook and un-hook functions to the hud.lua's draw() function (which lets you do stuff like draw UI on the screen without modifying any 'core' files).
    If you'd like more detailed information on how to use this, visit it's GitHub repository here:
    https://github.com/AStainlessSteelSink/TeardownLuaTester

    140 downloads

       (7 reviews)

    1 comment

    Updated

  21. Minecraft HUD

    A minecraft toolbar and healthbar

    1,340 downloads

       (3 reviews)

    5 comments

    Submitted

  22. Extra Custom Slots

    Extra Custom Map Slots!

    This mod simply adds more custom map slots for you to put your maps into and freely swap between
    them without having to move files around all the time!

    Guide:

    To add a map to one of the other custom slots simply drag and drop the map .vox and place it into one of the other folders
    For example you download a map called "minecraft.vox" so you place it into the custom2 folder then rename "minecraft.vox" to "custom2.vox"

    After that simply load up the game, click create then click on "Custom 2"

    Installation:

    Extract the zip folder and drag and drop the data and create folders into your Teardown game folder
    ("C:\Program Files (x86)\Steam\steamapps\common\Teardown")

    1,671 downloads

       (8 reviews)

    8 comments

    Updated

  23. Retrowave main menu

    Replaces the main menu, main menu music, mission complete and mission fail music. (music credit can be found in the folder)
    To install, extract the zip and drag the data folder into the root of your teardown replacing any files it asks.
    Only known incompatibilities: mods that change loading.lua and menu.lua, best to make a backup.

    511 downloads

       (3 reviews)

    0 comments

    Submitted

  24. Extended Alarms

    How To Use
    Replace heist.lua with the corresponding heist.lua file that you prefer in the scripts directory of Teardown.
    This mod is currently just a small script edit on line 20 of heist.lua and can be done by anybody themselves without downloading the file if they wish by modifying the level.alarmtimer. I may add a way to modify the timer in-game later when I study the games code a bit more.

    220 downloads

       (3 reviews)

    0 comments

    Submitted

  25. Unlock Weapons and Free Weapon Upgrades

    How To Use
    Navigate to Teardown Scripts folder and place the wanted game.lua file in the directory and reboot the game.
    This is a pretty basic script which really just involved editing a few lines in the stored tables and setting a few bools to true which determine if the weapon is unlocked or not.

    1,062 downloads

       (2 reviews)

    1 comment

    Submitted


×
×
  • Create New...

How to Disable AdBlock - And why you should do it?

I have disabled AdBlocker. Refresh the page.