Final Fantasy XV AP autotrain XB1 conversion

Original script by Johnny_No_More converted to XB1 from ps4 by Rtotheandell. 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 LT 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. Let me know how it works bc I don't have the stats to run it yet. **UPDATE** Due to an update to the actual game itself, FFXV no longer gives AP for each fight, thereby rendering this (once AMAZINGLY helpful and useful) script not so useful. I would like to send my thanks to Johnny_No_More for providing the original script, and to all of the original 45 downloaders that were able to use this AP trainer to fill all the skill trees.
Version1.01x
Authorrtotheandell
Publish DateMon, 9 Jan 2017 - 00:11
Last UpdateMon, 9 Jan 2017 - 00:11
Downloads60
RATE


1

0

Release Notes: Original script by Johnny_No_More converted to XB1 from ps4 by Rtotheandell. UPDATE TO ACTUAL GAME RENDERS THIS UNUSEFUL. THANKS ALL!
Code: Select all
// GPC Online Library
// final_fantasy_xv_auto_ap_train_XBOX_one.gpc
 
int runLoop;
 
main {
vm_tctrl(-8);
    if (event_press(XB1_LT)) {
        if (runLoop == TRUE) {
            runLoop = FALSE;
        } else if (runLoop == FALSE) {
            runLoop = TRUE;
        }
    }
 
    if (runLoop == TRUE) {
        combo_run(AutoTrain);
    }
}
 
combo AutoTrain {
    set_val(XB1_RB, 100);
    wait(500);
    set_val(XB1_RB, 100);
    set_val(XB1_Y, 100);
    wait(50);
    set_val(XB1_RB, 0);
    set_val(XB1_Y, 0);
    wait(50);
    set_val(XB1_A, 100);
    wait(50);
    set_val(XB1_A, 0);
    wait(50);
}