Yu-Gi-Oh! Legacy of the Duelist: Link Evolution - Auto Open Booster Packs - Nintendo Switch

This script will automatically open booster packs until you tell it to stop. Hotkeys: R - Holding for > 3 seconds starts combo L - Stops combo on press Instructions: Go to Card shop and hover on the booster pack you want to purchase. Using Nintendo Switch Pro Controller controls Hold R (not ZR) for 4 seconds It will begin auto opening packs until you press L
Version1.0
AuthorZeroun
Publish DateFri, 27 Mar 2020 - 13:15
Last UpdateFri, 27 Mar 2020 - 13:15
Downloads59
RATE


0

0

Code: Select all
/* *
* GPC SCRIPT
*
*  GPC is a scripting language with C-like syntax.
*  To learn more access GPC Language Reference on Help menu.
* *********************************************************** */

 
//#include
main {
 
    if(get_val(SWITCH_R) > 90 && get_ptime(SWITCH_R) > 3000){
        combo_run(start);
    }
 
    if(event_press(SWITCH_L)){
        combo_stop(start);
    }
}
 
 
 
combo start {
    //Perform method of accepting duelist challenge and surrendering for DP
    //Select pack, open, next window, restart combo
    set_val(SWITCH_A, 100);
    wait(350);
    set_val(SWITCH_A, 0);
    wait(350);
    set_val(SWITCH_A, 100);
    wait(350);
    set_val(SWITCH_A, 0);
    wait(350);
    set_val(SWITCH_A, 100);
    wait(350);
    set_val(SWITCH_A, 0);
    wait(6000);
    set_val(SWITCH_A, 100);
    wait(350);
    set_val(SWITCH_A, 0);
    wait(350);
    combo_restart(start);
    wait(10);
}