Downloads and Installation (2024)

If run into any issues while installing, then check the troubleshooting section down below.

IMPORTANT: To use Melonloader you now need to download and install .NET 6.0. If you don’t have it, you will get an error when launching the game.

Download the mod helper and MelonLoader

Open the Melonloader zip you just downloaded, then select all of the files in the zip and copy them

Downloads and Installation (1)

Navigate to the BTD6 directory, which by default is located at: C:\Program Files (x86)\Steam\steamapps\common\BloonsTD6

Paste the files from the zip into the BTD6 directory

Downloads and Installation (2)

Download .NET 6.0 and install it

Downloads and Installation (3)

Now launch the game to generate the “Mods” folder. If you get the MSVCP140.dll was not found error, or the game doesn’t launch at all then install visual c++ and then restart your pc.

Put Btd6ModHelper.dll in the “Mods” folder

If all goes well, the Mods directory should look like this:

Downloads and Installation (4)

IMPORTANT: Btd6ModHelper.dll needs to be in the Mods directory at all times. If you don’t have the mod helper, the game will not save progress and most mods will not work.

If you are using the Epic Games version of the game, then you will also need to follow this tutorial to make melonloader work.

There is a common problem where some anti-viruses delete certain melonloader files. This is usually not an issue with Windows Defender. If you are using another anti-virus, then add an exception to the melonloader folder.

To create your own mods, watch this video and check out the tips down below.

How to uninstall Melonloader

delete the melonloader, mods, plugins, userdata, userlibs folders as well as dobby.dll, notice.txt and version.dll

Common Mods

Fire Rate Changer (custom speed hypersonic, press F9 to use)

Speedhack (use keys 6,7,8,9 to change the speed)

Race Button and Round changer (press F8 to use)

The mod helper adds a new button to the bottom right of the main menu which allows you to access the mod browser, where you can find a bunch of mods as well as mod repositories.

You can also get mods from this discord server:

BTD6 Mods and Discussions

Avoid using Nexus mods as the vast majority of them are outdated/stolen.

To download mods from github, try to find a dll file and download it. If there is no dll file, then check if there are any releases.

To disable some mods, you can manually move the files to another directory.

Hacker pool

By default the game doesn’t let you access public coop, races, collection events, the trophy store and odyssey if you are using mods (to prevent cheating). Using mods that give your account an advantage such as infinite money/xp/trophies/knowledge mods will get your account flagged. To protect your main account it is recommended to play on an alternate account. If you don’t want to do this, turning off your internet connection is also an effective way to avoid getting flagged while using mods in singleplayer/challenge editor (although not guaranteed to always work). If you are flagged, you will have 2 leaves above your settings icon and you will no longer be able to play public coop games, play contested territory or submit race times. Using mods in private coop is risky, it is best to use an account that you don’t care about and also make sure that every player is using the same mods with the same configurations. If you do get flagged, you will still be able to play private coop.

The console or a popup window says “il2cpp_init detour failed”

You need to install the .Net 6 Runtime https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-6.0.12-windows-x64-installer

A popup window says “failed to initialize: failed to find bootstrap”

You didn’t uninstall melonloader correctly. you need to delete the melonloader, mods, plugins, userdata, userlibs folders as well as dobby.dll, notice.txt and version.dll

A popup window says “failed to initialize: failed to load library”

The path to the BTD6 exe file should not have any special characters. This includes dashes - and modified letters like À

The console says “Could not load file or assembly …”

Delete the MelonLoader folder, then reinstall Melonloader with your antivirus turned off. If you get the exact same error again, try replacing the melonloader folder with these files

The console says “1 Plugin loaded” and then gets stuck

Use this melonloader version

The game is not saving

Make sure you have the mod helper, you can download the latest release here: https://github.com/gurrenm3/BTD-Mod-Helper/releases/latest/download/Btd6ModHelper.dll

If you are trying to uninstall, read the section above

The game crashes while loading mods, or the mods are not working

-Make sure you have the mod helper, you can download the latest release here: https://github.com/gurrenm3/BTD-Mod-Helper/releases/latest/download/Btd6ModHelper.dll

-Make sure you are not using any mods that were last updated before december 26th 2022

-Make sure your mods are in the dll format directly inside of the “Mods” folder. They should not be in a zip or in a subfolder.

-Game updates sometimes break mods and not all mod developers update their mods.

-Avoid using nexus mods as the vast majority of them are outdated/low quality/stolen.

-If none of the above tips solve the problem, navigate to the Melonloader folder and check the “latest.log” file. If you see that a specific mod appears to be causing errors, remove it or check for a new version. If the log file doesn’t contain any errors then check if the console does. You can also try removing each mod one by one until you find the one that is causing issues. If you can’t figure it out yourself, join the discord server linked above and post the log file or a screenshot of the console in the help channel.

The game does not open at all, or gives an MSVCP140.dll was not found error

Install this: https://aka.ms/vs/16/release/vc_redist.x64.exe

Prerequisites

  • Visual Studio (not Visual Studio code)
  • Some basic knowledge of c#, though if you already know Java, it is close enough

getting started

Read this. The mod helper wiki also has a bunch of useful info about the game’s structure.

Tips

A lot of mods are open source, their code can give you an idea on how to do things.

Most mods use something known as harmony patches. The can be used to run code both before and after the game’s functions are called, and can also be used to modify/read parameters and return values.

UnityExplorer mod makes it possible to view the unity scene.

