Hi!
I keep getting this error message when I load up the first mission, and my wins/losses aren't carrying to the next one. I've checked the lua file and according to the info I've found it appears to be scripted right. Any help on this?
sanitizeModule('os') in MissionScripting.lua has not been disabled. Mission results will not be accounted and campaign will not progress
Here's my missionscripting.lua
--Initialization script for the Mission lua Environment (SSE)
dofile('Scripts/ScriptingSystem.lua';)
--Sanitize Mission Scripting environment
--This makes unavailable some unsecure functions.
--Mission downloaded from server to client may contain potentialy harmful lua code that may use these functions.
--You can remove the code below and make availble these functions at your own risk.
local function sanitizeModule(name)
_G[name] = nil
package.loaded[name] = nil
end
do
--sanitizeModule('os';)
--sanitizeModule('io';)
--sanitizeModule('lfs';)
require = nil
loadlib = nil
end