Family Game Night 4: automated shows

Sitting through this game is boring. Why not turbo it? The issue lies in the Sorry Sliders and Bowling mini-games. Never fear, this script will automate those pesky shows and unlock nearly all the achievements in the process. LS to enable|disable
Version1
AuthorSitava
Publish DateTue, 31 May 2016 - 04:13
Last UpdateTue, 31 May 2016 - 04:13
Downloads25
RATE


1

0

Code: Select all
// Family Game Night 4: The Game Show
 
// Automated Game Shows
 
int ON;
 
main {
   if (event_press(XB360_LS)) {ON= !ON;}
   if (ON) {combo_run (FGN);}
   if (!ON){combo_stop(FGN);}
}
combo FGN   {
   set_val(XB360_X, 100);
   wait (200);
   set_val(XB360_A, 100);
   wait (200);
   wait (40);
   set_val(XB360_RX , 0);
   set_val(XB360_RY , 100);
   wait (400);
   set_val(XB360_RX , 0);
   set_val(XB360_RY , -100);
   wait (3000);
}