Special thanks to Dzsekeb, the original creator of Foothold, without whom none of this would be possible.
Thanks to the guys at Moose and a special thanks to Applevangelist who have always endured my neverending questions. without their help, this foothold would not have CTLD, MANTIS, the WelcomeMessage. MissileTracking. Thank you!
**************************************************************************************
To be able to save your progress, you need to do this:
De-Sanitize the DCS scripting environment
Edit \Scripts\MissionScripting.lua inside your DCS installation folder:
Change the following section:
do
sanitizeModule('os')
sanitizeModule('io')
sanitizeModule('lfs')
_G['require'] = nil
_G['loadlib'] = nil
_G['package'] = nil
end
To look like this:
do
sanitizeModule('os')
--sanitizeModule('io')
--sanitizeModule('lfs')
_G['require'] = nil
_G['loadlib'] = nil
_G['package'] = nil
end