Combo Section
main {
if (event_press(XB1_A) {
combo_run(mycombo);
}
if (event_press(XB1_B) {
if(combo_running(mycombo)) {
combo_stop(mycombo);
}
}
if (event_press(XB1_X) {
combo_restart(mycombo);
}
}
combo mycombo {
set_val(XB1_A, 100);
wait(200);
wait(4000);
set_val(XB1_B, 100);
wait(200);
wait(4000);
set_val(XB1_X, 100);
wait(200);
wait(4000);
set_val(XB1_Y, 100);
wait(200);
wait(4000);
set_val(XB1_LB, 100);
wait(200);
wait(4000);
call(mycombo2);
}
combo mycombo2 {
set_val(XB1_RB,100);
wait(100);
wait(2000);
}Last updated
Was this helpful?