Final Fantasy XV Auto AP Train

You need to be able to deal decent enough damage to Gladiolus and have decent MP to be able to miss a few shots. 1) Go to any camp. 2) Choose to train. Select the lowest difficulty. 3) When the battle begins, press L2 to start the macro. This will spam Warp Strikes on Gladiolus until he falls, which will grant 1 AP. It will then restart the battle. Feel free to change the tuning on the targeting to suit your needs. This just happens to work ok.
Version1.00
AuthorJohnny_No_More
Publish DateTue, 6 Dec 2016 - 02:48
Last UpdateTue, 6 Dec 2016 - 02:48
Downloads260
RATE


7

0

Code: Select all
int runLoop;
 
main {
vm_tctrl(-8);
    if (event_press(PS4_L2)) {
        if (runLoop == TRUE) {
            runLoop = FALSE;
        } else if (runLoop == FALSE) {
            runLoop = TRUE;
        }
    }
 
    if (runLoop == TRUE) {
        combo_run(AutoTrain);
    }
}
 
combo AutoTrain {
    set_val(PS4_R1, 100);
    wait(500);
    set_val(PS4_R1, 100);
    set_val(PS4_TRIANGLE, 100);
    wait(50);
    set_val(PS4_R1, 0);
    set_val(PS4_TRIANGLE, 0);
    wait(50);
    set_val(PS4_CROSS, 100);
    wait(50);
    set_val(PS4_CROSS, 0);
    wait(50);
}