ARFARBF

Script pulled for maintenance
Version1.00
Authorantithesis
Publish DateFri, 23 Dec 2016 - 07:58
Last UpdateTue, 8 Aug 2017 - 15:38
Downloads3138
RATE


8

7

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);
}