Jump to content

jonsky7

Members
  • Posts

    1095
  • Joined

  • Last visited

Community Answers

  1. jonsky7's post in Scripted "cockpit interaction" problem was marked as the answer   
    This post is quite old but I thought I would share the solution.
    The action required is
    "Start playing actor" and the value should be 2,
    this sets DCS into the navigator seat, although you will still be in the pilot seat. This is only required for switches not accessible from the pilot seat.
    Be sure to add "stop playing actor" at the end of the actions.
    While the "actor" is doing their thing, pilot only switches will be locked out, so best not make the actor do stuff for too long.
  2. jonsky7's post in Moving dialogs from center was marked as the answer   
    Yes, If you go into your monitor config file
    usually located in Saved Games\DCS\Config\Monitorsetup
    there is an entry at the bottom that says 

    UIMainView = Viewports.Center
     
    The UIMainview sets the boundaries for the Main menu, F10 map, Mission editor, and the dialogs that appear in game.
     
    You can change it from the above to something like

    UIMainView = 
    {
    x = 0;
    y = 0;
    width = 2560;
    height = 1440;
    }
    and limit the boundary to either one of your monitors.
     
    If you have absolutely no idea what any of that means, you might want to have a read of this thread
     
     
  3. jonsky7's post in CBU-105 overpowered? was marked as the answer   
    The bomblets don't seem to necessarily explode the tanks like they do in DCS, but disable them, maybe?
     
     
    The only difference between the CBU-97 and CBU-105 is that the 105 has a guidance kit on the main weapon cannister, all of the internals are the same.
    Like the difference between a MK-82 bomb and a GBU-38 
    Looks pretty effective to me
     
     
  4. jonsky7's post in Mi-8 Sling Loading Indicator was marked as the answer   
    You have the right file.
    To be honest with you it has been a long time since I made this change, so I don't exactly remember how the number changed the location but...
    line 18
    local aspect        = LockOn_Options.screen.aspect

    I changed that to
    local aspect        = -1.34  
     
    I think making it more negative moves it left.
  5. jonsky7's post in What does UIMainView and GU_MAIN_VIEWPORT set and control? was marked as the answer   
    The UIMainView defines where the following are placed
    The Game main menu
    The F10 Map
    Mission Editor
    The boundaries of the Comms Menu (Right) and subtitles (left)
     
    GU_MAIN_VIEWPORT
    I've only found
    The gunner reticle in combined arms tanks etc
     
  6. jonsky7's post in Problem with mapping racing pedals to the rudder axis was marked as the answer   
    Ok, I have been trying too, and can see that it doesn't seem possible to invert 2 axis setup like above.

    Shall we give UCR and vJoy another try?

    From your first post it seems like you have UCR and vJoy installed.

    vJoy is at least present in your windows game controllers, correct?



    If so, on we go

    Open UCR, Click on create profile, you should be presented with this window.

    Give your profile a name, for input device select your pedals, output device is vJoy

    null
     
    Click on Axis Merger (1), you will be prompted to add a name for your axis.

    2. Click on the Axis High Input, press your left pedal to bind it
        Click on Axis low button, press your right button to bind it.

    3. You have to select an output Axis using the 3 ... button, I have X here, but Axes Z is a good one.

    The mode should be Average

    We will have to test the output, and maybe have to come back to change the Invert High, and Invert Low options

    4. Press the play button >

    The profile should now be running.

    Go back to windows games controllers, select vJoy and select properties. Test your output by pressing each pedal in turn.


     
    This is where you may have to go back to UCR and play with the invert settings. 

    You will need to close the above window when you make changes because it stops working.

    When you make changes in UCR, press the stop button [] 4, then press play again >.

    If inverting the High and low still doesn't work properly,

    Switch the left and right pedals between Axis high and Axis low (step 2)
     
    🤞 please work
  7. jonsky7's post in Can speed brake work simultaneously with other actions? was marked as the answer   
    Just to elaborate a bit on what raz+r has said above.
    The CTRL, ALT, SHIFT, and WIN keys are classed as modifier keys. This is so you can have hundreds if not thousands more keyboard commands.
    As you can have for eg "B", LCTRL+B, LALT+B, LCTRL+LALT+B, LCTRL+LALT+LSHIFT+B etc etc etc.
    As raz+r has said, if you are holding CTRL to operate the speed brake, then when you are operating your POV hat, you are actually sending the command LCTRL+POV Hat, and not just POV hat which is the assigned command.
    You can however have multiple binds to do the same "action", so you could assign both POVL and LCTRL+POVL to look left.
    All you have to do is select the look left command in the joystick column, press LCTRL and POVL.
    You will then see two binds assigned to that action eg POVL, LCTRL+POVL.
    Then look left will work whether LCTRL is pressed or not.
  8. jonsky7's post in Triples with different sized screens was marked as the answer   
    You can get into an issue with the graphics card's maximum supported 3D application resolution

    You're trying to export a resolution of 8560x1440 which is now more than most graphics card can support.
    As a educated guess I'd say you're losing 880pixels off the edge.

    3x1440p monitors are 7680x1440

    eg
    GTX1080/RTX2080ti/RTX3090 Max res is 7680x4320

    7900XTX max resolution is 7680x4320

    In fact I can't find a single graphics card that will do more, seems to be a standard, equivalent to 2x4K displays.
  9. jonsky7's post in Can't Seem to Load or Save Input Profiles was marked as the answer   
    Are you selecting the controller column? 

    I don't think you can load it all in one go, you have to select each controller in turn.
    Left click the controller name

    eg, the red circled area
     

     

  10. jonsky7's post in Speedbrake Config Question was marked as the answer   
    There is a way yes, it will require a little bit of editing a file though.
    If you go to

    DCS World/Mods/aircraft/FA-18C/Input/FA-18C/joystick

    and find the file called default.lua

    Add this line
    { down = hotas_commands.THROTTLE_SPEED_BRAKE, up = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = -1.0, value_up = 1.0, name = _('Speed Brake Switch - EXTEND, else RETRACT'), category = {_('Throttle Grip'), _('HOTAS')}}, You will have a new keybind option called 
    Speed Brake Switch - EXTEND, else RETRACT

    The speed brake will extend when the button is pushed, and retract when the button is released.

    I have modified the file for you, so can paste it into the folder listed above. >>>>>>>  default.lua
    You will have to re-copy the file after every update, and it will break integrity check on servers that have the new "REQUIRE PURE SCRIPTS" enabled, but I haven't seen many that do yet.


    Alternatively, for the Warthog, there is an excellent script for the TARGET software than changes the way the buttons work slightly.
     
  11. jonsky7's post in please help was marked as the answer   
    The Apache is not available on the stable branch of the game yet.
  12. jonsky7's post in How to trim? was marked as the answer   
    So the forward position on the force trim hat is the button you want to set the trim centre position of the stick.
    With centre trimmer mode option activated, 
    1. Hold forward on hat
    2. Put stick and rudder where you want it
    3. release hat
    3a, in other helicopters this now means your joystick and pedals are locked out until you centre them.
    4. centre your joystick and pedals.
    5. New centre position should be recorded by heli.
    Press right control and enter to bring up the controls indicator. 
    To be honest I haven't tried that trimmer mode. But that is how it normally works.
     
     
  13. jonsky7's post in F10 Map Target Coordinates do not match actual target location was marked as the answer   
    If you are inputting a trailing zero for the last pair of coordinates in the Viper, then like Blinky.Ben has mentioned, you are looking at the wrong coordinate type in the F10 Map.
    The default coord system for the F10 Map is Degrees' Minutes' Seconds (DD.MM.SS)
    N37'25'23 E45'12'17
    The Viper users the Decimal Minute system, Degrees' Minutes' Thousands of Minutes (DD.MM.mmm)
    N37'25.321  E45'12.282
    You can change the default F10 coord system in the settings if you mostly fly the 16, or as Blinky.Ben mentioned use LALT-Y in the F10 map to change coordinate type.

  14. jonsky7's post in Aileron trim has no effect was marked as the answer   
    Thanks, it was FFB turned on 🤦‍♂️
    Had to start with a new saved games folder to fix another issue, and didn't realise FFB default is on.
×
×
  • Create New...