Learwolf / TES3MP-0.8-Scripts

A list of my tes3mp server Lua scripts available for public use.
13 stars 5 forks source link

Exempt Cells #11

Open vibj-dev opened 1 year ago

vibj-dev commented 1 year ago

Hey there, was hoping you would help me. I'm trying to figure out the format to use to add in exempt cells.

-- Exact cell names: periodicCellResets.exemptCellNamesExact = { -- Exact cell names included in this list are not affected by the automated cell reset times in this script.

-- AVOID RESETTING THE FOLLOWING CELLS, BECAUSE IT WILL CAUSE WONKY BEHAVIOR WITH THE STARTING BOAT:
"-1, -9",
"-1, -10",
"-2, -9",
"-2, -10"

}

-- Similar cell names:interiorCellExemption periodicCellResets.exemptCellNamesLike = { -- Cell names that match strings included in this list are not affected by the automated cell reset times in this script.

"$custom_", -- Custom generated cells.

-- Prevent the following cells to prevent bugs:
"Seyda Neen, Census and Excise Office",

-- "Seyda Neen" -- Anything with Seyda Neen in the name, would be exempt from resets if you uncomment this line.

}

Where exactly in this string of text do I identify the exempt cells? Thank you.