Turbo Time Too!

Turbo Time Too is a sibling script to Turbo Time that uses a different method of controlling Turbo Speed. Simply hold R2/RT to auto-adjust Turbo Speed while pressing your Turbo-enabled buttons. The harder the trigger pull, the faster the Turbo Speed. R2/RT will function as per normal if Turbo-enabled along with other buttons.
Version1.00
Authorantithesis
Publish DateWed, 22 Mar 2017 - 01:17
Last UpdateTue, 8 Aug 2017 - 15:51
Downloads169
ForumAnnouncement Topic
RATE


1

0

Release Notes: Script pulled for maintenance
Code: Select all
/* *
* GPC SCRIPT
*
*  GPC is a scripting language with C-like syntax.
*  To learn more access GPC Language Reference on Help menu.
* *********************************************************** */

 
main {
    combo_run(RickRoll);
    //
    // The main procedure is called before every report be sent to
    // console, you can think in this procedure as a loop which only
    // ends when the script is unloaded.
    //
    // TODO: handle/change values of buttons, analog stick and/or sensors
    //
 
}
//
// 3/8/2016 11:14:44 AM
// Combo generated by Combo Magick Plugin
//----------------------------------------
combo RickRoll {
    set_val(PS4_CIRCLE, 100);
    wait(1500);
    set_val(PS4_CIRCLE, 0);
}