Usually there is an instruction on how to install the assets. It´s a textdocument in the same Folder.
In case there isn´t then it´s pretty much always the same Thing you have to do.
1. Copy the assets Folder you want to add to your dungeon into your mod assets Folder of your dungeon
2. Now search for your scripts Folder. There should be an init.lua inside.
3. Upen up the init.lua. Now you have to Import the assets Folder to that file.
This is the line which imports your standart assets
Code: Select all
import "assets/scripts/standard_assets.lua"
What you can do now is importing all of the lua files of the assets Folder to your init.lua just as you Import the standart assets.
But in most cases the guys who made the assets pack kept it simple to Import their assets and did that work for you by importing all lua files in one other lua file,
which is in the Folder.
So you just have to add that one lua file, in which the others are already imported. Just take a look at the files and you will see what i mean.
There should be just a few Import lines in there.
If you can´t find one then just add your own or add the files one by one to your init.lua
Just be sure to Import the correct path and everything should work fine then.
I hope i was helpful. Peace out!

In order to get to the other side of the pit you have to get hit by the fireball and die....
Yep.....moving on!