Metall4You Posted 22 hours ago Report Posted 22 hours ago Hello I wanted to find out why I'm getting this error message. don't know where to look. thank you for your feedback Exception 1 "ERROR", Ref 19781, Index param 2 on TransmitClientEvent, object=0, id=68038 (????), data=67108864 Kind Regards Ramon FSUIPC7.log
John Dowson Posted 9 hours ago Report Posted 9 hours ago 12 hours ago, Metall4You said: Exception 1 "ERROR", Ref 19781, Index param 2 on TransmitClientEvent, object=0, id=68038 (????), data=67108864 This error usually indicates an issue with simconnect and is temporary, but in this case I am not sure as I would expect to see more than just one error. Do you see this all the time or occasionally? is this causing any issues? Your log file does show some issues and is rather strange...could you please download 7.5.1 again and re-install to be sure that you are using the latest official 7.5.1 version please. Also, there are some re-connection attempts so you should tune the startup parameters - set the following in your FSUIPC7.ini file: DetectToConnectDelayAuto=100 InitialStallTime=0 Then can you switch off all logging (including lua plugin logging) and activate logging for Buttons & Keys and Events only, and show me / attach your FSUIPC7.log and FSUIPC7.ini files when you get the error.
Metall4You Posted 5 hours ago Author Report Posted 5 hours ago Hi John Many thanks for your Support. Would be happy to send you the INI and LOG files. My problem at the moment is that I can't get the LVAR 'FS2CEW_RAASPRO_MASTER_SWITCH' to work. would like to control the RAAS power button from FSCrew using Lua script. Error: **** Lvar 'FS2CEW_RAASPRO_MASTER_SWITCH' not found: cannot add to offset 0xA010 Thanks for your help FSUIPC7.INI FSUIPC7.log
John Dowson Posted 3 hours ago Report Posted 3 hours ago 21 minutes ago, Metall4You said: My problem at the moment is that I can't get the LVAR 'FS2CEW_RAASPRO_MASTER_SWITCH' to work. would like to control the RAAS power button from FSCrew using Lua script. Error: **** Lvar 'FS2CEW_RAASPRO_MASTER_SWITCH' not found: cannot add to offset 0xA010 Isn't it obvious what that error is? The lvar is not available. This is probably because since version 7.5.0, only an initial scan for lvars is performed, as continual scanning for lvars can cause the WASM to crash. If an lvar that you want to use is not picked-up in the first scan, there are a few things you can do: 1. Increase the WASM ini parameter LvarScanDelay. This ini parameter determines the delay from aircraft load to the first lvar scan, and the longer the delay, the more lvars will be detected. Try increasing this value. See the WASM section in the Advanced User guide for further details. 2. You can have a lua script to test for the existence of an lvar and if not available, then you can request an WASM reload, e.g. Quote -- Check Lvar exists while (ipc.getLvarId("L:FS2CEW_RAASPRO_MASTER_SWITCH") == nil) do ipc.reloadWASM() ipc.sleep(200) -- wait before checking again end -- Lvar now available - continue As for this error: 18 hours ago, Metall4You said: Exception 1 "ERROR", Ref 19781, Index param 2 on TransmitClientEvent, object=0, id=68038 (????), data=67108864 That looks to be due to an offset request at 0x0284 to update the ADF1 Standby frequency, and FSUIPC was using the wrong control number, using 68038 which doesn't exist. I have corrected this in the attached version if you could try it. John FSUIPC7.exe
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