1. Trouble with the game?
    Try the troubleshooter!

    Dismiss Notice
  2. Issues with the game?
    Check the Known Issues list before reporting!

    Dismiss Notice
  3. Before reporting issues or bugs, please check the up-to-date Bug Reporting Thread for the current version.
    0.32 Bug Reporting thread
    Solutions and more information may already be available.

Could someone please help me

Discussion in 'Troubleshooting: Bugs, Questions and Support' started by monkey2186, Aug 7, 2013.

  1. monkey2186

    monkey2186
    Expand Collapse

    Joined:
    Aug 5, 2013
    Messages:
    14
    I suffer with club feet so using the left pedal for breaking is pretty painfull for me so i wanted to set it up like i have it in euro truck sim where i use the Button 4 (left flappy pad) to break, after doing so most of the other buttons wouldint work ie the right pedal and most of the other buttons all i did was changed moveMap.bind(%device, yaxis,"I", brake); to moveMap.bind(%device, button4, brake); and // left paddle, shift down
    moveMap.bind(%device,, shiftDown);

    what am i doing wrong?
    [h=1]Thrustmaster Ferrari GT Experience[/h]
    // Product Name: FGT Rumble 3-in-1
    // GUID: {B655044F-0000-0000-0000-504944564944}
    // axes: 5^X^S^V^Y^S

    // ################### WHEEL STEERING AND PEDALS ####################### //

    moveMap.bind(%device, xaxis, joy_steer);
    moveMap.bind(%device, yaxis,"I", brake);
    moveMap.bind(%device, rzaxis, "I", accelerate);
    //moveMap.bind(%device, slider, "I", clutch);

    // change camera
    moveMap.bindCmd(%device, button7, "beamNGCameraToggle();", "");

    // left signal
    moveMap.bindVLuaCmd(%device, button20, "electrics.toggle_left_signal()", "");

    // lights
    moveMap.bindVLuaCmd(%device, button22, "electrics.toggle_lights()", "");

    // reset camera
    moveMap.bindCmd(%device, button6, "beamNGResetCamera();", "");

    // right signal
    moveMap.bindVLuaCmd(%device, button19, "electrics.toggle_right_signal()", "");

    // parking brake
    moveMap.bind(%device, button10, parkingbrake_toggle);


    // right paddle, shift up
    moveMap.bind(%device, button5, shiftUp);

    // left paddle, shift down
    moveMap.bind(%device, button4, shiftDown);

    // reload vehicle
    moveMap.bindCmd(%device, button11, "beamNGReloadCurrentVehicle();", "");

    // DPAD ( dpadl, dpadr, dpadu, dpadd ) //

    // left view
    moveMap.bindCmd(%device, dpadl, "np_x(-1);", "np_x(0);");

    // right view
    moveMap.bindCmd(%device, dpadr, "np_x(1);", "np_x(0);");

    // up view
    moveMap.bindCmd(%device, dpadd, "np_y(-1);", "np_y(0);");

    // down view
    moveMap.bindCmd(%device, dpadu, "np_y(1);", "np_y(0);");

    // slow motion
    moveMap.bindVLuaCmd(%device, button0, "bullettime.set(5)", "");

    // normal motion
    moveMap.bindVLuaCmd(%device, button1, "bullettime.set(100)", "");

    // -20 motion
    moveMap.bindVLuaCmd(%device, button2, "bullettime.set('-20')", "");

    // switch vehicle
    moveMap.bindCmd(%device, button3, "beamNGSwitchVehicle(1);", "");

    echo("FGT Rumble 3-in-1 LOADED");
     
  2. Incognito

    Incognito
    Expand Collapse

    Joined:
    Aug 4, 2013
    Messages:
    246
    What you want to do?
     
    #2 Incognito, Aug 7, 2013
    Last edited: Aug 7, 2013
  3. monkey2186

    monkey2186
    Expand Collapse

    Joined:
    Aug 5, 2013
    Messages:
    14
    I want to use the left flappy gear down button as brake
     
  4. Fat-Alfie

    Fat-Alfie
    Expand Collapse

    Joined:
    Aug 5, 2012
    Messages:
    65
    You can't assign two different actions to the same button / axis.

    You tried to use button4 for both brake and shiftDown - you can't do this.

    Try using a different key for your brake and see if that works :)
     
  5. monkey2186

    monkey2186
    Expand Collapse

    Joined:
    Aug 5, 2013
    Messages:
    14
    i removed sift down tho left it blank
     
  6. Incognito

    Incognito
    Expand Collapse

    Joined:
    Aug 4, 2013
    Messages:
    246
    Try this:
    P.S. For remove brake action for left padle - you should comment this string like here (or change the button):
    Code:
    //moveMap.bind(%device, button4, shiftDown);
     

    Attached Files:

    #6 Incognito, Aug 7, 2013
    Last edited: Aug 7, 2013
  7. monkey2186

    monkey2186
    Expand Collapse

    Joined:
    Aug 5, 2013
    Messages:
    14
    Thats what i wanted thank you :) you made my foot happy lol

    - - - Updated - - -

    just one other thing what are the buttons for the lights and things in the file its like button 21 but my wheel hasint got that many buttons
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice