I've added a function to try and automatically login when DCS multiplayer starts.
Heres the function I added:
local function doLogin()
makeLoginDialog()
dlg_login.login:setText('myuser')
dlg_login.password:setText('mypw')
net.login(dlg_login.login:getText(), dlg_login.password:getText(), dlg_login.savepw:getState())
dlg_login.kill()
end
And in the init function I changed askLogin() to doLogin()
However, when I run DCS multiplayer, nothiong has changed. Am I missing something?