Seth Trial 18

Super Street Fighter 4 Trials - Seth # 18 Position: Facing right. Push/kick Dan to the corner and make sure he is as close as possible to the edge of the screen. Stand right next to him and dash back once. Your toes should be just touching the black line (one black line away from Dan. Activate with LS when you see his feet on the ground. * This is the most timing and position sensitive trial I have done so far as it all happens in the air. Lucky for you I made it start late so there is a reference point of Dan's feet touching the ground. This happens pretty fast and mine and your reaction times may be slightly different so I would expect this to take a few tries to get exactly right. But once you get the timing right it should work perfectly. Before publishing I made sure I could do it perfectly 10 times in a row so it wouldn't be any more trouble than the timing of the first click. Have fun!
Version1.00
AuthorJayD101
Publish DateSat, 24 May 2014 - 23:41
Last UpdateSat, 24 May 2014 - 23:41
Downloads83
RATE


1

0

Code: Select all
 
main {  if(get_val(XB360_LS)) combo_run(SethT18);
        if(get_val(XB360_RS)) combo_stop(SethT18);
}
 
combo SethT18 {
    wait(500);
    set_val(XB360_UP, 100);
    set_val(XB360_RIGHT, 100);
    wait(20);
    set_val(XB360_UP, 0);
    set_val(XB360_RIGHT, 0);
    wait(400);
    set_val(XB360_DOWN, 100);
    set_val(XB360_B, 100);
    wait(20);
    set_val(XB360_DOWN, 0);
    set_val(XB360_B, 0);
    wait(600);
    set_val(XB360_Y, 100);
    wait(20);
    set_val(XB360_Y, 0);
    wait(400);
    set_val(XB360_UP, 100);
    set_val(XB360_RIGHT, 100);
    wait(20);
    set_val(XB360_UP, 0);
    set_val(XB360_RIGHT, 0);
    wait(150);
    set_val(XB360_DOWN, 100);
    set_val(XB360_B, 100);
    wait(20);
    set_val(XB360_DOWN, 0);
    set_val(XB360_B, 0);
    wait(225);
    set_val(XB360_DOWN, 100);
    set_val(XB360_B, 100);
    wait(20);
    set_val(XB360_DOWN, 0);
    set_val(XB360_B, 0);
    wait(250);
    set_val(XB360_DOWN, 100);
    set_val(XB360_RT, 100);
    wait(20);
    set_val(XB360_DOWN, 0);
    set_val(XB360_RT, 0);
 
}