HeirOfTheSeptims Posted April 19, 2020 Share Posted April 19, 2020 If I add something to one of the vanilla formlists and another modder does too, will they override eachother? Or is it safe to do this? For context I want to add a new worldspace into the sun damage exception list, but if it might conflict with other mods I'd rather try to find a workaround. Link to comment Share on other sites More sharing options...
IsharaMeradin Posted April 19, 2020 Share Posted April 19, 2020 They will override each other. The last loaded gets its version used. A work around would be to set up a start game enabled quest. Add a script to the quest. Use AddForm to add the record you want to the appropriate list. If you want to avoid the use of properties (as that will make things persistent) then you can use GetFormFromFile to get both the form list and the record to add to it. That said, if another mod comes along and runs Revert on the same form list, your script added record will be removed as well. You may wish to include a player alias script on your quest that will utilize OnPlayerLoadGame to ensure that your record is still on the list and if it is not, re-add it. Link to comment Share on other sites More sharing options...
Recommended Posts