Bronze Lobbies

Just spams ready and unready for the bronze lobby glitch
Version1.00
Authorthatguy420
Publish DateSun, 10 Jul 2022 - 19:01
Last UpdateSun, 10 Jul 2022 - 19:01
Downloads45
RATE


0

0

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 {
 
    //
    // 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
    //
 
 
 
 
 
   if(get_val(PS4_CROSS)&&get_ptime(PS4_CROSS)>500){
    combo_run(BRONZE);}
 
}
combo BRONZE{
set_val(PS4_TRIANGLE,100.0);
wait(350);
set_val(PS4_CIRCLE,100.0);
wait(80);
}