severniae Posted June 30, 2021 Report Posted June 30, 2021 Hi, I have a strange problem.. I'm finding with some scripts, ones that appear to work fine, randomly...don't.. For example, I have one script that's only function is to call two other scripts - sometimes, when I load this script, it functions, calls the other two scripts in turn and they load fine. Other times, it just exits for apparently no reason before completing its tasks.. the same goes for a few other scripts I am using... Example script: " function CallScripts() ipc.sleep(2000) ipc.runlua("DC6_MP_CONTROL") ipc.sleep(50) ipc.runlua("DC6_RPM_CONTROL") ipc.sleep(1000) end CallScripts() ipc.sleep(250) ipc.exit() " Here is the output for the log - same script ran twice - one time it works, the next not, no change to the scripts between executions...: ********* LUA: "DC6_WATCHENGINES" Log [from FSUIPC version 7.2.1] ********* 1872344 System time = 01/07/2021 00:13:10, Simulator time = 13:15:44 (12:15Z) 1872344 LUA: beginning "C:\FSUIPC7\DC6_WATCHENGINES.lua" 1872344 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:8 1872360 LUA: Global: ipcPARAM = 0 1872391 >>> Thread forced exit (ipc.exit or os.exit) <<< 1872391 System time = 01/07/2021 00:13:10, Simulator time = 13:15:44 (12:15Z) ********* LUA execution terminated: Log Closed ********* ********* LUA: "DC6_WATCHENGINES" Log [from FSUIPC version 7.2.1] ********* 1872469 System time = 01/07/2021 00:13:10, Simulator time = 13:15:45 (12:15Z) 1872469 LUA: beginning "C:\FSUIPC7\DC6_WATCHENGINES.lua" 1872469 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:8 1872469 LUA: Global: ipcPARAM = 0 1872485 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:2 1872500 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:10 1872516 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:4 fn: CallScripts 1872657 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:6 fn: CallScripts 1872797 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:8 fn: CallScripts 1872813 LUA: C:\FSUIPC7\DC6_WATCHENGINES.lua:12 1872828 >>> Thread forced exit (ipc.exit or os.exit) <<< 1872828 System time = 01/07/2021 00:13:11, Simulator time = 13:15:45 (12:15Z) ********* LUA execution terminated: Log Closed *********
John Dowson Posted July 1, 2021 Report Posted July 1, 2021 9 hours ago, severniae said: Here is the output for the log - same script ran twice - one time it works, the next not, no change to the scripts between executions...: The first execution of the script started at timestamp 1872344. The second execution started at 1872469, which 125ms later. As the first execution of the script was still running when you ran it again, the thread with for first execution was terminated. You can only ever have a script running once - if you try to run it again and it is already running, the current running instance will terminated. Also seems a strange script.... You don't need the ipc.exit() as the script will exit anyway, and you don't need the function call (or delays). The following script would do the same: ipc.runlua("DC6_MP_CONTROL")ipc.sleep(50)ipc.runlua("DC6_RPM_CONTROL")
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now