Page 1 of 1

Help with a script for Titan One PS5

PostPosted: Thu Jul 01, 2021 2:51 pm
by 010010
Hey everyone,

Is there anybody out there that could make me a small script that i could edit myself?

I need a on/off switch. Prefferable the touchpad.

I want my controller to hold the dpad up after i press R2.

(My old laptop crashed, so all the lines i saved are gone. )

I would really appreciate anybodies help.

Thanks in advance, 010010

Re: Help with a script for Titan One PS5

PostPosted: Sun Jul 04, 2021 1:28 am
by Mad
Code: Select all
int toggle;
main {
    if(event_press(PS4_TOUCH)) toggle = !toggle;
    if(toggle && get_val(PS4_R2)) set_val(PS4_UP, 100);
}