Jump to content
The simFlight Network Forums

DarrylRobertson

Members
  • Posts

    6
  • Joined

  • Last visited

About DarrylRobertson

  • Birthday 09/27/1957

Profile Information

  • Gender
    Male
  • Location
    Townsville QLD Australia

DarrylRobertson's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi Pete I Know you must look forward to my messages every morning when you come into the office (not) sorry to be a pain. I am taking on board what you are saying, I am also starting to understand the process a bit more. on talking to the ozrunways tech team they don't know why I am having so much trouble with it, they say down load register and install the software and make the changes as per there instructions and it runs with out any trouble. so I am not sure why mine is so different I think it time to give up on this project. Thanks for your time and help i know it is not your problem. The following errors show the two files are missing have hot shown up before is that any thing to do with it 91485 Starting everything now ... 91531 Error 126 (The specified module could not be found. ) "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\PFCFSX.DLL" 91531 Error 126 (The specified module could not be found. ) "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\EPICINFO5.DLL" Thanks again kind regards Darryl
  2. Hi Pete Hi Pete Thanks for your helpful comments The "192.168.0.3" is what was added by me and is what I got from settings on the pad. the port could be the wrong one but I will have to do some research on how to fix that. in FSx there is a FSUIPC add on drop down menu and all these settings can be changed. there is another tab GPSout. changes in this drop down box seams to change the FSUIPC.ini I assume those settings are correct. just some back ground I started this project late last year and I did try to contact Jason Beringer first over the last two mouths and had no reply (I know that's not your problem) I am trying to make scene of what does what. It does seam the problem is in communications between my PC running FSx and the Ipad running ozrunways Thanks again for you help i know it not your problem Regards Darryl
  3. Hi Pete Thanks for your reply I understand it is not you product, so any help that you are able to give will be a step forward.I have attached the text from the two files FSXOzplug.lua and FSXOzplug.log I was not sure if the two programms were interfacing. Regards Darryl ********* LUA: "FSXOzplug" Log [from FSUIPC version 4.949] ********* 94234 System time = 09/02/2016 16:41:53, Simulator time = 09:40:17 (00:40Z) 94234 LUA: beginning "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 94250 *** LUA Error: ...(x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua:39: malformed number near '192.168.0.3' 94250 LUA: ended "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 94250 System time = 09/02/2016 16:41:53, Simulator time = 09:40:17 (00:40Z) ********* LUA execution terminated: Log Closed ********* ********* LUA: "FSXOzplug" Log [from FSUIPC version 4.949] ********* 101093 System time = 09/02/2016 19:58:13, Simulator time = 12:56:33 (03:56Z) 101093 LUA: beginning "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 101093 *** LUA Error: ...(x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua:169: '=' expected near '1' 101093 LUA: ended "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 101093 System time = 09/02/2016 19:58:13, Simulator time = 12:56:33 (03:56Z) ********* LUA execution terminated: Log Closed ********* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------- -- FSX Pulg-in for OzRunways "FSXOzplug.lua" -- Author: Jason Beringer jason.beringer@monash.edu -- 20/6/2012 Version 1.1 -- FSUIPC (http://www.schiratti.com/dowson.html) Lua Plug-In -- OzRunways EFB App for iPhone and Ipad (http://www.ozrunways.com/site/) --(For FSUIPC4/ESPIPC version 4.60 and later, or FSUIPC3 version 3.98 and later) -- Place in Modules folder -- Code reads FSUIPC offsets and writes to UDP port 49002 in format of Xplane data packets -- this makes OzRunways think it is connected to XPlane but really its FSX -- --INSTALLATION -- Download and install FSUIPC (http://www.schiratti.com/dowson.html) - version 4.60 and later, or FSUIPC3 version 3.98 and later -- To install extract this file (FSX_OzRunways_plugin.lua) into directory ..... /Microsoft Games/Microsoft Flight Simulator X/Modules/ -- Requires vstruct in ..... /Microsoft Games/Microsoft Flight Simulator X/Modules/vstruct -- Enter the IPad / IPhone IP address into the "host" below in the code -- Edit the "FSUIPC.ini". Add the following lines to the end (no dashes) --[Auto] --1=Lua FSXOzplug -- --History -- v1.0 First release June 2012 -- v1.1 Added current weather (wind speed and direction) as data output. Added a few print statements to tack in FSUIPC log. Added comments ----------------------------------------------------------------------------- --Required LUA Modules local socket = require("socket") local vstruct = require ("vstruct") -- Define update rate here in mS local update_rate=100 --0.1 seconds print ("Loading FSXOzPlug") -- Define IP and port -- Enter the IP address of the IPad or Iphone that OzRunways is running on. -- Port 49002 is UDP port that XPlane communicates on and OzRunways expects host = host or "192.168.0.3" -- USER EDIT THIS FOR YOUR IPDA/IPHONE RUNNING OZRUNWAYS port = port or 49002 -- Set options for UDP socket print ("Setting up socket") udp2 = socket.udp() udp2:settimeout(0) udp2:setoption('broadcast',true) udp2:setoption('dontroute',true) --Loop forever print ("FSXOzplug running .....") while 1 do -- These are the variables OzRunways cares about --For code 20 - lat,lon,altitude - index 0 = lat, 1=lon, 2=alt (units - lat/lon degrees, altitude is in feet) --For code 21 - vx,vz (if that makes sense)- index 3=vx index 5=vz (units kts) --For code 18 - heading (maybe more correctly, track, direction aircraft is pointing) - index 2=track (units degrees) --Get data from FSUIPC local gs_FSUIPC_raw, tas_FSUIPC_raw, ias_FSUIPC_raw, lat_FSUIPC_raw, lon_FSUIPC_raw, alt_FSUIPC_raw, pitch_FSUIPC_raw, bank_FSUIPC_raw, hdgT_FSUIPC_raw, mach_FSUIPC_raw,vs_FSUIPC_raw, Vz_ft_s_FSUIPC_raw, Vx_ft_s_FSUIPC_raw, Vy_ft_s_FSUIPC_raw, Mag_var_FSUIPC_raw, ambt_WS_knt_FSUIPC_raw,ambt_WD_T_FSUIPC_raw = ipc.readStruct( 0x02B4, "3UD", 0x0560, "3DD", "2SD", "1UD", 0x11C6, "1UW", 0x0842, "1SW", 0x3190, "3DBL", 0x02A0, "1UW", 0x0E90, "2UW") -- and convert it from FS units to units we like local gs_FSUIPC = (gs_FSUIPC_raw * 3600) / (65536 * 1852) local tas_FSUIPC = tas_FSUIPC_raw / 128 local ias_FSUIPC = ias_FSUIPC_raw / 128 local mach_FSUIPC = mach_FSUIPC_raw / 20480 local vs_FSUIPC = vs_FSUIPC_raw * -3.28084 local lat_FSUIPC = lat_FSUIPC_raw * 90 / (10001750 * 65536 * 65536) local lon_FSUIPC = lon_FSUIPC_raw * 360 / (65536 * 65536 * 65536 * 65536) local alt_ft_FSUIPC = alt_FSUIPC_raw * 3.28084 / (65536 * 65536) local alt_m_FSUIPC = alt_FSUIPC_raw / (65536 * 65536) local pitch_FSUIPC = pitch_FSUIPC_raw * 360 / (65536 * 65536) local bank_FSUIPC = bank_FSUIPC_raw * 360 / (65536 * 65536) local hdgT_FSUIPC = hdgT_FSUIPC_raw * 360 / (65536 * 65536) local Mag_var_FSUIPC = Mag_var_FSUIPC_raw * 360 / 65536 local hdgM_FSUIPC = hdgT_FSUIPC - Mag_var_FSUIPC local Vz_m_s_FSUIPC=Vz_ft_s_FSUIPC_raw/3.28084 local Vx_m_s_FSUIPC=Vx_ft_s_FSUIPC_raw/3.28084 local Vy_m_s_FSUIPC=Vy_ft_s_FSUIPC_raw/3.28084 local ambt_WD_T_FSUIPC = ambt_WD_T_FSUIPC_raw * 360 / 65536 local ambt_WS_knt_FSUIPC = ambt_WS_knt_FSUIPC_raw -- Now produce the datagram for Xplane UDP packet -- First part the "DATA" phrase local data1=68 local data2=65 local data3=84 local data4=65 local data5=64 -- Then index 17 for xpplane pitch, roll, hdg -- Note in Xplane ten this is 17 but we output 18 because that is what OzRunways expects local index1=18 local index1a=0 local index1b=0 local index1c=0 local pitch=pitch_FSUIPC local roll=bank_FSUIPC local hdg_true=hdgT_FSUIPC local hdg_mag=hdgM_FSUIPC local blank1=ambt_WD_T_FSUIPC -- This was previously blank for Xplane but I have added weather info here local blank2=ambt_WS_knt_FSUIPC -- This was previously blank for Xplane but I have added weather info here local blank3=-999 local blank4=-999 -- Then index 20 for x-plane lat,lon,alt,etc. local index2=20 local index2a=0 local index2b=0 local index2c=0 local lat_D=lat_FSUIPC local lon_D=lon_FSUIPC local alt_m=alt_m_FSUIPC local alt_ft=alt_ft_FSUIPC local onrwy=0 local alt_ind=alt_ft_FSUIPC local lat_S=100 local lon_W=100 -- Then index 21 for x-plane position info X,Y,Z,Vx,Vy,Vz, dist local index3=21 local index3a=0 local index3b=0 local index3c=0 -- Add dummy values for some variables that FSUIPC doesnt have local posX=-999 local posY=-999 local posZ=-999 local vX=Vx_m_s_FSUIPC local vY=Vy_m_s_FSUIPC local vZ=Vz_m_s_FSUIPC local dist_ft=-999 local dist_m=-999 local newtable={data1, data2, data3, data4, data5, index1, index1a, index1b, index1c, pitch, roll, hdg_true, hdg_mag, blank1, blank2, blank3, blank4, index2, index2a, index2b, index2c, lat_D, lon_D, alt_ft, alt_m, onrwy, alt_ind, lat_S, lon_W, index3, index3a, index3b, index3c, posX, posY, posZ, vX, vY, vZ, dist_ft, dist_m} newdgram = (vstruct.pack("9*u1 8*f4 4*u1 8*f4 4*u1 8*f4", newtable)) -- Leave this as we may later want to divide the data packet up in bits and send seperately -- newtable1 ={data1, data2, data3, data4, data5, index1, index1a, index1b, index1c, pitch, roll, hdg_true, hdg_mag, blank1, blank2, blank3, blank4} -- newtable2 ={data1, data2, data3, data4, data5, index2, index2a, index2b, index2c, lat_D, lon_D, alt_m, alt_ft, onrwy, alt_ind, lat_S, lon_W} -- newtable3 ={data1, data2, data3, data4, data5, index3, index3a, index3b, index3c, posX, posY, posZ, vX, vY, vZ, dist_ft, dist_m} -- newdgram1 = (vstruct.pack("9*u1 8*f4 ", newtable1)) -- newdgram2 = (vstruct.pack("9*u1 8*f4 ", newtable2)) -- newdgram3 = (vstruct.pack("9*u1 8*f4 ", newtable3)) --Send Data to HOST on PORT udp2:sendto(newdgram, host, port) -- -- udp2:sendto(newdgram1, host, port) -- -- udp2:sendto(newdgram2, host, port) -- -- udp2:sendto(newdgram3, host, port) -- -- Sleep for 500 mSecs so the update gets done roughly 2 times per second ipc.sleep(update_rate) [Auto] 1=Lua FSXOzplug end
  4. Hi Pete Ok I have down loaded and installed FSUIPC version 4.949. By way of fault finding I am interested to know if FSUIPC and Wide client have installed correctly if all the elements of your software have installed correctly then I will look else where. I am a newcomer to Flight simulator and I am not a programmer I am a professional pilot so I am trying to pick my way through this. regards Darryl
  5. Posted 22 January 2016 - 04:57 PM Pete Can you please help! I purchased and registered copies of FSUIPC4 and WideFS 7 and installed them I have attached the log files. The problem is it will not give me a position on OZ wunways. I have Oz runways on a Ipad 2 with built in GPS I disable location on Oz runways and put into simulator mode and start to fly but nothing happons. I am also running MSFS-x on my Toshiba satellite laptop with windows 10 on a wireless network I can not see any problems with the logs below except this error comes up 143547 *** LUA Error: ...(x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua:39: malformed number near '192.168.0.3' 143547 LUA.0: ended "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" It also seams to be looking for ESP and Prepar3D and Initial.LUA and not finding them. What am I missing. Regards Darryl Robertson Installer for FSUIPC4.DLL version 4.937 Looking in registry for FSX install path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Games\Flight Simulator\10.0 Parameter"SetupPath" ... >>> OK! FOUND FSX! <<< ... Looking in registry for ESP install path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft ESP\1.0 Parameter"SetupPath" Not there, so looking in: HKEY_CURRENT_USER\ESP Parameter"AppPath" ... NOT found! ... Looking in registry for Prepar3D install path: HKEY_LOCAL_MACHINE\SOFTWARE\LockheedMartin\Prepar3D Parameter"SetupPath" Not there, so looking in: HKEY_CURRENT_USER\Prepar3D Parameter"AppPath" ... NOT found! ... Looking in registry for Prepar3D v2 install path: HKEY_LOCAL_MACHINE\SOFTWARE\Lockheed Martin\Prepar3D v2 Parameter"SetupPath" Not there, so looking in: HKEY_CURRENT_USER\Prepar3D v2 Parameter"AppPath" ... NOT found! ... =========================================================== INSTALLATION FOR FSX: SetupPath="C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\" Checking version of the FSX EXE: ... Version 10.0.60905.0 (Need at least 10.0.60905.0) Checking compatibility with installed SimConnect: Found SimConnect build 60905 (Original) Checking if there's already a version of FSUIPC4 installed in: C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSUIPC4.DLL ... Version 4.937 found. FSX Modules folder already exists. Okay -- installed FSUIPC4 into "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSUIPC4.DLL" Looking for the current user's Application Data path: ... found as "C:\Users\Darryl Robertson\AppData\Roaming" Now finding \Microsoft\FSX\FSX.CFG for all users, including this one Looking in "C:\Users\Administrator\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\All Users\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Darryl Robertson\AppData\Roaming" Found FSX.CFG in "C:\Users\Darryl Robertson\AppData\Roaming\Microsoft\FSX\FSX.CFG" Now checking DLL.XML ... ... There is a previous DLL.XML, checking for FSUIPC4 section. ... FSUIPC4_Loader section already exists but will be replaced. (with FSUIPC4_Loader entry) ... FSUIPC4 section of DLL.XML written okay Now checking for a SimConnect.XML file ... ... No SimConnect.XML file found. This is okay. Looking in "C:\Users\Default\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Default User\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Default.migrated\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\DefaultAppPool\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Public\AppData\Roaming" ... No FSX.CFG there "Modules\FSUIPC Documents" folder already exists. Now installing additional files into the "Modules\FSUIPC Documents" folder: Installed "FSUIPC4 User Guide.pdf" okay Installed "FSUIPC4 for Advanced Users.pdf" okay Installed "FSUIPC4 History.pdf" okay Installed "List of FSX and P3D controls.pdf" okay Installed "FSUIPC Lua Library.pdf" okay Installed "FSUIPC Lua Plug-Ins.pdf" okay Installed "Lua License.pdf" okay Installed "Lua Plugins for VRInsight Devices.pdf" okay Installed "LuaFileSystem.pdf" okay Installed "Example LUA plugins.zip" okay Installed "ASN WX Radar facilities in FSUIPC4.pdf" okay Installed "Offset Mapping for PMDG 737NGX.pdf" okay Installed "FSUIPC4 Offsets Status.pdf" okay Installed "Profiles in Separate Files.pdf" okay =========================================================== All installer tasks completed. Registration for FSUIPC4 was successful! (result code 00) *************** End of Install Log *************** ------------------------------------------------------------------------------------------------------------------- ********* FSUIPC4, Version 4.937 by Pete Dowson ********* Reading options from "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSUIPC4.ini" Running inside FSX on Windows 8 Module base=779E0000 User Name="Darryl Robertson" User Addr="robertson.darryl@gmail.com" FSUIPC4 Key is provided WideFS7 Key is provided 1032 System time = 22/01/2016 12:58:24 1079 FLT UNC path = "\\DARRYLROBERTSON\Users\Darryl Robertson\Documents\Flight Simulator X Files\" 1188 Trying to connect to SimConnect Original ... 1235 FS UNC path = "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\" 2032 LogOptions=80000000 00000011 2032 SIM1 Frictions access gained 2047 WARNING: Failed to install Mouse Macro hooks! 2047 Wind smoothing fix is fully installed 2047 Delaying SimConnect connection ... 2438 Ready Flags: Ready-To-Fly=N, In Menu=N, In Dlg=N 3579 Memory in use: 534Mb, Avail=1514Mb 32047 SimConnect_Open succeeded: waiting to check version okay 32047 Trying to use SimConnect Original 32047 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 32047 Ready Flags: Ready-To-Fly=N, In Menu=Y, In Dlg=Y 63985 Memory in use: 616Mb, Avail=1432Mb 128860 Memory in use: 751Mb, Avail=1297Mb 138391 SimStart Event: Initialising SimConnect data requests 138391 FSUIPC Menu entry added 138579 Ready Flags: Ready-To-Fly=N, In Menu=N, In Dlg=N 138657 \\DARRYLROBERTSON\Users\Darryl Robertson\AppData\Roaming\Microsoft\FSX\Previous flight.FLT 138672 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 138672 C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\SimObjects\Airplanes\Beech_King_Air_350\Beech_King_Air_350.AIR 138672 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 138735 System time = 22/01/2016 13:00:42, Simulator time = 05:58:22 (20:58Z) 138735 Aircraft="Beech King Air 350 Paint1" 143516 Starting everything now ... 143547 Ready Flags: Ready-To-Fly=Y, In Menu=N, In Dlg=N 143547 LUA.0: beginning "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 143547 *** LUA Error: ...(x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua:39: malformed number near '192.168.0.3' 143547 LUA.0: ended "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 149860 Advanced Weather Interface Enabled 188985 Memory in use: 849Mb, Avail=1199Mb 249313 Memory in use: 849Mb, Avail=1199Mb 309547 Memory in use: 849Mb, Avail=1199Mb 369829 Memory in use: 847Mb, Avail=1201Mb 430125 Memory in use: 840Mb, Avail=1208Mb 490407 Memory in use: 855Mb, Avail=1193Mb 550594 Memory in use: 855Mb, Avail=1193Mb 610891 Memory in use: 862Mb, Avail=1186Mb 671204 Memory in use: 865Mb, Avail=1183Mb 731391 Memory in use: 891Mb, Avail=1157Mb 791516 Memory in use: 899Mb, Avail=1149Mb 851688 Memory in use: 899Mb, Avail=1149Mb 911954 Memory in use: 892Mb, Avail=1156Mb 972157 Memory in use: 892Mb, Avail=1156Mb 1032469 Memory in use: 892Mb, Avail=1156Mb 1092688 Memory in use: 892Mb, Avail=1156Mb 1111735 **** No SimConnect events or states being received! Re-connecting now ... **** 1111844 SimConnect_Open succeeded: waiting to check version okay 1111938 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 1111938 Initialising SimConnect data requests now 1111969 FSUIPC Menu entry added 1112391 \\DARRYLROBERTSON\Users\Darryl Robertson\Documents\Flight Simulator X Files\AutoSave Fri 131625.FLT 1112407 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1112907 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1113500 System time = 22/01/2016 13:16:57, Simulator time = 06:14:16 (21:14Z) 1144469 **** No SimConnect events or states being received! Re-connecting now ... **** 1144579 SimConnect_Open succeeded: waiting to check version okay 1144860 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 1144860 Initialising SimConnect data requests now 1144875 FSUIPC Menu entry added 1145344 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1146157 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1147422 System time = 22/01/2016 13:17:31, Simulator time = 06:14:16 (21:14Z) 1154516 Memory in use: 899Mb, Avail=1149Mb 1214688 Memory in use: 897Mb, Avail=1151Mb 1274891 Memory in use: 898Mb, Avail=1150Mb 1335000 Memory in use: 898Mb, Avail=1150Mb 1395266 Memory in use: 898Mb, Avail=1150Mb 1455500 Memory in use: 898Mb, Avail=1150Mb 1515860 Memory in use: 904Mb, Avail=1144Mb 1576079 Memory in use: 904Mb, Avail=1144Mb 1636266 Memory in use: 904Mb, Avail=1144Mb 1696438 Memory in use: 904Mb, Avail=1144Mb 1756657 Memory in use: 904Mb, Avail=1144Mb 1816954 Memory in use: 903Mb, Avail=1145Mb 1877235 Memory in use: 903Mb, Avail=1145Mb 1937532 Memory in use: 903Mb, Avail=1145Mb 1998032 Memory in use: 904Mb, Avail=1144Mb 2058391 Memory in use: 902Mb, Avail=1146Mb 2118782 Memory in use: 902Mb, Avail=1146Mb 2179047 Memory in use: 902Mb, Avail=1146Mb 2239454 Memory in use: 902Mb, Avail=1146Mb 2299860 Memory in use: 902Mb, Avail=1146Mb 2360250 Memory in use: 902Mb, Avail=1146Mb 2387641 **** No SimConnect events or states being received! Re-connecting now ... **** 2387750 SimConnect_Open succeeded: waiting to check version okay 2387907 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 2387907 Initialising SimConnect data requests now 2387938 FSUIPC Menu entry added 2388141 \\DARRYLROBERTSON\Users\Darryl Robertson\Documents\Flight Simulator X Files\AutoSave Fri 132723.FLT 2388141 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 2389500 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 2389954 System time = 22/01/2016 13:38:13, Simulator time = 06:24:09 (21:24Z) 2875672 Memory in use: 944Mb, Avail=1104Mb 2935922 Memory in use: 832Mb, Avail=1216Mb 2996063 Memory in use: 832Mb, Avail=1216Mb 3056282 Memory in use: 832Mb, Avail=1216Mb 3116563 Memory in use: 832Mb, Avail=1216Mb 3176750 Memory in use: 832Mb, Avail=1216Mb 3236907 Memory in use: 832Mb, Avail=1216Mb 3297094 Memory in use: 832Mb, Avail=1216Mb 3357313 Memory in use: 832Mb, Avail=1216Mb 3417438 Memory in use: 832Mb, Avail=1216Mb 3477594 Memory in use: 832Mb, Avail=1216Mb 3537829 Memory in use: 832Mb, Avail=1216Mb 3598094 Memory in use: 832Mb, Avail=1216Mb 3658797 Memory in use: 832Mb, Avail=1216Mb 3718969 Memory in use: 832Mb, Avail=1216Mb 3779219 Memory in use: 832Mb, Avail=1216Mb 3839469 Memory in use: 832Mb, Avail=1216Mb 3899704 Memory in use: 832Mb, Avail=1216Mb 3959969 Memory in use: 832Mb, Avail=1216Mb 4020110 Memory in use: 832Mb, Avail=1216Mb 4080313 Memory in use: 832Mb, Avail=1216Mb 4140547 Memory in use: 832Mb, Avail=1216Mb 9475688 Memory in use: 832Mb, Avail=1216Mb 9475719 **** No SimConnect events or states being received! Re-connecting now ... **** 9476532 SimConnect_Open succeeded: waiting to check version okay 9477235 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 9477266 Initialising SimConnect data requests now 9477266 FSUIPC Menu entry added 9477500 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9477704 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9477782 System time = 22/01/2016 15:36:21, Simulator time = 06:24:09 (21:24Z) 9503079 **** No SimConnect events or states being received! Re-connecting now ... **** 9503188 SimConnect_Open succeeded: waiting to check version okay 9503375 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 9503375 Initialising SimConnect data requests now 9503375 FSUIPC Menu entry added 9503641 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9503922 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9507813 Ready Flags: Ready-To-Fly=Y, In Menu=Y, In Dlg=Y ---------------------------------------------------------------------------------------------------------------- [General] UpdatedByVersion=4937 History=Z6N66592VHG69V8G74YJF AxesWrongRange=No TCASid=Flight TCASrange=40 AxisCalibration=No DirectAxesToCalibs=No ShowMultilineWindow=No SuppressSingleline=No SuppressMultilineFS=No AxisIntercepts=No DontResetAxes=No InitDelay=30 GetNearestAirports=No OOMcheck=Yes WeatherReadFactor=2 WeatherRewriteSeconds=1 CustomWeatherModify=No SimConnectStallTime=1 LuaRerunDelay=66 Console=Yes InitDelayDevicesToo=No NewInterceptTextMenu=No UseSystemTime=No UseMidMouseBtn=Yes MouseWheelMove=No MouseWheelTrim=No MouseWheelTrimSpeed=1 JoystickTimeout=20 PollGFTQ6=Yes BlankDisplays=No FixControlAccel=No FixMachSpeedBug=No DeleteVehiclesForAES=No AutoScanDevices=Yes VisibilityOptions=No OneCloudLayer=No CloudTurbulence=No CloudIcing=No GenerateCirrus=No SuppressCloudTurbulence=No MaxIce=3 MinIce=-1 UpperWindGusts=No SuppressWindTurbulence=No SuppressWindVariance=No WindTurbulence=No TurbulenceRate=1.0,5.0 TurbulenceDivisor=20,20,40,40 SuppressAllGusts=No MaxSurfaceWind=0 WindLimitLevel=200 WindDiscardLevel=400 WindAjustAltitude=No WindAjustAltitudeBy=2000 SmoothBySimTime=No WindSmoothing=No WindSmoothness=2 WindSmoothAirborneOnly=Yes PressureSmoothness=0 TemperatureSmoothness=0 DisconnTrimForAP=No ZeroElevForAPAlt=No ThrottleSyncAll=No WhiteMessages=No ShowPMcontrols=No SpoilerIncrement=512 MagicBattery=No RudderSpikeRemoval=No ElevatorSpikeRemoval=No AileronSpikeRemoval=No ReversedElevatorTrim=No ClockSync=No ClockSyncMins=5 ClearWeatherDynamics=No OwnWeatherChanges=No TimeForSelect=4 LoadFlightMenu=No LoadPlanMenu=No PauseAfterCrash=No BrakeReleaseThreshold=75 SaveDataWithFlights=No ZapSound=firework ShortAircraftNameOk=Substring UseProfiles=Yes EnableMouseLook=No DelayedMouseLookZoom=No ConsoleWindow=-9,2,1031,737 LogLua=Yes DebugLua=Yes LogExtras=Yes FSVersionUsed="Microsoft Flight Simulator X",10.0.60905.0 SimConnectUsed=2.0.60905.0 [JoyNames] AutoAssignLetters=No 0=Logitech Extreme 3D 0.GUID={76B81840-C0A5-11E3-8001-444553540000} [WideServer] WideFSenabled=Yes AdvertiseService=1 Port=8002 Port2=9002 [Auto] 1=Lua FSXOzplug [Axes] PollInterval=10 RangeRepeatRate=10 [buttons] PollInterval=25 ButtonRepeat=20,10 [AutoSave] Next=8 Interval=60 Files=10 SaveOnGround=No AutoSaveEnabled=Yes 1=Fri 132126 2=Fri 132226 3=Fri 132325 4=Fri 132425 5=Fri 132524 6=Fri 132624 7=Fri 132723 8=Fri 131828 9=Fri 131927 10=Fri 132027 [GPSout] GPSoutEnabled=Yes Port=192.168.0.8 Speed=4800 Interval=2000 PosTo6Decimal=Yes SimModeIndicator=No Sentences=RMC,GGA,GSA [GPSout2] GPSoutEnabled=No Port= Speed=4800 Interval=2000 PosTo6Decimal=No SimModeIndicator=No Sentences=RMC,GGA,GSA [sounds] Path=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Sound\ Device1=Primary Sound Driver Device2=Speakers (Realtek High Definition Audio) [Auto] 1=Lua FSXOzplug [LuaFiles] 1=FSXOzplug ------------------------------------------------------------------------------------------------------------------- ********* WideServer.DLL Log [version 7.937] ********* Blocksize guide = 8192 (double allowed) Date (dmy): 21/01/16, Time 14:33:06.786: Server name is DARRYLROBERTSON 15156 Initialising TCP/IP server 15156 Initialising UDP/IP server 16031 Broadcasting service every 1000 mSecs 67809203 Closing down now ... Memory managed: Offset records: 21 alloc, 20 free Read buffer usage: 0 alloc, 0 free, max in session: 0 Write buffer usage: 0 alloc, 0 free, max in session: 0 Throughput maximum achieved: 0 frames/sec, 0 bytes/sec Throughput average achieved for complete session: 0 frames/sec, 0 bytes/sec ********* Log file closed ********* ---------------------------------------------------------------------------------------------------------------------- ********* WideServer.DLL Log [version 7.937] ********* Blocksize guide = 8192 (double allowed) Date (dmy): 22/01/16, Time 13:00:47.415: Server name is DARRYLROBERTSON 15141 Initialising TCP/IP server 15141 Initialising UDP/IP server 16078 Broadcasting service every 1000 mSecs ---------------------------------------------------------------------------------------------------------------------- ********* WideClient Log [version 6.999n] Class=FS98MAIN ********* Date (dmy): 16/01/16, Time 10:24:54.347: Client name is DARRYLROBERTSON 531 LUA: "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\Initial.LUA": not found 562 Attempting to connect now 562 Trying to locate server: Need details from Server Broadcast 562 Failed to connect: waiting to try again 2609 Attempting to connect now 11312 ****** End of session performance summary ****** 11312 Total time connected = 0 seconds 11312 Reception maximum: 0 frames/sec, 0 bytes/sec 11328 Transmission maximum: 0 frames/sec, 0 bytes/sec 11328 Max receive buffer = 0, Max send depth = 0, Send frames lost = 0 11328 ********* Log file closed (Buffers: MaxUsed 0, Alloc 0 Freed 0 Refused 0) ********* ----------------------------------------------------------------------------------------------------------------------- ********* WideClient Log [version 6.999n] Class=FS98MAIN ********* Date (dmy): 02/01/16, Time 18:23:47.001: Client name is DARRYLROBERTSON 531 LUA: "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\Initial.LUA": not found 578 Attempting to connect now 578 Trying to locate server: Need details from Server Broadcast 578 Failed to connect: waiting to try again 2625 Attempting to connect now 45313 Trying to locate server: Need details from Server Broadcast 2581906 ****** End of session performance summary ****** 2581922 Total time connected = 0 seconds 2581922 Reception maximum: 0 frames/sec, 0 bytes/sec 2581922 Transmission maximum: 0 frames/sec, 0 bytes/sec 2581922 Max receive buffer = 0, Max send depth = 0, Send frames lost = 0 2581922 ********* Log file closed (Buffers: MaxUsed 0, Alloc 0 Freed 0 Refused 0) *********
  6. Pete Can you please help! I purchased and registered copies of FSUIPC4 and WideFS 7 and installed them I have attached the log files. The problem is it will not give me a position on OZ wunways. I have Oz runways on a Ipad 2 with built in GPS I disable location on Oz runways and put into simulator mode and start to fly but nothing happons. I am also running MSFS-x on my Toshiba satellite laptop with windows 10 on a wireless network I can not see any problems with the logs below except this error comes up 143547 *** LUA Error: ...(x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua:39: malformed number near '192.168.0.3' 143547 LUA.0: ended "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" It also seams to be looking for ESP and Prepar3D and Initial.LUA and not finding them. What am I missing. Regards Darryl Robertson Installer for FSUIPC4.DLL version 4.937 Looking in registry for FSX install path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Games\Flight Simulator\10.0 Parameter"SetupPath" ... >>> OK! FOUND FSX! <<< ... Looking in registry for ESP install path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft ESP\1.0 Parameter"SetupPath" Not there, so looking in: HKEY_CURRENT_USER\ESP Parameter"AppPath" ... NOT found! ... Looking in registry for Prepar3D install path: HKEY_LOCAL_MACHINE\SOFTWARE\LockheedMartin\Prepar3D Parameter"SetupPath" Not there, so looking in: HKEY_CURRENT_USER\Prepar3D Parameter"AppPath" ... NOT found! ... Looking in registry for Prepar3D v2 install path: HKEY_LOCAL_MACHINE\SOFTWARE\Lockheed Martin\Prepar3D v2 Parameter"SetupPath" Not there, so looking in: HKEY_CURRENT_USER\Prepar3D v2 Parameter"AppPath" ... NOT found! ... =========================================================== INSTALLATION FOR FSX: SetupPath="C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\" Checking version of the FSX EXE: ... Version 10.0.60905.0 (Need at least 10.0.60905.0) Checking compatibility with installed SimConnect: Found SimConnect build 60905 (Original) Checking if there's already a version of FSUIPC4 installed in: C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSUIPC4.DLL ... Version 4.937 found. FSX Modules folder already exists. Okay -- installed FSUIPC4 into "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSUIPC4.DLL" Looking for the current user's Application Data path: ... found as "C:\Users\Darryl Robertson\AppData\Roaming" Now finding \Microsoft\FSX\FSX.CFG for all users, including this one Looking in "C:\Users\Administrator\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\All Users\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Darryl Robertson\AppData\Roaming" Found FSX.CFG in "C:\Users\Darryl Robertson\AppData\Roaming\Microsoft\FSX\FSX.CFG" Now checking DLL.XML ... ... There is a previous DLL.XML, checking for FSUIPC4 section. ... FSUIPC4_Loader section already exists but will be replaced. (with FSUIPC4_Loader entry) ... FSUIPC4 section of DLL.XML written okay Now checking for a SimConnect.XML file ... ... No SimConnect.XML file found. This is okay. Looking in "C:\Users\Default\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Default User\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Default.migrated\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\DefaultAppPool\AppData\Roaming" ... No FSX.CFG there Looking in "C:\Users\Public\AppData\Roaming" ... No FSX.CFG there "Modules\FSUIPC Documents" folder already exists. Now installing additional files into the "Modules\FSUIPC Documents" folder: Installed "FSUIPC4 User Guide.pdf" okay Installed "FSUIPC4 for Advanced Users.pdf" okay Installed "FSUIPC4 History.pdf" okay Installed "List of FSX and P3D controls.pdf" okay Installed "FSUIPC Lua Library.pdf" okay Installed "FSUIPC Lua Plug-Ins.pdf" okay Installed "Lua License.pdf" okay Installed "Lua Plugins for VRInsight Devices.pdf" okay Installed "LuaFileSystem.pdf" okay Installed "Example LUA plugins.zip" okay Installed "ASN WX Radar facilities in FSUIPC4.pdf" okay Installed "Offset Mapping for PMDG 737NGX.pdf" okay Installed "FSUIPC4 Offsets Status.pdf" okay Installed "Profiles in Separate Files.pdf" okay =========================================================== All installer tasks completed. Registration for FSUIPC4 was successful! (result code 00) *************** End of Install Log *************** ------------------------------------------------------------------------------------------------------------------- ********* FSUIPC4, Version 4.937 by Pete Dowson ********* Reading options from "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSUIPC4.ini" Running inside FSX on Windows 8 Module base=779E0000 User Name="Darryl Robertson" User Addr="robertson.darryl@gmail.com" FSUIPC4 Key is provided WideFS7 Key is provided 1032 System time = 22/01/2016 12:58:24 1079 FLT UNC path = "\\DARRYLROBERTSON\Users\Darryl Robertson\Documents\Flight Simulator X Files\" 1188 Trying to connect to SimConnect Original ... 1235 FS UNC path = "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\" 2032 LogOptions=80000000 00000011 2032 SIM1 Frictions access gained 2047 WARNING: Failed to install Mouse Macro hooks! 2047 Wind smoothing fix is fully installed 2047 Delaying SimConnect connection ... 2438 Ready Flags: Ready-To-Fly=N, In Menu=N, In Dlg=N 3579 Memory in use: 534Mb, Avail=1514Mb 32047 SimConnect_Open succeeded: waiting to check version okay 32047 Trying to use SimConnect Original 32047 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 32047 Ready Flags: Ready-To-Fly=N, In Menu=Y, In Dlg=Y 63985 Memory in use: 616Mb, Avail=1432Mb 128860 Memory in use: 751Mb, Avail=1297Mb 138391 SimStart Event: Initialising SimConnect data requests 138391 FSUIPC Menu entry added 138579 Ready Flags: Ready-To-Fly=N, In Menu=N, In Dlg=N 138657 \\DARRYLROBERTSON\Users\Darryl Robertson\AppData\Roaming\Microsoft\FSX\Previous flight.FLT 138672 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 138672 C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\SimObjects\Airplanes\Beech_King_Air_350\Beech_King_Air_350.AIR 138672 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 138735 System time = 22/01/2016 13:00:42, Simulator time = 05:58:22 (20:58Z) 138735 Aircraft="Beech King Air 350 Paint1" 143516 Starting everything now ... 143547 Ready Flags: Ready-To-Fly=Y, In Menu=N, In Dlg=N 143547 LUA.0: beginning "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 143547 *** LUA Error: ...(x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua:39: malformed number near '192.168.0.3' 143547 LUA.0: ended "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\FSXOzplug.lua" 149860 Advanced Weather Interface Enabled 188985 Memory in use: 849Mb, Avail=1199Mb 249313 Memory in use: 849Mb, Avail=1199Mb 309547 Memory in use: 849Mb, Avail=1199Mb 369829 Memory in use: 847Mb, Avail=1201Mb 430125 Memory in use: 840Mb, Avail=1208Mb 490407 Memory in use: 855Mb, Avail=1193Mb 550594 Memory in use: 855Mb, Avail=1193Mb 610891 Memory in use: 862Mb, Avail=1186Mb 671204 Memory in use: 865Mb, Avail=1183Mb 731391 Memory in use: 891Mb, Avail=1157Mb 791516 Memory in use: 899Mb, Avail=1149Mb 851688 Memory in use: 899Mb, Avail=1149Mb 911954 Memory in use: 892Mb, Avail=1156Mb 972157 Memory in use: 892Mb, Avail=1156Mb 1032469 Memory in use: 892Mb, Avail=1156Mb 1092688 Memory in use: 892Mb, Avail=1156Mb 1111735 **** No SimConnect events or states being received! Re-connecting now ... **** 1111844 SimConnect_Open succeeded: waiting to check version okay 1111938 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 1111938 Initialising SimConnect data requests now 1111969 FSUIPC Menu entry added 1112391 \\DARRYLROBERTSON\Users\Darryl Robertson\Documents\Flight Simulator X Files\AutoSave Fri 131625.FLT 1112407 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1112907 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1113500 System time = 22/01/2016 13:16:57, Simulator time = 06:14:16 (21:14Z) 1144469 **** No SimConnect events or states being received! Re-connecting now ... **** 1144579 SimConnect_Open succeeded: waiting to check version okay 1144860 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 1144860 Initialising SimConnect data requests now 1144875 FSUIPC Menu entry added 1145344 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1146157 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 1147422 System time = 22/01/2016 13:17:31, Simulator time = 06:14:16 (21:14Z) 1154516 Memory in use: 899Mb, Avail=1149Mb 1214688 Memory in use: 897Mb, Avail=1151Mb 1274891 Memory in use: 898Mb, Avail=1150Mb 1335000 Memory in use: 898Mb, Avail=1150Mb 1395266 Memory in use: 898Mb, Avail=1150Mb 1455500 Memory in use: 898Mb, Avail=1150Mb 1515860 Memory in use: 904Mb, Avail=1144Mb 1576079 Memory in use: 904Mb, Avail=1144Mb 1636266 Memory in use: 904Mb, Avail=1144Mb 1696438 Memory in use: 904Mb, Avail=1144Mb 1756657 Memory in use: 904Mb, Avail=1144Mb 1816954 Memory in use: 903Mb, Avail=1145Mb 1877235 Memory in use: 903Mb, Avail=1145Mb 1937532 Memory in use: 903Mb, Avail=1145Mb 1998032 Memory in use: 904Mb, Avail=1144Mb 2058391 Memory in use: 902Mb, Avail=1146Mb 2118782 Memory in use: 902Mb, Avail=1146Mb 2179047 Memory in use: 902Mb, Avail=1146Mb 2239454 Memory in use: 902Mb, Avail=1146Mb 2299860 Memory in use: 902Mb, Avail=1146Mb 2360250 Memory in use: 902Mb, Avail=1146Mb 2387641 **** No SimConnect events or states being received! Re-connecting now ... **** 2387750 SimConnect_Open succeeded: waiting to check version okay 2387907 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 2387907 Initialising SimConnect data requests now 2387938 FSUIPC Menu entry added 2388141 \\DARRYLROBERTSON\Users\Darryl Robertson\Documents\Flight Simulator X Files\AutoSave Fri 132723.FLT 2388141 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 2389500 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 2389954 System time = 22/01/2016 13:38:13, Simulator time = 06:24:09 (21:24Z) 2875672 Memory in use: 944Mb, Avail=1104Mb 2935922 Memory in use: 832Mb, Avail=1216Mb 2996063 Memory in use: 832Mb, Avail=1216Mb 3056282 Memory in use: 832Mb, Avail=1216Mb 3116563 Memory in use: 832Mb, Avail=1216Mb 3176750 Memory in use: 832Mb, Avail=1216Mb 3236907 Memory in use: 832Mb, Avail=1216Mb 3297094 Memory in use: 832Mb, Avail=1216Mb 3357313 Memory in use: 832Mb, Avail=1216Mb 3417438 Memory in use: 832Mb, Avail=1216Mb 3477594 Memory in use: 832Mb, Avail=1216Mb 3537829 Memory in use: 832Mb, Avail=1216Mb 3598094 Memory in use: 832Mb, Avail=1216Mb 3658797 Memory in use: 832Mb, Avail=1216Mb 3718969 Memory in use: 832Mb, Avail=1216Mb 3779219 Memory in use: 832Mb, Avail=1216Mb 3839469 Memory in use: 832Mb, Avail=1216Mb 3899704 Memory in use: 832Mb, Avail=1216Mb 3959969 Memory in use: 832Mb, Avail=1216Mb 4020110 Memory in use: 832Mb, Avail=1216Mb 4080313 Memory in use: 832Mb, Avail=1216Mb 4140547 Memory in use: 832Mb, Avail=1216Mb 9475688 Memory in use: 832Mb, Avail=1216Mb 9475719 **** No SimConnect events or states being received! Re-connecting now ... **** 9476532 SimConnect_Open succeeded: waiting to check version okay 9477235 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 9477266 Initialising SimConnect data requests now 9477266 FSUIPC Menu entry added 9477500 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9477704 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9477782 System time = 22/01/2016 15:36:21, Simulator time = 06:24:09 (21:24Z) 9503079 **** No SimConnect events or states being received! Re-connecting now ... **** 9503188 SimConnect_Open succeeded: waiting to check version okay 9503375 Running in "Microsoft Flight Simulator X", Version: 10.0.60905.0 (SimConnect: 2.0.60905.0) 9503375 Initialising SimConnect data requests now 9503375 FSUIPC Menu entry added 9503641 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9503922 C:\Users\Darryl Robertson\Documents\Flight Simulator X Files\IFR Townsville Intl to Innisfail.PLN 9507813 Ready Flags: Ready-To-Fly=Y, In Menu=Y, In Dlg=Y ---------------------------------------------------------------------------------------------------------------- [General] UpdatedByVersion=4937 History=Z6N66592VHG69V8G74YJF AxesWrongRange=No TCASid=Flight TCASrange=40 AxisCalibration=No DirectAxesToCalibs=No ShowMultilineWindow=No SuppressSingleline=No SuppressMultilineFS=No AxisIntercepts=No DontResetAxes=No InitDelay=30 GetNearestAirports=No OOMcheck=Yes WeatherReadFactor=2 WeatherRewriteSeconds=1 CustomWeatherModify=No SimConnectStallTime=1 LuaRerunDelay=66 Console=Yes InitDelayDevicesToo=No NewInterceptTextMenu=No UseSystemTime=No UseMidMouseBtn=Yes MouseWheelMove=No MouseWheelTrim=No MouseWheelTrimSpeed=1 JoystickTimeout=20 PollGFTQ6=Yes BlankDisplays=No FixControlAccel=No FixMachSpeedBug=No DeleteVehiclesForAES=No AutoScanDevices=Yes VisibilityOptions=No OneCloudLayer=No CloudTurbulence=No CloudIcing=No GenerateCirrus=No SuppressCloudTurbulence=No MaxIce=3 MinIce=-1 UpperWindGusts=No SuppressWindTurbulence=No SuppressWindVariance=No WindTurbulence=No TurbulenceRate=1.0,5.0 TurbulenceDivisor=20,20,40,40 SuppressAllGusts=No MaxSurfaceWind=0 WindLimitLevel=200 WindDiscardLevel=400 WindAjustAltitude=No WindAjustAltitudeBy=2000 SmoothBySimTime=No WindSmoothing=No WindSmoothness=2 WindSmoothAirborneOnly=Yes PressureSmoothness=0 TemperatureSmoothness=0 DisconnTrimForAP=No ZeroElevForAPAlt=No ThrottleSyncAll=No WhiteMessages=No ShowPMcontrols=No SpoilerIncrement=512 MagicBattery=No RudderSpikeRemoval=No ElevatorSpikeRemoval=No AileronSpikeRemoval=No ReversedElevatorTrim=No ClockSync=No ClockSyncMins=5 ClearWeatherDynamics=No OwnWeatherChanges=No TimeForSelect=4 LoadFlightMenu=No LoadPlanMenu=No PauseAfterCrash=No BrakeReleaseThreshold=75 SaveDataWithFlights=No ZapSound=firework ShortAircraftNameOk=Substring UseProfiles=Yes EnableMouseLook=No DelayedMouseLookZoom=No ConsoleWindow=-9,2,1031,737 LogLua=Yes DebugLua=Yes LogExtras=Yes FSVersionUsed="Microsoft Flight Simulator X",10.0.60905.0 SimConnectUsed=2.0.60905.0 [JoyNames] AutoAssignLetters=No 0=Logitech Extreme 3D 0.GUID={76B81840-C0A5-11E3-8001-444553540000} [WideServer] WideFSenabled=Yes AdvertiseService=1 Port=8002 Port2=9002 [Auto] 1=Lua FSXOzplug [Axes] PollInterval=10 RangeRepeatRate=10 [buttons] PollInterval=25 ButtonRepeat=20,10 [AutoSave] Next=8 Interval=60 Files=10 SaveOnGround=No AutoSaveEnabled=Yes 1=Fri 132126 2=Fri 132226 3=Fri 132325 4=Fri 132425 5=Fri 132524 6=Fri 132624 7=Fri 132723 8=Fri 131828 9=Fri 131927 10=Fri 132027 [GPSout] GPSoutEnabled=Yes Port=192.168.0.8 Speed=4800 Interval=2000 PosTo6Decimal=Yes SimModeIndicator=No Sentences=RMC,GGA,GSA [GPSout2] GPSoutEnabled=No Port= Speed=4800 Interval=2000 PosTo6Decimal=No SimModeIndicator=No Sentences=RMC,GGA,GSA [sounds] Path=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Sound\ Device1=Primary Sound Driver Device2=Speakers (Realtek High Definition Audio) [Auto] 1=Lua FSXOzplug [LuaFiles] 1=FSXOzplug ------------------------------------------------------------------------------------------------------------------- ********* WideServer.DLL Log [version 7.937] ********* Blocksize guide = 8192 (double allowed) Date (dmy): 21/01/16, Time 14:33:06.786: Server name is DARRYLROBERTSON 15156 Initialising TCP/IP server 15156 Initialising UDP/IP server 16031 Broadcasting service every 1000 mSecs 67809203 Closing down now ... Memory managed: Offset records: 21 alloc, 20 free Read buffer usage: 0 alloc, 0 free, max in session: 0 Write buffer usage: 0 alloc, 0 free, max in session: 0 Throughput maximum achieved: 0 frames/sec, 0 bytes/sec Throughput average achieved for complete session: 0 frames/sec, 0 bytes/sec ********* Log file closed ********* ---------------------------------------------------------------------------------------------------------------------- ********* WideServer.DLL Log [version 7.937] ********* Blocksize guide = 8192 (double allowed) Date (dmy): 22/01/16, Time 13:00:47.415: Server name is DARRYLROBERTSON 15141 Initialising TCP/IP server 15141 Initialising UDP/IP server 16078 Broadcasting service every 1000 mSecs ---------------------------------------------------------------------------------------------------------------------- ********* WideClient Log [version 6.999n] Class=FS98MAIN ********* Date (dmy): 16/01/16, Time 10:24:54.347: Client name is DARRYLROBERTSON 531 LUA: "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\Initial.LUA": not found 562 Attempting to connect now 562 Trying to locate server: Need details from Server Broadcast 562 Failed to connect: waiting to try again 2609 Attempting to connect now 11312 ****** End of session performance summary ****** 11312 Total time connected = 0 seconds 11312 Reception maximum: 0 frames/sec, 0 bytes/sec 11328 Transmission maximum: 0 frames/sec, 0 bytes/sec 11328 Max receive buffer = 0, Max send depth = 0, Send frames lost = 0 11328 ********* Log file closed (Buffers: MaxUsed 0, Alloc 0 Freed 0 Refused 0) ********* ----------------------------------------------------------------------------------------------------------------------- ********* WideClient Log [version 6.999n] Class=FS98MAIN ********* Date (dmy): 02/01/16, Time 18:23:47.001: Client name is DARRYLROBERTSON 531 LUA: "C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\Modules\Initial.LUA": not found 578 Attempting to connect now 578 Trying to locate server: Need details from Server Broadcast 578 Failed to connect: waiting to try again 2625 Attempting to connect now 45313 Trying to locate server: Need details from Server Broadcast 2581906 ****** End of session performance summary ****** 2581922 Total time connected = 0 seconds 2581922 Reception maximum: 0 frames/sec, 0 bytes/sec 2581922 Transmission maximum: 0 frames/sec, 0 bytes/sec 2581922 Max receive buffer = 0, Max send depth = 0, Send frames lost = 0 2581922 ********* Log file closed (Buffers: MaxUsed 0, Alloc 0 Freed 0 Refused 0) *********
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.