Jump to content

krel

Members
  • Posts

    8
  • Joined

  • Last visited

  1. Figured it out - the updater from this page, https://www.digitalcombatsimulator.com/en/downloads/world/stable/ doesn't work (for me.) http://updates.digitalcombatsimulator.com/ - on this page, downloading this newer version of the updater worked http://updates.digitalcombatsimulator.com/files/DCS_updater_64bit.zip Maybe this will help someone else.
  2. And it just died again. :( "Server capacity may be limited at the moment. Please try again later." I don't know what else to do to get this to work. From the logfile: STATUS: Downloading update... INFO : Using HTTP/2 ERROR: size mismatch: got only 2591456440 out of 6218722360 bytes for Mods/terrains/Caucasus/Surface/Caucasus.surface5 INFO : Retrying... ERROR: size mismatch: got only 2590915550 out of 6218722360 bytes for Mods/terrains/Caucasus/Surface/Caucasus.surface5 INFO : Retrying... ERROR: size mismatch: got only 2590915550 out of 6218722360 bytes for Mods/terrains/Caucasus/Surface/Caucasus.surface5 INFO : Retrying... ERROR: size mismatch: got only 2590915550 out of 6218722360 bytes for Mods/terrains/Caucasus/Surface/Caucasus.surface5 ERROR: 4 connection fails STATUS: Shutting the torrents down... INFO : Kill timer set to 30 seconds... INFO : Torrents have been shutdown in time. INFO : Kill timer reset. ERROR: Server capacity may be limited at the moment. Please, try again later. === Log closed.
  3. I have been trying to install the game (not update, brand new install) for a couple days now. The first updater, the 24.4G one, downloads and updates. The second one, around 6.2G, just runs until it times out - I have let it go on torrent until it dies, generally says something like "8500 of 6217.8 MBytes" and the DL Size is around 3000 MBytes when it croaks. I've also tried it by cancelling and switching to the HTTPS download, that has not yet been successful either. I'm currently trying the HTTPS download again - currently it shows "650 of 6218.7 MBytes" above the bar, and "DL Size: 222.6 MBytes DL Rate: 1.0 MB/s" below. I am on gigabit cable (not fiber yet) and speedtest generally shows my download speed around 7-800. Any thoughts? Is there a download or different torrent I can use to get the updater files? I typically have no download issues.
  4. To answer my own question (in case anyone finds this particular question via google some day in the future) I had to make a copy of target.tmh and change if(cfg & CREATE_MOUSE) PlugMouse(1); to if(cfg & CREATE_MOUSE) PlugMouse(0); which if I understand it correctly, is absolute vs relative positioning.
  5. I'm trying to use a button press to send a small amount of scrollwheel change, as follows: int scrollup() { VirtualOutput(OUT_TYPE_MOUSE, OUT_ID_AXIS+2, 5); } int scrolldn() { VirtualOutput(OUT_TYPE_MOUSE, OUT_ID_AXIS+2, -5); } MapKey(&W1, H2U, EXEC("scrollup();")); MapKey(&W1, H2D, EXEC("scrolldn();")); This works well, except that every time I click the button, it moves the mouse to the center of my screen. I suspect it's a problem with the definitions, but I can't find where those are set, where OUT_ID_AXIS is defined. Any suggestions?
  6. I understand how to do the delay part - but I'm not having any luck so far on the "require two buttons at the same time" part. Anyone else have any suggestions?
  7. I am not using the GUI - I'm doing it via script. The buttons will normally each have another function, but when pressed together and held for three seconds I want to send a different keystroke - it doesn't matter if I send the normal function with the "special" one or not. The image you shared definitely gives me hope that this is doable, thanks. :)
  8. I've been trying to find an answer to this - I am certain it can be done, but I lack the experience with TARGET to sort it out, so I'm hoping I can get some guidance. I'm looking to set up a mapping/function such that when I press and hold a button on two devices - ie. S1 on the Warthog and LTB on the throttle - after a three second delay it sends a keystroke. Is this doable?
×
×
  • Create New...