BlazBlue: Continuum Shift - Trials - Makoto 7

Passes Makoto Nanaya's seventh trial, Practical Combo #3. Push up against Bang and activate at the apex of his jump.
Version1.00
AuthorVicePope
Publish DateTue, 12 Aug 2014 - 01:40
Last UpdateTue, 12 Aug 2014 - 01:40
Downloads154
RATE


3

0

Release Notes: First script, first production.
Code: Select all
define TRIALS_BUTTON = XB360_RS;
 
main{
if(event_press(TRIALS_BUTTON)){
combo_run(Makoto7);
}
}
 
 
 
// Makoto Trial 7, run on version 1.03. Move right up to Bang and activate at the apex of his jump.
combo Makoto7{
set_val(XB360_RIGHT, 100);      //section 1
set_val(XB360_X, 100);
wait(20);
wait(600);
set_val(XB360_UP, 100);         //section 2
set_val(XB360_RIGHT, 100);
wait(20);
wait(100);
set_val(XB360_B, 100);
wait(20);
wait(300);
set_val(XB360_Y, 100);
wait(20);
wait(600);                       //end section 1
set_val(XB360_RIGHT, 100);
wait(20);
set_val(XB360_DOWN, 100);
wait(20);
set_val(XB360_DOWN, 100);
set_val(XB360_RIGHT, 100);
set_val(XB360_B, 100);          //end section 2
wait(600);
set_val(XB360_A, 100);
wait(100);                      // max power for corona upper = 400
wait(650);
set_val(XB360_Y, 100);
wait(20);
wait(200);
//Repeat section 1
set_val(XB360_RIGHT, 100);
set_val(XB360_X, 100);
wait(20);
wait(600);
set_val(XB360_UP, 100)
set_val(XB360_RIGHT, 100);
wait(20);
wait(80);
set_val(XB360_B, 100);
wait(20);
wait(300);
set_val(XB360_Y, 100);
wait(20);
wait(400);               
//Repeat section 2
set_val(XB360_UP, 100);   
set_val(XB360_RIGHT, 100);
wait(20);
wait(100);
set_val(XB360_B, 100);
wait(20);
wait(200);
set_val(XB360_Y, 100);
wait(20);
wait(400);               
set_val(XB360_RIGHT, 100);
wait(20);
set_val(XB360_DOWN, 100);
wait(20);
set_val(XB360_DOWN, 100);
set_val(XB360_RIGHT, 100);
set_val(XB360_B, 100);   
wait(500);
set_val(XB360_A, 100);
wait(450);
 
}