Page 1 of 1

PlayStation home & share button on my Xbox controller.

PostPosted: Sat Aug 25, 2018 12:49 pm
by Srecnal
Is there anyway for someone to make me a script so I can use the PlayStation home button and the share button on my Xbox one controller?

I would like for the share button to be a combination of the view button and the menu button on Xbox. So I have to press both to pop up the share menu on PS4.

For the PlayStation home button I would like it to be a combination of the B button and Left on the D-Pad.

Thanks in advance.

Re: PlayStation home & share button on my Xbox controller.

PostPosted: Mon Aug 27, 2018 9:22 am
by J2Kbr
Welcome to our forums, this will do what you described:
Code: Select all
main {
    if(get_val(XB1_VIEW) && get_val(XB1_MENU)) {
        set_val(PS4_SHARE, 100);
    } else set_val(PS4_SHARE, 0);
 
    if(get_val(XB1_LEFT) && get_val(XB1_B)) {
        set_val(PS4_PS, 100);
    } else set_val(PS4_PS, 0);
}

Re: PlayStation home & share button on my Xbox controller.

PostPosted: Tue Aug 28, 2018 12:11 am
by Srecnal
TYVM :)