If you want to import your own 3D models into the game, you will need to create an asset bundle using the unity version the game uses, check your melonloader log or console to see this, then use

AssetBundle.LoadFromMemory(File.ReadAllBytes(@"bundle"))

Editing the gamemodel

The gamemodel defines everything from towers to bloons to difficulties.

For a better overview of how it works here is the whole thing converted to JSON

Here is the JSON for each individual tower

You can also get newer json files by going into the in-game mod helper settings, there should be an option to dump the gamemodel there.

If you want to create a custom tower you can use this as a template. Creating custom towers mostly involves copying existing behaviors and pasting them together. Use the JSON above to see how towers are defined. Use this video as a guide.

If you want to modify existing towers you can use this as a template.

[How to install mods on Linux]

Install MelonLoader with this guide. Make sure you put Mod Helper in the Mods folder.

Hosted by: hemidemisemipresent

Maintained by: hemidemisemipresent, Timotheeee and Silentstorm

If you want to change something here, contact hemidemisemipresent#0301 / Timotheeee1#1337 / Silentstorm#5336 on discord or create a fork and make a pull request on the github repo

Downloads and Installation (2024)

FAQs

Why can't I get into my Downloads? ›

Restart the File Explorer task. The problem is most likely not with the Downloads folder, but with the File Explorer itself. If the folder no longer responds, the File Explorer may also freeze. As a result, you'd have to restart Windows Explorer using Task Management.

How do I fix my computer download problem? ›

How to Fix Can't Download Anything on Windows
  1. Restart your computer. Usually, it resets your PC's RAM, removing any bugs causing the issue.
  2. Check your internet connection. Reset if required.
  3. Ensure that Windows supports the file you are trying to download.
Oct 9, 2023

Which comes first, downloading or installing? ›

General installation steps

To use a piece of software, you must first download it. Downloading means retrieving files and data that make up the software from the internet (stored on a server somewhere) and storing them on your local computer. Most downloads will take place over the internet.

How do I get my Downloads to open? ›

Click the Start menu and then click your user name. You should see a Downloads folder in the window that opens. Open Windows Explorer ⊞ Win + E . Your Downloads folder may be listed in the left frame under "Favorites" or "Computer/This PC".

Why can't I open my downloaded files on my phone? ›

If you can't open a file, it could be because:

You don't have permission. You're signed in to a Google Account that doesn't have access. The correct app isn't installed on your Android device.

Why is my computer not allowing downloads? ›

This error means that your computer's security settings blocked the file. Learn more about blocked downloads. On Windows: Windows Attachment Manager could have removed the file you tried to download. To check which files you can download or why your file was blocked, check your Windows internet security settings.

How do I troubleshoot download problems? ›

Basic troubleshooting steps
  1. Check your Wi-Fi or mobile data connection.
  2. Check your storage space.
  3. Check for Android system updates.
  4. Close & reopen Google Play Store.
  5. Restart your device.

How do I fix my download app? ›

Troubleshoot problems downloading apps
  1. Find the Google Play Store app on your device's home or app screen.
  2. Touch and hold the Google Play Store app.
  3. Tap App Info .
  4. Tap Storage & cache. Clear Cache.
  5. Tap Clear storage. Delete.

What you must consider when you are downloading or installing? ›

Avoid downloading software from pop-up ads, unfamiliar websites, or unverified sources, as these can often lead to malware infections. Check for Authenticity: Before downloading software, verify the authenticity of the source. Look for digital signatures, official logos, and contact information on the website.

Should you delete downloads? ›

Additionally, removing files that could contain sensitive information can protect you from attackers - hackers can't steal what isn't there! Downloaded files, unneeded applications, and old documents are all examples of items that should be removed periodically.

Do I need to keep downloaded installation files? ›

Sometimes, the software program may require the original installation files to verify or modify the installation, especially if it has a license key or a registration code. If you delete them, you may have to download them again from the internet or use a backup copy, which can be time-consuming and inconvenient.

How do you see what is installing on your computer? ›

Another way to monitor the installation progress of a desktop application is to use Task Manager. Task Manager is a built-in tool in Windows that shows you the processes and resources that are running on your computer.

What are the steps to downloading and installing software? ›

Installing software from the Web
  1. Locate and download an .exe file.
  2. Locate and double-click the .exe file. (It will usually be in your Downloads folder.)
  3. A dialog box will appear. Follow the instructions to install the software.
  4. The software will be installed.

How does downloading and installing work? ›

Downloading means transfering a file from some server out there to your own device. Once you've downloaded a file, you have a copy of it. Installing an app means setting it up so that your system can run it. It needs to be stored in the right location.

Why is my phone not allowing Downloads? ›

If you can't download apps on your Android device, you should start by checking your connection. In some cases, this is the cause of downloading troubles. No Wi-Fi or mobile data connection equals no downloads because your phone or tablet won't communicate with the Google Play Store.

How do I enable Downloads? ›

Click Start > Settings > Privacy. Scroll down on the left and click on Automatic file downloads. Click on Allow.

Why are my Downloads failed? ›

This error means that your computer's security settings blocked the file. Learn more about blocked downloads. On Windows: Windows Attachment Manager could have removed the file you tried to download. To check which files you can download or why your file was blocked, check your Windows internet security settings.

Top Articles
Latest Posts
Article information

Author: Tyson Zemlak

Last Updated:

Views: 6260

Rating: 4.2 / 5 (43 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Tyson Zemlak

Birthday: 1992-03-17

Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013

Phone: +441678032891

Job: Community-Services Orchestrator

Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography

Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.