Jump to content

MudzNZ

Members
  • Posts

    18
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Anybody know where the fire extinguisher switch is? I cant find it
  2. Still same problem unfortunatly @baltic_dragon, nightmare 1-2 gets stuck because the truck never moves. See screenshot
  3. Thanks @baltic_dragon appreciate it.
  4. I was missing my wingman nightmare 1-2 not sure where he went. Will give another try tomorrow. Cheers
  5. Having trouble on mission 5 unless I missed a radio call or something. I get out to Norseman position but nothing happens? I just sit there orbiting for 10 minutes but nothing
  6. try run the index.js file not the one in git hub home screen code I found that worked for me
  7. Ok ive made some progress, basically what I am doing is running Ranma13 node.js and relaying that through tcp for which I am listening in my c#.net application. Obviously would like to decode it myself but this will do in the meantime.
  8. Wow awesome work Renma13. Thats complicated lol. I dont wanna re-invent the wheel especially when looking at your API it looks great and covers the planes I am looking at as well (Hornet and the Harrier), in particular I just want to get the ufc display for a start. I wonder if I can use your API in my c#.net project somehow.
  9. Hey wondering how far you got with getting this going on your surface. I too am trying a similar thing and am having trouble decoding the export stream from DCS BIOS. Are you able to share some of your code? Thanks
  10. Hi, Im fiddling around with DCS-BIOS and visual studio. Currently I am listening to the export broadcast address on 239.255.50.10, port 5010. I am receiving data ok but I don't know how to decode it. Does anybody have a quick code snippet preferably in c# on how to decode the received data from the export? Thanks Here is my test program public void StartListener() { try { UdpClient client = new UdpClient(); client.ExclusiveAddressUse = false; IPEndPoint localEp = new IPEndPoint(IPAddress.Any, 5010); client.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); client.ExclusiveAddressUse = false; client.Client.Bind(localEp); IPAddress multicastaddress = IPAddress.Parse("239.255.50.10"); client.JoinMulticastGroup(multicastaddress); Console.WriteLine("Listening this will never quit so you will need to ctrl-c it"); while (true) { Byte[] data = client.Receive(ref localEp); Console.WriteLine(Encoding.ASCII.GetString(data, 0, data.Length)); } } catch (SocketException e) { Console.WriteLine(e); } finally { } }
  11. But DCS isnt installed on the Remote PC. Should I just create the folders regardless?
  12. No luck. I entered in my IP address of the DCS pc and opened the port in the firewall. I have attached an image of the profile on my surface pc. Also I have gHost = 192.168.1.188 in my export.lua on the dcs pc which is pointed to the surface, I seen that somewhere
  13. Hi guys, I am looking to use my Surface Pro 4 as a second screen running helios. I believe this is possible using a remote PC but I am unsure how to configure it and I cant seem to find any guides with using a remote pc. I have Helios installed on both my DCS PC and my Surface tablet. I also have the Captain Zen f18 profile on both. Could anyone help me with this or point me to guide I can follow to get me started. Thanks
  14. Hey im having trouble getting my hud back to the line with the target indicator on the end for my second pass using CCIP. After my first drop I get the four lines. Im sure im missing something but I cant seem to find out what it is, can some body please help. Attached is a pic of my hud after the first drop.
  15. Hi, Need help I am starting to get a bit frustrated with this particular mission in the Huey UN Campaign. The mission is called whiskey, basically I have to fly to an area where troops on the ground pop smoke and I am too hover over them to drop off some ammunition. But when I go hover over the area the instructor (Who seems to be a bit of a A-hole the whole campaign lol) says to get lower and right over the smoke. But if I get any lower I am lower than the trees plus I cant see a thing because of the white smoke. It seems impossible to me, has anybody completed this mission and can give me any tips, would be much appreciated. Thanks
×
×
  • Create New...