Page 1 of 1

Conditional for another mod's settings

Posted: Tue Apr 28, 2020 6:49 pm
by yeahtoast
Hi there, is there a way to use a function like this one:

Code: Select all

if settings.global["mod-setting-1"].value then
But referencing another mod's setting? How does one access remote mod settings?

This code:

Code: Select all

settings.global["mod-setting-1"].value
will always be nil since it's not part of the base game or internal to this mod. Any help is appreciated!

Re: Conditional for another mod's settings

Posted: Tue Apr 28, 2020 6:58 pm
by steinio
Nope, if the setting with that name exists you can read it.
Set a dependency for the other mod in info.json to be sure it's loaded first.

Re: Conditional for another mod's settings

Posted: Tue Apr 28, 2020 7:13 pm
by yeahtoast
Huh, turns out my issue was using .global instead of .startup for a startup setting... :oops: Good to know this is how this works.

Thanks for the help!