Stryder super fast sword slash and Charge Slash

Use Square for fast slashing Use R3 for Charge Salsh
Version1.02
AuthorSammyto
Publish DateSun, 6 Jul 2014 - 01:58
Last UpdateSun, 6 Jul 2014 - 01:58
Downloads54
RATE


0

0

Code: Select all
// GPC Online Library
// rapid_sword_slash.gpc
 
define charge_slash = PS4_R3;
define slash = PS4_SQUARE;
 
 
 
 main{
 
      if(get_val(slash))
      combo_run(Rapidswordslash);
      if(get_val(charge_slash))
      combo_run(ChargeSlash);
 
 
}
combo Rapidswordslash {
    set_val(PS4_SQUARE, 100);
    wait(10);
    set_val(PS4_SQUARE, 0);
    wait(10);
}
 
combo ChargeSlash {
    set_val(PS4_SQUARE, 100);
    wait(900);
 
}