Final_Fantasy_XV_auto-walk_(Gladio_skill_trophy)

When you press L2, It makes Noctis walk in circle. This help you to reach LV 10 in Gladio's Talent skill. Press L2 again to stop it.
Version1.00
AuthorSweps4life
Publish DateSun, 22 Jan 2017 - 15:52
Last UpdateSun, 22 Jan 2017 - 15:52
Downloads68
RATE


0

0

Release Notes: This is my first attempt to make a script
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(autowalk);
    }
}
 
combo autowalk {
    set_val(PS4_RX, 100);
    set_val(PS4_LY, -100);
}