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.
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.
}
-- 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.
}
Where exactly in this string of text do I identify the exempt cells? Thank you.