Battlefield 3 - AUTO SPOT Script

Quickly press SELECT to turn on/off "AutoSpot" or hold down the SELECT to Scoreboard. The spotted enemies appear with a red marker, which makes easy to shoot. Just move your crosshair over an enemy to he get marked, it works at long distances and even when the enemy is hiding in bushes.
Versionv1.00
AuthorConsoleTuner
Publish DateMon, 9 Jan 2012 - 17:12
Last UpdateMon, 9 Jan 2012 - 17:12
Downloads677
RATE


2

0

Code: Select all
/* *
*  Battlefield 3
*  AUTO SPOT Script
* --------------------------------------------------------------------------- */

 
define spotbutton = PS3_SELECT; // Change to XB360_BACK for XBox 360
 
int autospot = FALSE;
 
main {
    // Quickly press SELECT to turn on/off "AutoSpot"
    // or hold down the SELECT to Scoreboard
    if(event_release(spotbutton) && get_ptime(spotbutton) < 140) autospot = !autospot;
    if(autospot && !get_val(spotbutton)) combo_run(AutoSpot);
    block(spotbutton, 200);
}
 
combo AutoSpot {
    set_val(spotbutton, 100);
    wait(40);
    set_val(spotbutton, 0);
    wait(960);
}