Jump to content

In what order are mods loaded?


Svarog

Recommended Posts

Is it by the order as seen in Loaded.txt or are they loaded by alphabetical ModIDs or by alphabetical mod folder names?

I think that they load alphabetically by ModID but I'm not sure, I really wish they were loaded by Loaded.txt order as it would help with compatibility in some cases. Some mods just work better when loaded after or before other mods without breaking too much but when the only thing that controls it is ModID then the solution get's more complicated than it needs to be.

Am I right or...?

Link to comment
Share on other sites

Is it by the order as seen in Loaded.txt or are they loaded by alphabetical ModIDs or by alphabetical mod folder names?

I think that they load alphabetically by ModID but I'm not sure, I really wish they were loaded by Loaded.txt order as it would help with compatibility in some cases. Some mods just work better when loaded after or before other mods without breaking too much but when the only thing that controls it is ModID then the solution get's more complicated than it needs to be.

Am I right or...?

Alphabetically.

 

Code to determine this:

 

local getTable = getModDirectoryTable()

for i = 1,#getTable do

    print(getTable)

end

Link to comment
Share on other sites

Alphabetically.

 

Code to determine this:

 

local getTable = getModDirectoryTable()

for i = 1,#getTable do

    print(getTable)

end

 

I suck at coding, but it means it's by Directory name right? Oh well, that is a bad way to do things if you ask me but it's not up to me :S

 

Thank you for responding.

Link to comment
Share on other sites

 

Alphabetically.

 

Code to determine this:

 

local getTable = getModDirectoryTable()

for i = 1,#getTable do

    print(getTable)

end

 

I suck at coding, but it means it's by Directory name right? Oh well, that is a bad way to do things if you ask me but it's not up to me :S

 

Thank you for responding.

 

It's by mod ID name.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...