Difference between revisions of "Running a Server"
From DCS World Wiki - Hoggitworld.com
(Created page with "Guide to running a server.") |
|||
| Line 1: | Line 1: | ||
| − | + | ===AutoExec.cfg | |
| + | This file should go in the C:\Users\<user>\Saved Games\DCS[.openbeta]\Config directory. This is a template with comments: | ||
| + | |||
| + | if not net then net = {} end | ||
| + | net.download_speed = 1024*1024*256 | ||
| + | net.upload_speed = 1024*1024*256 | ||
| + | |||
| + | options.graphics.maxfps = 30 | ||
| + | options.graphics.render3D = false | ||
| + | options.graphics.ScreenshotQuality = 0 | ||
| + | |||
| + | crash_report_mode = "silent" | ||
| + | disable_write_track = true | ||
Revision as of 19:55, 8 September 2018
===AutoExec.cfg This file should go in the C:\Users\<user>\Saved Games\DCS[.openbeta]\Config directory. This is a template with comments:
if not net then net = {} end
net.download_speed = 1024*1024*256
net.upload_speed = 1024*1024*256
options.graphics.maxfps = 30 options.graphics.render3D = false options.graphics.ScreenshotQuality = 0
crash_report_mode = "silent" disable_write_track = true
