Slayaway Camp - Number of the Beast

Who wants to farm kills in Slayaway Camp? Not me! This will also farm coins occasionally as the level ends. Its not designed as a coin grinder, but over time it can work as one.
Version1
AuthorSitava
Publish DateSun, 11 Jul 2021 - 22:11
Last UpdateSun, 11 Jul 2021 - 22:11
Downloads39
RATE


0

0

Code: Select all
// Who wants to farm kills in Slayaway Camp? Not me! This will also farm coins
// occasinoally as the level ends. Its not designed as a coin grinder, but over
// time it can work as one.
 
// Chose Faces of Death 2 and then deleted scenes level 3. Script starts the level.
// Press LS on controller to start/stop
 
int ON;
int MENU=4950;
 
main
    {
    if (event_press(XB1_LS)) {ON= !ON;}
    if (ON) {combo_run(KILLS);}
    if (!ON){combo_stop(KILLS);}
    }
 
combo KILLS
    {
    set_val (XB1_A, 100); // play
    wait (50);
    wait (950);
    set_val (XB1_A, 100);
    wait (50);
    wait (MENU);
    set_val (XB1_UP, 100);
    wait (50);
    wait (950);
    set_val (XB1_RIGHT, 100);
    wait (50);
    wait (950);
    set_val (XB1_DOWN, 100);
    wait (50);
    wait (950);
    set_val (XB1_LEFT, 100);
    wait (50);
    wait (950);
    set_val (XB1_UP, 100); // kill
    wait (50);
    wait (1950);
    set_val (XB1_RIGHT, 100); // kill
    wait (50);
    wait (1950);
    set_val (XB1_DOWN, 100); // kill
    wait (50);
    wait (1950);
    set_val (XB1_LEFT, 100);
    wait (50);
    wait (1950);
    set_val (XB1_A, 100); // kill cinematic
    wait (50);
    wait (1950);
    set_val (XB1_UP, 100);
    wait (50);
    wait (950);
    set_val (XB1_LEFT, 100); // end level
    wait (50);
    wait (MENU)
    wait (2000);
    set_val (XB1_A, 100); // load faces of killed
    wait (50);
    wait (MENU);
    set_val (XB1_A, 100); // click attempt. may earn 50 gold
    wait (50);
    wait (950);
    }