-
Posts
3995 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Lange_666
-
I would try with a complete empty script (all buttons and switches commented out "//") and just both TG1 and 2 programmed to be sure nothing make things go belly up further down the road in the script.
-
Did you set the correct path to your DCS installation on the App Settings tab? On the same tab: what are your VR Interface Settings? Looking at your log DCS started in VR and it detects your Oculus Rift S so it should work: Can it be that you have set up Guardian on another spot/place then the one you sit in when you run DCS? Because if i do that, your headset will show DCS within the Guardian boundary you have set up and you might not see it when you sit behind your desk. If this is not the case, what do you see if you just run the Oculus software (don't run DCS) and put on the headset?
-
No. Oculus software must be running and set up. Unknown sources in the Oculus software must be set to on. In DCS settings under the VR tab, "Enable Virtual Reality Headset" must be ticked After you have done that, you need to restart DCS to make the switch to VR mode. That's all. Tip: Use Skatezilla's updater utility to make an easy switch between 2D and VR (and vice versa).
-
Works fine on mine: TG2 Out returns Space TG1 Out returns nothing (0) TG1 In returns R_SHIFT P just fine.
-
thrustmaster warthog stick jitters when moved
Lange_666 replied to Steel Jaw's topic in Thrustmaster
Taking it apart is not difficult, lot's of tube video's on the subject. Could be that the Y-hall sensor has become a bit loose, just a guess. -
Deleting (make a backup first) the Input folder in the Saved Games folder ( C:\Users\Your Name\Saved Games\DCS\Config\Input) and let DCS create a new one?
-
Once this is done, no need for the Virpil software again.
-
When it comes down to the gimbals (the part that makes the joystick move), VKB/Virpil are lightyears (!!!) ahead of Thrustmaster.
-
I guess with a PULSE to generate one action to uncage and one to cage. If you don't pulse it will generate pulses as long as it's pressed at the in the script defined rates (standard SetKBRate(25, 35); ). You can either push the China Hat forward to uncage and backwards to cage or combine both on one button. First time you press it it will uncage, second time it will cage. Would be something like this: //MapKey( &Throttle, CHF, SEQ(PULSE+UnCage, PULSE+Cage)); or use the shift statement to combine both action on the same button. press China Hat Forward to UnCage and press S4 (or whatever is defined as the shift button)+China Hat Forward to Cage. //MapKeyIO( &Throttle, CHF, PULSE+Cage, PULSE+UnCage); There are other options to if needed. Edit: I just saw that Cage/UnCage is just one button all together. In that case: //MapKey( &Throttle, CHF, PULSE+Cage-UnCage); // Replace Cage-UnCage with whatever DX button you have there.
-
Post a screenshot of your ingame audio settings if you which, it's easier for us.
-
Change the standard springs with the provided heavier ones, it's a lot better.
-
Is ED letting down their VR customers?? Yes I'm venting!
Lange_666 replied to RackMonkey's topic in Virtual Reality
Honestly, just to get some VR going, needing to run WMR for Windows, WMR for Steam, SteamVR and the bulk of Steam settings and upscaling and downscaling and what not other crap is not the road to go if you ask me. No G2 or one of those WMR/Steam headsets for me, just way too much hassle. I'll stick with my Rift S. -
Cockpit adjustment in VR stopped working for me
Lange_666 replied to DirtyMike0330's topic in Virtual Reality
For me it doesn't work either, when i enter a cockpit, first thing i do is reset the camera view and then adjust the cockpit camera view according to my liking. It changes for each aircraft. Saving these views never worked. -
I use the INCR / DECR axis on my Warthog throttle for that. It works as a full zoom Axis in 2D and as a range "button" axis in VR. This way i can use the same function for both. In VR when the axis has a value below 50 , there is no zoom, when it reaches 50% it activates VR Zoom and it stays there until it reaches between 90% and 100% axis range, then it goes Spyglass Zoom (and back offcourse), works nice.
-
This one was one of the most disappointing flightsims i ever bought.
-
I get an error because of the target.tmh is missing // ----------------------------------------------------------------------------- // Includes // ----------------------------------------------------------------------------- include "target.tmh" // Standard TM Header include "include/dx+.tmh" // DX++ Module include "include/pov.tmh" // Custom POV Hat module include "include/ldc.tmh" // LED Control module You have the above files in a separate directory called include For me this runs fine if i add target.tmh into the main directory (where main.tmc sits), it's missing. You can put that into the include folder if you want but then the first line needs to read: include "include/target.tmh" // Standard TM Header If i then run the script it works but with only 86 buttons (see below) Running script: J:\Backup\Hardware\Controllers\Target\Scripts\TM Warthog Universal HID_edited\main.tmc *** Allocated ProcInstances found from the previous run: use FreeProcInstance() *** Mapped plugin module "E:\Hardware\Target\TARGET\Plugins\sys.dll" Compile Succeeded. Physical USB HID devices managed by script! Currently plugged USB HID devices[2]: 1: "Throttle - HOTAS Warthog" - "USB\VID_044F&PID_0404&REV_0100" 2: "RIGHT VPC Stick TMW Grip" - "USB\VID_044F&PID_0402&REV_0001" USB HID device "Throttle - HOTAS Warthog"(USB\VID_044F&PID_0404\6&2DDD0237&0&3) selected USB HID device "RIGHT VPC Stick TMW Grip"(USB\VID_044F&PID_0402\7&15079D9&0&4) selected Virtual HID devices managed by script! Connecting virtual joystick...Done Device name set to Thrustmaster Combined Device created using DX+ Module with 86 buttons Standard POV Hat emulated on Joystick H3 Button-Controlled LED Module enabled main returned 0 86 DX buttons solution: Your main.tmc has this: // ------------------------- Event Callback Init ----------------------------- // Even Callback Btn count Joystick only DXpInit( &EventHandle, 86, CREATE_JOYSTICK); Change that 86 value to 120 to get 120 DX buttons. If i run the script then I then get this: Running script: J:\Backup\Hardware\Controllers\Target\Scripts\TM Warthog Universal HID_edited\main.tmc Mapped plugin module "E:\Hardware\Target\TARGET\Plugins\sys.dll" Compile Succeeded. Physical USB HID devices managed by script! Currently plugged USB HID devices[2]: 1: "Throttle - HOTAS Warthog" - "USB\VID_044F&PID_0404&REV_0100" 2: "RIGHT VPC Stick TMW Grip" - "USB\VID_044F&PID_0402&REV_0001" USB HID device "Throttle - HOTAS Warthog"(USB\VID_044F&PID_0404\6&2DDD0237&0&3) selected USB HID device "RIGHT VPC Stick TMW Grip"(USB\VID_044F&PID_0402\7&15079D9&0&4) selected Virtual HID devices managed by script! Connecting virtual joystick...Done Device name set to Thrustmaster Combined Device created using DX+ Module with 120 buttons Standard POV Hat emulated on Joystick H3 Button-Controlled LED Module enabled main returned 0 Button count in DCS goes to 99, the buttons from 100 to 120 reside just below button 1 in the list... Info: The RIGHT VPC Stick comes from the fact that i changed my Warthog stick base to a Virpil base and renamed the VID.
-
I guess you don't have enough space on your drive to install the game. My stable install goes over 250GB when installed (80% of the modules + 5 maps). It needs room to put the downloaded files and room to unpack these during installation.
