Added the new autoexec.cfg file required by DCS 2.9.18.12722

This commit is contained in:
Ambroise Garel
2025-07-23 17:04:45 +02:00
parent b0fd9c7eeb
commit 97c1a4672f
2 changed files with 19 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
if not net then net = {} end
net.allow_unsafe_api = { -- this defines the secure zones where net.dostring_in() can be called from
"userhooks",
"scripting",
"gui",
}
net.allow_dostring_in = { -- and this defines the zones that should be addressed from net.dostring_in()
"mission",
"scripting",
"gui",
"export",
"config",
}