Page 1 of 1

Input translator for Joystick movement

PostPosted: Tue Jul 23, 2019 4:43 pm
by cb57
Is there any way to use the input translator to interpret joystick movement as a button press? I use a Nav and want to add auto run to a script but the script is locked. I just need the input translator to interpret the joystick pegged fully forward as pressing LS as well. Thanks

Re: Input translator for Joystick movement

PostPosted: Tue Jul 23, 2019 8:35 pm
by J2Kbr
This is not possible with Input Translator (check a input value to perform some action).

What is the script you are using? Easy Sprint (auto run) is very simple to implement, perhaps the script author can do that for you. All needed to do is copy and paste the following code at the end of the GPC script file.
Code: Select all
main {
    if(get_actual(STICK_2_Y) <= -75.0) {
        combo_run(EasySprint);
    }
}
 
combo EasySprint {
    set_val(BUTTON_9, 100.0);
    wait(50); wait(50);
}
 

Re: Input translator for Joystick movement

PostPosted: Tue Jul 23, 2019 10:28 pm
by cb57
Actually for the Apex Legends gamepack that I pm’d you about to eliminate the “can’t slide” with toggle crouch issue.