Targanon Posted June 6, 2020 Posted June 6, 2020 Hi guys just beenlooking around for some tweaks for the dedicated server I have found a couple Like how to set your server host name! and to dis able the hotpluging to iliminate the Stuttes that some people get.. [u][b]autoexec.cfg[/b][/u] no_device_hotplug = true --disable hot plugging detection [u][b]dedicatedServer.lua[/b][/u] net.set_name('Server_Name') --Sets the the host name used in the deicated server, helpful if you are having to set your host name after every restart.. local res = net.start_server(serverSettings) if res ~= 0 then log.write('Dedicated Server', log.DEBUG, 'Failed to start server with code: ', res) end If you know of others that may be of use can you post them here and I'll add them to the Top post so it will help myself and others trying find things that can be done to Dedicated server Targs, GTX 1080ti, Asus Hero XI, Intel 9900KF @4.2MHz, 32g DDR4@3200Mhz, 4x 1Tb SSD 1x 400g m.2mvme(boot), 28" Samsung 4k, Saitek X-56 Throttle/Warthog Stick and Saitek Pro Flight Pedals. Moduls All of the NATO jets, and all the choppers.. DEDi MP [62AW] The Blackbirds Brisbane
thornx Posted July 17, 2020 Posted July 17, 2020 Here a sample from our autoexec.cfg (Dedicated Server) if not net then net = {} end options.graphics.fullscreen = false options.graphics.width = 1280 options.graphics.height = 768 options.graphics.maxfps = 20 options.graphics.render3D = false net.download_speed = 1024*1024*200 net.upload_speed = 1024*1024*200 net.use_upnp = false disable_write_track = true webgui_port = 8414 crash_report_mode = silent options.graphics.ScreenshotQuality = 0 log.set_output("dcs", "", log.ALL, log.FULL)
Recommended Posts