Getting the scripts i use back on my pc

Titan Two general support. Questions, firmware update, feature request.

Getting the scripts i use back on my pc

Postby waffle123 » Wed Sep 14, 2022 6:18 am

Hey guys i have a question and i hope you could help me with it,

My previous pc with my gpc scripts saved on them has sadly broken down a while ago, now i have a new one.
I have my 3 profiles i use saved on my titan two device and they work, but im curious is it possible to get the gpc scrript from the device? so i can edit some stuff.

When i plugin my titan device they are there but i cannot fine a way to edit/open the gpc file on them

appreciate the help!
User avatar
waffle123
Staff Sergeant
Staff Sergeant
 
Posts: 11
Joined: Fri Oct 15, 2021 5:24 pm

Re: Getting the scripts i use back on my pc

Postby Mad » Wed Sep 14, 2022 9:05 am

You can't get the script of the device but to get the interactive configuration back copy the cache folder from inside your gtuner folder on the old pc to the new one.
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Getting the scripts i use back on my pc

Postby waffle123 » Wed Sep 14, 2022 2:30 pm

i sadly cannot acces my old pc anymore, maybe you can help me with this? im currently using this gpc for the buttons Square,Triangle,Cirlce , R1 and L1.

Is it possible to add DPad Left to it aswell? (button_12)
i tried adding it but i get a error when editing it, here is the gpc:
Code: Select all
#pragma METAINFO("Easy Script waffle123", 2, 0, "Haures")
/*
Script Version 2.0
Author: Haures
 
       ██    ██   ██████   ██    ██  ███████   ████████  ████████
       ██    ██  ██    ██  ██    ██  ██    ██  ██        ██
       ████████  ████████  ██    ██  ███████   ██████    ████████
       ██    ██  ██    ██  ██    ██  ██    ██  ██              ██
       ██    ██  ██    ██    ████    ██    ██  ████████  ████████
*/

 
//L3 and R3 should activate the Mod itself so when L3 and R3 got pressed it activates the Button Combos
 
///////////////////////////////
// Interactive Configuration //
///////////////////////////////
 
//change time here (the red number)
int time1 = 200; //time between RT pressed and the button getting pressed
 
//-----------------------------------------------------------------------------------------------------//
 
//Updated script
int toggle0=FALSE;    //MASTER toggle
 
//NOTE: these combos wont loop so it only happens when you press/tap the Button
 
main {
    if (get_val(BUTTON_9) && event_active(BUTTON_6)) { //9=L3 + 6=R3 turns the R2 + Button Combo on/off
        toggle0 = !toggle0; }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_17) && toggle0) {    //SQUARE
        combo_run(SQUARE); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_14) && toggle0) {    //TRIANGLE
        combo_run(TRIANGLE); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_15) && toggle0) {    //CIRCLE
        combo_run(CIRCLE); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_7) && toggle0) {    //L1
        combo_run(L1); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_4) && toggle0) {    //R1
        combo_run(R1); }
    ///////////////////////////////////////////////
    }
combo SQUARE { //RT 100ms later SQUARE
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_17, 0.00);    //SQUARE
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_17, 100.00);    //SQUARE
    wait(100);
}
combo TRIANGLE { //RT 100ms later TRIANGLE
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_14, 0.00);    //TRIANGLE
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_14, 100.00);    //TRIANGLE
    wait(100);
}
combo CIRCLE { //RT 100ms later CIRCLE
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_15, 0.00);    //CIRCLE
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_15, 100.00);    //CIRCLE
    wait(100);
}
combo L1 { //RT 100ms later L1
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_7, 0.00);    //L1
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_7, 100.00);    //L1
    wait(100);
}
combo R1 { //RT 100ms later R1
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_4, 0.00);    //R1
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_4, 100.00);    //R1
    wait(100);
}
User avatar
waffle123
Staff Sergeant
Staff Sergeant
 
Posts: 11
Joined: Fri Oct 15, 2021 5:24 pm

Re: Getting the scripts i use back on my pc

Postby Mad » Wed Sep 14, 2022 9:29 pm

Code: Select all
#pragma METAINFO("Easy Script waffle123", 2, 0, "Haures")
/*
Script Version 2.0
Author: Haures
 
       ██    ██   ██████   ██    ██  ███████   ████████  ████████
       ██    ██  ██    ██  ██    ██  ██    ██  ██        ██
       ████████  ████████  ██    ██  ███████   ██████    ████████
       ██    ██  ██    ██  ██    ██  ██    ██  ██              ██
       ██    ██  ██    ██    ████    ██    ██  ████████  ████████
*/

 
//L3 and R3 should activate the Mod itself so when L3 and R3 got pressed it activates the Button Combos
 
///////////////////////////////
// Interactive Configuration //
///////////////////////////////
 
//change time here (the red number)
int time1 = 200; //time between RT pressed and the button getting pressed
 
//-----------------------------------------------------------------------------------------------------//
 
//Updated script
int toggle0=FALSE;    //MASTER toggle
 
//NOTE: these combos wont loop so it only happens when you press/tap the Button
 
main {
    if (get_val(BUTTON_9) && event_active(BUTTON_6)) { //9=L3 + 6=R3 turns the R2 + Button Combo on/off
        toggle0 = !toggle0; }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_17) && toggle0) {    //SQUARE
        combo_run(SQUARE); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_14) && toggle0) {    //TRIANGLE
        combo_run(TRIANGLE); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_15) && toggle0) {    //CIRCLE
        combo_run(CIRCLE); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_7) && toggle0) {    //L1
        combo_run(L1); }
    ///////////////////////////////////////////////
    if (event_active(BUTTON_4) && toggle0) {    //R1
        combo_run(R1); }
    ///////////////////////////////////////////////
    ///////////////////////////////////////////////
    if (event_active(BUTTON_12) && toggle0) {    //DPAD LEFT
        combo_run(DPAD_LEFT); }
    ///////////////////////////////////////////////
    }
combo SQUARE { //RT 100ms later SQUARE
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_17, 0.00);    //SQUARE
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_17, 100.00);    //SQUARE
    wait(100);
}
combo TRIANGLE { //RT 100ms later TRIANGLE
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_14, 0.00);    //TRIANGLE
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_14, 100.00);    //TRIANGLE
    wait(100);
}
combo CIRCLE { //RT 100ms later CIRCLE
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_15, 0.00);    //CIRCLE
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_15, 100.00);    //CIRCLE
    wait(100);
}
combo L1 { //RT 100ms later L1
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_7, 0.00);    //L1
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_7, 100.00);    //L1
    wait(100);
}
combo R1 { //RT 100ms later R1
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_4, 0.00);    //R1
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_4, 100.00);    //R1
    wait(100);
}
 
combo DPAD_LEFT { //RT 100ms later DPAD_LEFT
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_12, 0.00);    //DPAD_LEFT
    wait(time1); //time when the Button gets pressed
    set_val(BUTTON_5, 100.00);    //R2
    set_val(BUTTON_12, 100.00);    //DPAD_LEFT
    wait(100);
}
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Getting the scripts i use back on my pc

Postby waffle123 » Thu Sep 15, 2022 6:39 am

I just wanted to say it works perfectly and thank you very much for the help, i appreciate it alot!
User avatar
waffle123
Staff Sergeant
Staff Sergeant
 
Posts: 11
Joined: Fri Oct 15, 2021 5:24 pm


Return to Titan Two Device

Who is online

Users browsing this forum: No registered users and 81 guests